Home Page › Forums › BizTalk 2004 – BizTalk 2010 › SOAP receive port
- This topic has 7 replies, 1 voice, and was last updated 9 years, 2 months ago by
community-content.
-
AuthorPosts
-
-
December 1, 2005 at 3:14 PM #12464
Hello,
Is it possible to use Web Port as first receiving port in the orchestration?
When a reference to Web Service is add a new Web Port Type (request-response) is created. Send and Request shape is added to the orchestration and connected to recently created Web Port. For being able to start this orchestration Activate property of the Request shape should be set to true and this shape should be first in the orchestration. But Web Port requires that Send shape should be first.
How to avoid such confusing situation and configure Web Port as first receiving port of the orchestration ?Thanks in advance!
-
December 2, 2005 at 8:36 AM #12465
Thanks for the information!
I’d like to call the Web Service right at the beginning of the orchestration. I plan to use it as primary orchestration data source.
-
December 5, 2005 at 8:07 AM #12466
I think every minute will be acceptable.
-
December 6, 2005 at 9:21 AM #12467
I appreciate you for the help! It seems that in any case it is required to implement my own adapter. I have never done this before. But anyway thanks a lot!
-
December 18, 2005 at 2:07 PM #12468
I had the same proble, I want an adapter to periodically poll a web service and submit the response message to the message box for processing by an orchestration. So I wrote my own:
\”Polling Web Service Adapter\”
-
December 2, 2005 at 5:58 AM #12469
An orchestration instance will only be created on receipt of a message.
If you wish your orchestartion to call a remote web service it needs to be started by some event. That event will publish a message into the message box that your orchestration is subscribed to. Your orchestration will then call the web service and return the result.
When did you want the web service to be called?
Greg
-
December 2, 2005 at 8:13 PM #12470
When do you want to start the orchestration?
Do you want this to happen every minute, every hour, once a day, once a week or once a month?
-
December 5, 2005 at 10:02 AM #12471
There are two ways of doing this:
Create a SubmitDirect service or custom adapter that will generate a trigger message every minute. This trigger message will initiate your orchestration that will call the web service.Create a custom polling web service adapter
The standard Web Service adapter will not poll, so you cannot start an orchestration with a request/response web service.
-
-
-
-
-
-
-
-
AuthorPosts
- The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.