A problem and a question...
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > BizTalk Server > BizTalk Server Orchestration > A problem and a question...




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    A problem and a question...  
Gionni


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-02-04 11:15 PM

Hello everyone,
I realized and tested an orchestration and it works. Then I
exposed it as a web service. I wrote a little console application to
start the orchestration, but Biztalk raises this errors:

Event: 5753
The "SOAP" adapter is suspending a message coming from Source
URL:"/SDS_Proxy/SDS_ReadMessages_CommandPort.asmx". Details:"The
Messaging Engine encountered an error committing a transport adapters
batch. Please refer to Health and Activity Tracking tool for more
detailed information on this failure. ".

Event: 5755
The Messaging Engine encountered an error publishing a batch of "1"
messages to the Message Box database for the transport adapter "SOAP".
Please refer to Health and Activity Tracking tool for more detailed
information on this failure and check the endpoint bindings are
correctly configured.

Event: 5778
The Messaging engine failed to process a message submitted by
adapter:SOAP Source URL:/SDS_Proxy/SDS_ReadMessages_CommandPort.asmx.
Details:Could not find a matching subscription for the message. . This
error occurs if the subscribed orchestration schedule or send port has
not been started, or if some of the message properties necessary for
subscription evaluation have not been promoted. Please refer to Health
and Activity Tracking tool for more detailed information on this
failure

Event: 5752
The Messaging Engine has suspended "1" message(s) from adapter "SOAP"
due to failures in message processing. Please refer to Health and
Activity Tracking tool for more detailed information on this failure.

What is the problem?

Another question. In my orchestration I have a Suspend shape. When the
orchestration is suspended, the only way to resume is by HAT. Is it
possibile resume from c# code (emulate HAT beaviour to resume)? In
case, could you give me any example, please?

Thank all,
Gionni





[ Post a follow-up to this message ]



    RE: A problem and a question...  
Narasimhan Padmanabhan


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-02-04 11:15 PM

Please look in the "Consuming Web Services" section in the documentation
for anything that you might have missed.

Regarding your question: You can use WMI to resume a suspended instance.
This can either be done in a WMI script or by using the WMI classes in .NET

Hope this helps!!
This posting is provided "AS IS" with no warranties, and confers no rights.

EBusiness Server Team
--------------------
|>>From: ehigionni@katamail.com (Gionni)
|>>Newsgroups: microsoft.public.biztalk.orchestration
|>>Subject: A problem and a question...
|>>Date: 31 Aug 2004 08:26:11 -0700
|>>Organization: http://groups.google.com
|>>Lines: 43
|>>Message-ID: <d96ed82b.0408310726.7c1acdea@posting.google.com>
|>>NNTP-Posting-Host: 62.101.100.5
|>>Content-Type: text/plain; charset=ISO-8859-1
|>>Content-Transfer-Encoding: 8bit
|>>X-Trace: posting.google.com 1093965971 8262 127.0.0.1 (31 Aug 2004
15:26:11 GMT)
|>>X-Complaints-To: groups-abuse@google.com
|>>NNTP-Posting-Date: Tue, 31 Aug 2004 15:26:11 +0000 (UTC)
|>>Path:
cpmsftngxa10.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed00.s
ul.t-online.de!t-online.de!news.glorb.com!postnews2.google.com!not-for-mail
|>>Xref: cpmsftngxa10.phx.gbl microsoft.public.biztalk.orchestration:7945
|>>X-Tomcat-NG: microsoft.public.biztalk.orchestration
|>>
|>>Hello everyone,
|>>     I realized and tested an orchestration and it works. Then I
|>>exposed it as a web service. I wrote a little console application to
|>>start the orchestration, but Biztalk raises this errors:
|>>
|>>Event: 5753
|>>The "SOAP" adapter is suspending a message coming from Source
|>>URL:"/SDS_Proxy/SDS_ReadMessages_CommandPort.asmx". Details:"The
|>>Messaging Engine encountered an error committing a transport adapters
|>>batch. Please refer to Health and Activity Tracking tool for more
|>>detailed information on this failure. ".
|>>
|>>Event: 5755
|>>The Messaging Engine encountered an error publishing a batch of "1"
|>>messages to the Message Box database for the transport adapter "SOAP".
|>>Please refer to Health and Activity Tracking tool for more detailed
|>>information on this failure and check the endpoint bindings are
|>>correctly configured.
|>>
|>>Event: 5778
|>>The Messaging engine failed to process a message submitted by
|>>adapter:SOAP Source URL:/SDS_Proxy/SDS_ReadMessages_CommandPort.asmx.
|>>Details:Could not find a matching subscription for the message. . This
|>>error occurs if the subscribed orchestration schedule or send port has
|>>not been started, or if some of the message properties necessary for
|>>subscription evaluation have not been promoted. Please refer to Health
|>>and Activity Tracking tool for more detailed information on this
|>>failure
|>>
|>>Event: 5752
|>>The Messaging Engine has suspended "1" message(s) from adapter "SOAP"
|>>due to failures in message processing. Please refer to Health and
|>>Activity Tracking tool for more detailed information on this failure.
|>>
|>>What is the problem?
|>>
|>>Another question. In my orchestration I have a Suspend shape. When the
|>>orchestration is suspended, the only way to resume is by HAT. Is it
|>>possibile resume from c# code (emulate HAT beaviour to resume)? In
|>>case, could you give me any example, please?
|>>
|>>Thank all,
|>>Gionni
|>>






[ Post a follow-up to this message ]



    Re: A problem and a question...  
Devdutt Patnaik


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-02-04 11:15 PM

Non-subscription could be due to a variety of reasons.Since you are exposing
the orch as a web service, the most likely reason seems to be that BizTalk
can't resolve the message type of your incoming message when it publishes it
to the MessageBox.
Try using a cusom pipeline, which contains an XML Validator component, which
points to the schema you are expecting the incoming message to be. This
instructs BizTalk as to how exactly to resolve the message.
W.r.t ur second question, suspended orchestrations can be resumed using WMI
either in scripts or c#. Please look at the Admin section of the samples in
SDK for more info.

Hope this helps
Regards
Dev

"Gionni" <ehigionni@katamail.com> wrote in message
news:d96ed82b.0408310726.7c1acdea@posting.google.com...
> Hello everyone,
>      I realized and tested an orchestration and it works. Then I
> exposed it as a web service. I wrote a little console application to
> start the orchestration, but Biztalk raises this errors:
>
> Event: 5753
> The "SOAP" adapter is suspending a message coming from Source
> URL:"/SDS_Proxy/SDS_ReadMessages_CommandPort.asmx". Details:"The
> Messaging Engine encountered an error committing a transport adapters
> batch. Please refer to Health and Activity Tracking tool for more
> detailed information on this failure. ".
>
> Event: 5755
> The Messaging Engine encountered an error publishing a batch of "1"
> messages to the Message Box database for the transport adapter "SOAP".
> Please refer to Health and Activity Tracking tool for more detailed
> information on this failure and check the endpoint bindings are
> correctly configured.
>
> Event: 5778
> The Messaging engine failed to process a message submitted by
> adapter:SOAP Source URL:/SDS_Proxy/SDS_ReadMessages_CommandPort.asmx.
> Details:Could not find a matching subscription for the message. . This
> error occurs if the subscribed orchestration schedule or send port has
> not been started, or if some of the message properties necessary for
> subscription evaluation have not been promoted. Please refer to Health
> and Activity Tracking tool for more detailed information on this
> failure
>
> Event: 5752
> The Messaging Engine has suspended "1" message(s) from adapter "SOAP"
> due to failures in message processing. Please refer to Health and
> Activity Tracking tool for more detailed information on this failure.
>
> What is the problem?
>
> Another question. In my orchestration I have a Suspend shape. When the
> orchestration is suspended, the only way to resume is by HAT. Is it
> possibile resume from c# code (emulate HAT beaviour to resume)? In
> case, could you give me any example, please?
>
> Thank all,
> Gionni







[ Post a follow-up to this message ]



    Re: A problem and a question...  
Matt Milner


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-02-04 11:16 PM

on an off chance, make sure your orchestration is started and enlisted.

Matt


"Devdutt Patnaik" <aquarius@taurus.com> wrote in message
news:ezTfRI4jEHA.2544@TK2MSFTNGP10.phx.gbl...
> Non-subscription could be due to a variety of reasons.Since you are
exposing
> the orch as a web service, the most likely reason seems to be that BizTalk
> can't resolve the message type of your incoming message when it publishes
it
> to the MessageBox.
> Try using a cusom pipeline, which contains an XML Validator component,
which
> points to the schema you are expecting the incoming message to be. This
> instructs BizTalk as to how exactly to resolve the message.
> W.r.t ur second question, suspended orchestrations can be resumed using
WMI
> either in scripts or c#. Please look at the Admin section of the samples
in
> SDK for more info.
>
> Hope this helps
> Regards
> Dev
>
> "Gionni" <ehigionni@katamail.com> wrote in message
> news:d96ed82b.0408310726.7c1acdea@posting.google.com... 
>
>







[ Post a follow-up to this message ]



    Re: A problem and a question...  
Gionni


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
09-02-04 11:16 PM

"Devdutt Patnaik" <aquarius@taurus.com> wrote in message news:<ezTfRI4jEHA.2
544@TK2MSFTNGP10.phx.gbl>...

Thank all for your responses.

> Non-subscription could be due to a variety of reasons.Since you are exposi
ng
> the orch as a web service, the most likely reason seems to be that BizTalk
> can't resolve the message type of your incoming message when it publishes 
it
> to the MessageBox.

I solved. Using Biztalk Web Services Publishing Wizard I selected
Create Biztalk Receive Location to automatically create a receive port
of type SOAP. Cause reasons that I ignore, it does not work. I deleted
the port and created another manually. Now it works.

> W.r.t ur second question, suspended orchestrations can be resumed using WM
I
> either in scripts or c#. Please look at the Admin section of the samples i
n
> SDK for more info.

Thanks for the advice.

> Regards
> Dev

Cheers,
Gionni





[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 09:47 AM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register