简体   繁体   English

发布服务时,可能导致“导出操作由于具有通配符操作而被跳过”错误的原因是什么?

[英]What could cause “An operation was skipped during export because it has a wildcard action” error when publishing a service?

I created an Orchestration in BizTalk, which I published as a service, using the tool WCF BizTalk. 我使用WCF BizTalk工具在BizTalk中创建了业务流程,并将其作为服务发布。 This resulted in a service hosted in IIS 7. When I changed the web.config file to enable debugging, I caught the following error: 这导致将服务托管在IIS 7中。当我更改web.config文件以启用调试时,捕获了以下错误:

Message
An operation was skipped during export because it has a wildcard action. 
This is not supported in WSDL.

Contract Name:ITwoWayAsync
Contract Namespace:http://BTKPruebas.pruebaWCF
Operation Name:TwoWayMethod

What might be causing this? 是什么原因造成的?

Some googling led me to this answer : 一些谷歌搜索使我想到了这个答案

You can solve it by removing any * Charchter from ReplyAction. 您可以通过从ReplyAction中删除任何* Charchter来解决它。

[System.ServiceModel.OperationContractAttribute(Action="http://www.yyyyy.com/somthing/Registration/RegistrationService/version/2.1/getCoCRecordByMemberShipID", ReplyAction="*" )] [System.ServiceModel.OperationContractAttribute(Action =“ http://www.yyyyy.com/somthing/Registration/RegistrationService/version/2.1/getCoCRecordByMemberShipID”,ReplyAction =“ *” )]]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Web服务错误-无法处理该消息。 这很可能是因为操作“”不正确或 - Web Service error - The message could not be processed. This is most likely because the action '' is incorrect or because WCF服务-是什么导致其随机关闭? - WCF service - what could cause it to randomly shut-down? 错误“此消息不支持该操作,因为它已被读取” - Error “This message cannot support the operation because it has been read” TCP 错误 10055:无法对套接字执行操作,因为系统缺少足够的缓冲区空间或队列已满 - TCP error 10055: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full 消耗WCF数据服务-出现错误“操作无法完成” - Consuming WCF Data Service - getting error “Operation could not be completed” WCF Singleton-Service错误:提供的服务类型不能作为服务加载,因为它没有默认构造函数 - WCF Singleton-Service error: The service type provided could not be loaded as a service because it does not have a default constructor 在IIS中发布Web服务时出错-找不到基础…绑定WebHttpBinding。 注册的基址方案为[https] - Error publishing web service in IIS - Could not find a base… binding WebHttpBinding. Registered base address schemes are [https] 无论我尝试什么:由于线程退出或应用程序请求,I/O 操作已中止 - No matter what I try: The I/O operation has been aborted because of either a thread exit or an application request WCF服务元数据发布错误 - WCF Service metadata publishing error 创建WCF服务时出错:WCF测试客户端不支持此操作,因为它使用类型System.Threading - Error in creating WCF service: this operation is not supported in the wcf test client because it uses type System.Threading
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM