接收管道失败
我正在开发一个自定义应用程序,它使用提交直接适配器直接将消息提交到 biztalk。我正在使用通路管道,但消息被挂起,并且我收到以下错误:
执行时失败 接收管道:
“Microsoft.BizTalk.DefaultPipelines.PassThruReceive, Microsoft.BizTalk.DefaultPipelines, 版本=3.0.1.0,文化=中立, 公钥令牌=31bf3856ad364e35” 来源:“未知”接收端口: “RP_DCMS_REQ”URI:“CH222001-1200” 原因:类型 System.Runtime.Remoting.ObjRef 和 从它派生的类型(例如 System.Runtime.Remoting.ObjRef)是 不允许反序列化 此安全级别。
我已经在配置文件中设置了 TypeFilterAttribute=full 。问题是什么?
I am developing a custom application which directly submits the message to biztalk using submit direct adapter. I am using a passthru pipeline, but the message gets suspended and i am receiving the following error:
There was a failure executing the
receive pipeline:
"Microsoft.BizTalk.DefaultPipelines.PassThruReceive,
Microsoft.BizTalk.DefaultPipelines,
Version=3.0.1.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"
Source: "Unknown " Receive Port:
"RP_DCMS_REQ" URI: "CH222001-1200"
Reason: Type
System.Runtime.Remoting.ObjRef and the
types derived from it (such as
System.Runtime.Remoting.ObjRef) are
not permitted to be deserialized at
this security level.
I have already set the TypeFilterAttribute=full in the config file. What is the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能还需要在 BizTalk 配置文件 (BTSNTSvc.exe.config) 中实际设置
TypeFilterAttribute=full
。您可以在 http://msdn 中找到示例。 microsoft.com/en-us/library/aa560795(v=bts.70).aspx。You may need to actually set
TypeFilterAttribute=full
in your BizTalk config file (BTSNTSvc.exe.config) as well. You can find an example at http://msdn.microsoft.com/en-us/library/aa560795(v=bts.70).aspx.