Re: Can you publishing an orchestration as a WCF service and move the service to a different server?

Home Page Forums BizTalk 2004 – BizTalk 2010 Can you publishing an orchestration as a WCF service and move the service to a different server? Re: Can you publishing an orchestration as a WCF service and move the service to a different server?

#19516

You can only host WCF receive locations on the Biztalk server.

Check the .svc file, it references the following class:

Microsoft.BizTalk.Adapter.Wcf.Runtime.CustomWebServiceHostFactory, Microsoft.BizTalk.Adapter.Wcf.Runtime, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35

This is part of the Biztalk install and will only be present on a Biztalk server.

Isolated adapters handle the message in a non Biztalk host process, in this case IIS. The entire message receipt, pipeline processing and publishing to the message box is all done on in the IIS process.