BizTalk Server Tools - debugging orchestration

This is Interesting: Free IT Magazines  
Home > Archive > BizTalk Server Tools > May 2004 > debugging orchestration





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author debugging orchestration
sidd

2004-04-14, 3:34 pm

hi all,
could someone please explain how do I debug (step through)biztalk orchestration.
Help says it could be done using HAT tool.

can someone explain what all steps exactly i have to follow ?
or
point me to some documentation on this also.
-
thanks
siddharth
Shaheer Abubucker

2004-04-14, 3:34 pm

Siddharth,

Here are the steps to use the Orchestration Debugger:

1. Open HAT, go to Operations > Service Instances, choose Class
Orchestration, and do a Run Query
2. Find the failed instance of the Orchestration you would like to debug,
right click on it and choose Orchestration Debugger.
3. You can create breakpoints on any of the shapes that you would like to
stop at to view variable values, etc. If you would like to step through
meaning you stop at each action, you will need to set a breakpoint on each
shape.
4. Once you have set all your breakpoints, submit another file into
BizTalk - processing will stop as soon as we get to the first breakpoint.
5. In HAT, hit Run Query again and you will now seen an instance where the
Status is "In breakpoint"
6. Right click on this instance, choose Orchestration Debugger, and then
go to Debug > Attach. You will now see the Variable List and Properties at
the bottom.
7. You can use Debug > Continue to go to the next breakpoint.

Thanks,
Shaheer Abubucker
Microsoft Biztalk Server Team
This posting is provided "AS IS" with no warranties,and confers no rights.
Subscribe at
http://support.microsoft.com/defaul...msdn/nospam.asp
&SD=msdn



--------------------
| From: siddharthkhare@hotmail.com (sidd)
| Newsgroups: microsoft.public.biztalk.tools
| Subject: debugging orchestration
| Date: 13 Apr 2004 23:29:04 -0700
| Organization: http://groups.google.com
| Lines: 10
| Message-ID: <af96a2d7.0404132229.42bceb21@posting.google.com>
| NNTP-Posting-Host: 172.198.175.118
| Content-Type: text/plain; charset=ISO-8859-1
| Content-Transfer-Encoding: 8bit
| X-Trace: posting.google.com 1081924144 27063 127.0.0.1 (14 Apr 2004
06:29:04 GMT)
| X-Complaints-To: groups-abuse@google.com
| NNTP-Posting-Date: Wed, 14 Apr 2004 06:29:04 +0000 (UTC)
| Path:
cpmsftngxa06.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08
.phx.gbl!newsfeed00.sul.t-online.de!t-online.de!news.glorb.com!postnews1.goo
gle.com!not-for-mail
| Xref: cpmsftngxa06.phx.gbl microsoft.public.biztalk.tools:3554
| X-Tomcat-NG: microsoft.public.biztalk.tools
|
| hi all,
| could someone please explain how do I debug (step through)biztalk
orchestration.
| Help says it could be done using HAT tool.
|
| can someone explain what all steps exactly i have to follow ?
| or
| point me to some documentation on this also.
| -
| thanks
| siddharth
|

siddharth

2004-04-14, 5:44 pm

thanks for the reply.
the variable list window shown in the debugger only shows me list of ports and message .
is it possible to see the data at each step meaning exactly what data is paasing through the orchestration and how it is getting transformed.

if i equate it to .net debugger . I am able to see which statement is executing
but NOT able to see (in watch window ) what are the values of each varaible .
does Biztalk 2004 provies that kind of debugging or it only shows what steps are executing in orchestration and not the data.

if debugger does not show that than are there any biztalk database tables where i can go and see intermediate outputs.
thanks
siddharth


Shaheer Abubucker

2004-04-15, 7:44 pm

Siddharth,

Yes, you can see the values of promoted properties or the message itself at
any of these steps.

In the Variable List window, click on the message and you will see more
information in the Variable Properties window. If the message is not null
you can see the actual message string under Message Parts (still in the
Variable Properties window) next to Part Value.

Keep in mind that the breakpoint occurs BEFORE the shape that it is at is
executed. So if you set the breakpoint on the port, the port shape has not
been executed yet so the Message is still null since no value has been
assigned to it. Set the breakpoint at the second shape and you should see
the Part Value.

Thanks,
Shaheer Abubucker
Microsoft Biztalk Server Team
This posting is provided "AS IS" with no warranties,and confers no rights.
Subscribe at
http://support.microsoft.com/defaul...msdn/nospam.asp
&SD=msdn




--------------------
| Thread-Topic: debugging orchestration
| thread-index: AcQiY5kR9ZqgJUOMSeywUe0OdYmm/w==
| X-WN-Post: microsoft.public.biztalk.tools
| From: =?Utf-8?B?c2lkZGhhcnRo?= <anonymous@discussions.microsoft.com>
| References: <af96a2d7.0404132229.42bceb21@posting.google.com>
<D6EpiNkIEHA.3924@cpmsftngxa06.phx.gbl>
| Subject: RE: debugging orchestration
| Date: Wed, 14 Apr 2004 14:01:03 -0700
| Lines: 13
| Message-ID: <9311E53B-4253-4D87-B819-A5E690A3BC86@microsoft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.public.biztalk.tools
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.biztalk.tools:3564
| NNTP-Posting-Host: tk2msftcmty1.phx.gbl 10.40.1.180
| X-Tomcat-NG: microsoft.public.biztalk.tools
|
| thanks for the reply.
the variable list window shown in the debugger only shows me list of ports
and message .
is it possible to see the data at each step meaning exactly what data is
paasing through the orchestration and how it is getting transformed.

if i equate it to .net debugger . I am able to see which statement is
executing
but NOT able to see (in watch window ) what are the values of each
varaible .
does Biztalk 2004 provies that kind of debugging or it only shows what
steps are executing in orchestration and not the data.

if debugger does not show that than are there any biztalk database tables
where i can go and see intermediate outputs.
thanks
siddharth


|

2004-04-28, 1:38 pm

Shaheer,
I have already set breakpoints in my orchs....but whenever
I attach, and then click on continue, I receive the
following message in my Application Event Log:

Uncaught exception terminated service
LAPSBPAssignment.BPRoutingAssignment(aaf2f93c-bbb3-dd4f-
b7e3-3b362874a782), instance cc8d01f4-cae1-4938-9d77-
46ce7e172647

The type System.Runtime.Remoting.ServerIdentity in
Assembly mscorlib, Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089 is not marked as
serializable.

Exception type: SerializationException
Source: mscorlib
Target Site: Void InitSerialize(System.Object,
System.Runtime.Serialization.ISurrogateSelector,
System.Runtime.Serialization.StreamingContext,
System.Runtime.Serialization.Formatters.Binary.SerObjectInf
oInit, System.Runtime.Serialization.IFormatterConverter)
Help Link:
Additional error information:



For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.

What does this mean, and how can I force it to let me do a
continue so I can progress to my next breakpoint?

Thanks
Rob Steele

>-----Original Message-----
>Siddharth,
>
>Yes, you can see the values of promoted properties or the

message itself at
>any of these steps.
>
>In the Variable List window, click on the message and you

will see more
>information in the Variable Properties window. If the

message is not null
>you can see the actual message string under Message Parts

(still in the
>Variable Properties window) next to Part Value.
>
>Keep in mind that the breakpoint occurs BEFORE the shape

that it is at is
>executed. So if you set the breakpoint on the port, the

port shape has not
>been executed yet so the Message is still null since no

value has been
>assigned to it. Set the breakpoint at the second shape

and you should see
>the Part Value.
>
>Thanks,
>Shaheer Abubucker
>Microsoft Biztalk Server Team
>This posting is provided "AS IS" with no warranties,and

confers no rights.
>Subscribe at
>http://support.microsoft.com/default.aspx?

scid=/servicedesks/msdn/nospam.asp
>&SD=msdn
>
>
>
>
>--------------------
>| Thread-Topic: debugging orchestration
>| thread-index: AcQiY5kR9ZqgJUOMSeywUe0OdYmm/w==
>| X-WN-Post: microsoft.public.biztalk.tools
>| From: =?Utf-8?B?c2lkZGhhcnRo?=

<anonymous@discussions.microsoft.com>
>| References:

<af96a2d7.0404132229.42bceb21@posting.google.com>
><D6EpiNkIEHA.3924@cpmsftngxa06.phx.gbl>
>| Subject: RE: debugging orchestration
>| Date: Wed, 14 Apr 2004 14:01:03 -0700
>| Lines: 13
>| Message-ID: <9311E53B-4253-4D87-B819-

A5E690A3BC86@microsoft.com>
>| MIME-Version: 1.0
>| Content-Type: text/plain;
>| charset="Utf-8"
>| Content-Transfer-Encoding: 7bit
>| X-Newsreader: Microsoft CDO for Windows 2000
>| Content-Class: urn:content-classes:message
>| Importance: normal
>| Priority: normal
>| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
>| Newsgroups: microsoft.public.biztalk.tools
>| Path: cpmsftngxa06.phx.gbl
>| Xref: cpmsftngxa06.phx.gbl

microsoft.public.biztalk.tools:3564
>| NNTP-Posting-Host: tk2msftcmty1.phx.gbl 10.40.1.180
>| X-Tomcat-NG: microsoft.public.biztalk.tools
>|
>| thanks for the reply.
>the variable list window shown in the debugger only shows

me list of ports
>and message .
>is it possible to see the data at each step meaning

exactly what data is
>paasing through the orchestration and how it is getting

transformed.
>
>if i equate it to .net debugger . I am able to see which

statement is
>executing
>but NOT able to see (in watch window ) what are the

values of each
>varaible .
>does Biztalk 2004 provies that kind of debugging or it

only shows what
>steps are executing in orchestration and not the data.
>
>if debugger does not show that than are there any biztalk

database tables
>where i can go and see intermediate outputs.
>thanks
>siddharth
>
>
>|
>
>.
>

Shaheer Abubucker

2004-04-29, 6:36 pm

Rob,

Is this happening with any shape in any orchestration or is this happening
with a particular shape in a specific orchestration?

Even if you are in debugging mode, if the code in the shape throws an
exception that is not handled, we will get errors and the orchestration
will fail.

Or is this error only happening in debug mode? Is this a schedule that
works fine when you actually submit files to BizTalk without any debugging
going on?

You can set a breakpoint on all you shapes to see which shape is throwing
this error.

Please give us more details as to when you are getting this error, what
kind of shape, what is happening within that shape if it has any code
within it, etc.

Thanks,
Shaheer Abubucker
Microsoft Biztalk Server Team
This posting is provided "AS IS" with no warranties,and confers no rights.
Subscribe at
http://support.microsoft.com/defaul...msdn/nospam.asp
&SD=msdn




--------------------
| Content-Class: urn:content-classes:message
| From: <anonymous@discussions.microsoft.com>
| Xref: cpmsftngxa10.phx.gbl microsoft.public.biztalk.tools:3616
| NNTP-Posting-Host: tk2msftngxa13.phx.gbl 10.40.1.165
| X-Tomcat-NG: microsoft.public.biztalk.tools
|
| Shaheer,
| I have already set breakpoints in my orchs....but whenever
| I attach, and then click on continue, I receive the
| following message in my Application Event Log:
|
| Uncaught exception terminated service
| LAPSBPAssignment.BPRoutingAssignment(aaf2f93c-bbb3-dd4f-
| b7e3-3b362874a782), instance cc8d01f4-cae1-4938-9d77-
| 46ce7e172647
|
| The type System.Runtime.Remoting.ServerIdentity in
| Assembly mscorlib, Version=1.0.5000.0, Culture=neutral,
| PublicKeyToken=b77a5c561934e089 is not marked as
| serializable.
|
| Exception type: SerializationException
| Source: mscorlib
| Target Site: Void InitSerialize(System.Object,
| System.Runtime.Serialization.ISurrogateSelector,
| System.Runtime.Serialization.StreamingContext,
| System.Runtime.Serialization.Formatters.Binary.SerObjectInf
| oInit, System.Runtime.Serialization.IFormatterConverter)
| Help Link:
| Additional error information:
|
|
|
| For more information, see Help and Support Center at
| http://go.microsoft.com/fwlink/events.asp.
|
| What does this mean, and how can I force it to let me do a
| continue so I can progress to my next breakpoint?
|
| Thanks
| Rob Steele
|
| >-----Original Message-----
| >Siddharth,
| >
| >Yes, you can see the values of promoted properties or the
| message itself at
| >any of these steps.
| >
| >In the Variable List window, click on the message and you
| will see more
| >information in the Variable Properties window. If the
| message is not null
| >you can see the actual message string under Message Parts
| (still in the
| >Variable Properties window) next to Part Value.
| >
| >Keep in mind that the breakpoint occurs BEFORE the shape
| that it is at is
| >executed. So if you set the breakpoint on the port, the
| port shape has not
| >been executed yet so the Message is still null since no
| value has been
| >assigned to it. Set the breakpoint at the second shape
| and you should see
| >the Part Value.
| >
| >Thanks,
| >Shaheer Abubucker
| >Microsoft Biztalk Server Team
| >This posting is provided "AS IS" with no warranties,and
| confers no rights.
| >Subscribe at
| >http://support.microsoft.com/default.aspx?
| scid=/servicedesks/msdn/nospam.asp
| >&SD=msdn
| >
| >
| >
| >
| >--------------------
| >| Thread-Topic: debugging orchestration
| >| thread-index: AcQiY5kR9ZqgJUOMSeywUe0OdYmm/w==
| >| X-WN-Post: microsoft.public.biztalk.tools
| >| From: =?Utf-8?B?c2lkZGhhcnRo?=
| <anonymous@discussions.microsoft.com>
| >| References:
| <af96a2d7.0404132229.42bceb21@posting.google.com>
| ><D6EpiNkIEHA.3924@cpmsftngxa06.phx.gbl>
| >| Subject: RE: debugging orchestration
| >| Date: Wed, 14 Apr 2004 14:01:03 -0700
| >| Lines: 13
| >| Message-ID: <9311E53B-4253-4D87-B819-
| A5E690A3BC86@microsoft.com>
| >| MIME-Version: 1.0
| >| Content-Type: text/plain;
| >| charset="Utf-8"
| >| Content-Transfer-Encoding: 7bit
| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| Content-Class: urn:content-classes:message
| >| Importance: normal
| >| Priority: normal
| >| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| >| Newsgroups: microsoft.public.biztalk.tools
| >| Path: cpmsftngxa06.phx.gbl
| >| Xref: cpmsftngxa06.phx.gbl
| microsoft.public.biztalk.tools:3564
| >| NNTP-Posting-Host: tk2msftcmty1.phx.gbl 10.40.1.180
| >| X-Tomcat-NG: microsoft.public.biztalk.tools
| >|
| >| thanks for the reply.
| >the variable list window shown in the debugger only shows
| me list of ports
| >and message .
| >is it possible to see the data at each step meaning
| exactly what data is
| >paasing through the orchestration and how it is getting
| transformed.
| >
| >if i equate it to .net debugger . I am able to see which
| statement is
| >executing
| >but NOT able to see (in watch window ) what are the
| values of each
| >varaible .
| >does Biztalk 2004 provies that kind of debugging or it
| only shows what
| >steps are executing in orchestration and not the data.
| >
| >if debugger does not show that than are there any biztalk
| database tables
| >where i can go and see intermediate outputs.
| >thanks
| >siddharth
| >
| >
| >|
| >
| >.
| >
|

Rob Steele

2004-04-30, 10:38 am

This error only happens when I have set a breakpoint, gone
into debug mode, and click on continue. It does not
matter if there are additional break points in the
orchestration or not. It does not matter if the
breakpoint is on any specific shape. It does not matter
if it is an executable shape or a transaction/scope
shape. It does not matter if it is the first, last or any
step in the middle. There can be code in the shape or
none depending on whether the shape allows code to be
entered.

Sorry, I know this is not alot of information to go on,
but I was hoping you had seen this before.

Thanks
Rob Steele
>-----Original Message-----
>Rob,
>
>Is this happening with any shape in any orchestration or

is this happening
>with a particular shape in a specific orchestration?
>
>Even if you are in debugging mode, if the code in the

shape throws an
>exception that is not handled, we will get errors and the

orchestration
>will fail.
>
>Or is this error only happening in debug mode? Is this a

schedule that
>works fine when you actually submit files to BizTalk

without any debugging
>going on?
>
>You can set a breakpoint on all you shapes to see which

shape is throwing
>this error.
>
>Please give us more details as to when you are getting

this error, what
>kind of shape, what is happening within that shape if it

has any code
>within it, etc.
>
>Thanks,
>Shaheer Abubucker
>Microsoft Biztalk Server Team
>This posting is provided "AS IS" with no warranties,and

confers no rights.
>Subscribe at
>http://support.microsoft.com/default.aspx?

scid=/servicedesks/msdn/nospam.asp
>&SD=msdn
>
>
>
>
>--------------------
>| Content-Class: urn:content-classes:message
>| From: <anonymous@discussions.microsoft.com>
>| Xref: cpmsftngxa10.phx.gbl

microsoft.public.biztalk.tools:3616
>| NNTP-Posting-Host: tk2msftngxa13.phx.gbl 10.40.1.165
>| X-Tomcat-NG: microsoft.public.biztalk.tools
>|
>| Shaheer,
>| I have already set breakpoints in my orchs....but

whenever
>| I attach, and then click on continue, I receive the
>| following message in my Application Event Log:
>|
>| Uncaught exception terminated service
>| LAPSBPAssignment.BPRoutingAssignment(aaf2f93c-bbb3-dd4f-
>| b7e3-3b362874a782), instance cc8d01f4-cae1-4938-9d77-
>| 46ce7e172647
>|
>| The type System.Runtime.Remoting.ServerIdentity in
>| Assembly mscorlib, Version=1.0.5000.0, Culture=neutral,
>| PublicKeyToken=b77a5c561934e089 is not marked as
>| serializable.
>|
>| Exception type: SerializationException
>| Source: mscorlib
>| Target Site: Void InitSerialize(System.Object,
>| System.Runtime.Serialization.ISurrogateSelector,
>| System.Runtime.Serialization.StreamingContext,
>|

System.Runtime.Serialization.Formatters.Binary.SerObjectInf
>| oInit, System.Runtime.Serialization.IFormatterConverter)
>| Help Link:
>| Additional error information:
>|
>|
>|
>| For more information, see Help and Support Center at
>| http://go.microsoft.com/fwlink/events.asp.
>|
>| What does this mean, and how can I force it to let me

do a
>| continue so I can progress to my next breakpoint?
>|
>| Thanks
>| Rob Steele
>|
>| >-----Original Message-----
>| >Siddharth,
>| >
>| >Yes, you can see the values of promoted properties or

the
>| message itself at
>| >any of these steps.
>| >
>| >In the Variable List window, click on the message and

you
>| will see more
>| >information in the Variable Properties window. If the
>| message is not null
>| >you can see the actual message string under Message

Parts
>| (still in the
>| >Variable Properties window) next to Part Value.
>| >
>| >Keep in mind that the breakpoint occurs BEFORE the

shape
>| that it is at is
>| >executed. So if you set the breakpoint on the port,

the
>| port shape has not
>| >been executed yet so the Message is still null since

no
>| value has been
>| >assigned to it. Set the breakpoint at the second

shape
>| and you should see
>| >the Part Value.
>| >
>| >Thanks,
>| >Shaheer Abubucker
>| >Microsoft Biztalk Server Team
>| >This posting is provided "AS IS" with no

warranties,and
>| confers no rights.
>| >Subscribe at
>| >http://support.microsoft.com/default.aspx?
>| scid=/servicedesks/msdn/nospam.asp
>| >&SD=msdn
>| >
>| >
>| >
>| >
>| >--------------------
>| >| Thread-Topic: debugging orchestration
>| >| thread-index: AcQiY5kR9ZqgJUOMSeywUe0OdYmm/w==
>| >| X-WN-Post: microsoft.public.biztalk.tools
>| >| From: =?Utf-8?B?c2lkZGhhcnRo?=
>| <anonymous@discussions.microsoft.com>
>| >| References:
>| <af96a2d7.0404132229.42bceb21@posting.google.com>
>| ><D6EpiNkIEHA.3924@cpmsftngxa06.phx.gbl>
>| >| Subject: RE: debugging orchestration
>| >| Date: Wed, 14 Apr 2004 14:01:03 -0700
>| >| Lines: 13
>| >| Message-ID: <9311E53B-4253-4D87-B819-
>| A5E690A3BC86@microsoft.com>
>| >| MIME-Version: 1.0
>| >| Content-Type: text/plain;
>| >| charset="Utf-8"
>| >| Content-Transfer-Encoding: 7bit
>| >| X-Newsreader: Microsoft CDO for Windows 2000
>| >| Content-Class: urn:content-classes:message
>| >| Importance: normal
>| >| Priority: normal
>| >| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
>| >| Newsgroups: microsoft.public.biztalk.tools
>| >| Path: cpmsftngxa06.phx.gbl
>| >| Xref: cpmsftngxa06.phx.gbl
>| microsoft.public.biztalk.tools:3564
>| >| NNTP-Posting-Host: tk2msftcmty1.phx.gbl 10.40.1.180
>| >| X-Tomcat-NG: microsoft.public.biztalk.tools
>| >|
>| >| thanks for the reply.
>| >the variable list window shown in the debugger only

shows
>| me list of ports
>| >and message .
>| >is it possible to see the data at each step meaning
>| exactly what data is
>| >paasing through the orchestration and how it is

getting
>| transformed.
>| >
>| >if i equate it to .net debugger . I am able to see

which
>| statement is
>| >executing
>| >but NOT able to see (in watch window ) what are the
>| values of each
>| >varaible .
>| >does Biztalk 2004 provies that kind of debugging or

it
>| only shows what
>| >steps are executing in orchestration and not the data.
>| >
>| >if debugger does not show that than are there any

biztalk
>| database tables
>| >where i can go and see intermediate outputs.
>| >thanks
>| >siddharth
>| >
>| >
>| >|
>| >
>| >.
>| >
>|
>
>.
>

Shaheer Abubucker

2004-04-30, 6:44 pm

Rob,

What version of the .NET framework do you have on your box?

If you have 2.0 on the box (which is a beta product), you will have issues
with the Orchestration Debugger. Even if you have a side by side
installation of 2.0 with 1.1, you will have this problem. You must
specifically remove .NET 2.0 from the box for the Orchestration Debugger to
work properly.

That is the only time I've seen an issue where the Debugger errors out on
any shape in any orchestration.

Shaheer Abubucker
Microsoft Biztalk Server Team
This posting is provided "AS IS" with no warranties,and confers no rights.
Subscribe at
http://support.microsoft.com/defaul...msdn/nospam.asp
&SD=msdn


--------------------
| Content-Class: urn:content-classes:message
| From: "Rob Steele" <rsteele@landam.com>
| Sender: "Rob Steele" <rsteele@landam.com>
| References: <af96a2d7.0404132229.42bceb21@posting.google.com>
<D6EpiNkIEHA.3924@cpmsftngxa06.phx.gbl> <9311E53B-4253-
| This error only happens when I have set a breakpoint, gone
| into debug mode, and click on continue. It does not
| matter if there are additional break points in the
| orchestration or not. It does not matter if the
| breakpoint is on any specific shape. It does not matter
| if it is an executable shape or a transaction/scope
| shape. It does not matter if it is the first, last or any
| step in the middle. There can be code in the shape or
| none depending on whether the shape allows code to be
| entered.
|
| Sorry, I know this is not alot of information to go on,
| but I was hoping you had seen this before.
|
| Thanks
| Rob Steele
| >-----Original Message-----
| >Rob,
| >
| >Is this happening with any shape in any orchestration or
| is this happening
| >with a particular shape in a specific orchestration?
| >
| >Even if you are in debugging mode, if the code in the
| shape throws an
| >exception that is not handled, we will get errors and the
| orchestration
| >will fail.
| >
| >Or is this error only happening in debug mode? Is this a
| schedule that
| >works fine when you actually submit files to BizTalk
| without any debugging
| >going on?
| >
| >You can set a breakpoint on all you shapes to see which
| shape is throwing
| >this error.
| >
| >Please give us more details as to when you are getting
| this error, what
| >kind of shape, what is happening within that shape if it
| has any code
| >within it, etc.
| >
| >Thanks,
| >Shaheer Abubucker
| >Microsoft Biztalk Server Team
| >This posting is provided "AS IS" with no warranties,and
| confers no rights.
| >Subscribe at
| >http://support.microsoft.com/default.aspx?
| scid=/servicedesks/msdn/nospam.asp
| >&SD=msdn
| >
| >
| >
| >
| >--------------------
| >| Content-Class: urn:content-classes:message
| >| From: <anonymous@discussions.microsoft.com>
| >| Xref: cpmsftngxa10.phx.gbl
| microsoft.public.biztalk.tools:3616
| >| NNTP-Posting-Host: tk2msftngxa13.phx.gbl 10.40.1.165
| >| X-Tomcat-NG: microsoft.public.biztalk.tools
| >|
| >| Shaheer,
| >| I have already set breakpoints in my orchs....but
| whenever
| >| I attach, and then click on continue, I receive the
| >| following message in my Application Event Log:
| >|
| >| Uncaught exception terminated service
| >| LAPSBPAssignment.BPRoutingAssignment(aaf2f93c-bbb3-dd4f-
| >| b7e3-3b362874a782), instance cc8d01f4-cae1-4938-9d77-
| >| 46ce7e172647
| >|
| >| The type System.Runtime.Remoting.ServerIdentity in
| >| Assembly mscorlib, Version=1.0.5000.0, Culture=neutral,
| >| PublicKeyToken=b77a5c561934e089 is not marked as
| >| serializable.
| >|
| >| Exception type: SerializationException
| >| Source: mscorlib
| >| Target Site: Void InitSerialize(System.Object,
| >| System.Runtime.Serialization.ISurrogateSelector,
| >| System.Runtime.Serialization.StreamingContext,
| >|
| System.Runtime.Serialization.Formatters.Binary.SerObjectInf
| >| oInit, System.Runtime.Serialization.IFormatterConverter)
| >| Help Link:
| >| Additional error information:
| >|
| >|
| >|
| >| For more information, see Help and Support Center at
| >| http://go.microsoft.com/fwlink/events.asp.
| >|
| >| What does this mean, and how can I force it to let me
| do a
| >| continue so I can progress to my next breakpoint?
| >|
| >| Thanks
| >| Rob Steele
| >|
| >| >-----Original Message-----
| >| >Siddharth,
| >| >
| >| >Yes, you can see the values of promoted properties or
| the
| >| message itself at
| >| >any of these steps.
| >| >
| >| >In the Variable List window, click on the message and
| you
| >| will see more
| >| >information in the Variable Properties window. If the
| >| message is not null
| >| >you can see the actual message string under Message
| Parts
| >| (still in the
| >| >Variable Properties window) next to Part Value.
| >| >
| >| >Keep in mind that the breakpoint occurs BEFORE the
| shape
| >| that it is at is
| >| >executed. So if you set the breakpoint on the port,
| the
| >| port shape has not
| >| >been executed yet so the Message is still null since
| no
| >| value has been
| >| >assigned to it. Set the breakpoint at the second
| shape
| >| and you should see
| >| >the Part Value.
| >| >
| >| >Thanks,
| >| >Shaheer Abubucker
| >| >Microsoft Biztalk Server Team
| >| >This posting is provided "AS IS" with no
| warranties,and
| >| confers no rights.
| >| >Subscribe at
| >| >http://support.microsoft.com/default.aspx?
| >| scid=/servicedesks/msdn/nospam.asp
| >| >&SD=msdn
| >| >
| >| >
| >| >
| >| >
| >| >--------------------
| >| >| Thread-Topic: debugging orchestration
| >| >| thread-index: AcQiY5kR9ZqgJUOMSeywUe0OdYmm/w==
| >| >| X-WN-Post: microsoft.public.biztalk.tools
| >| >| From: =?Utf-8?B?c2lkZGhhcnRo?=
| >| <anonymous@discussions.microsoft.com>
| >| >| References:
| >| <af96a2d7.0404132229.42bceb21@posting.google.com>
| >| ><D6EpiNkIEHA.3924@cpmsftngxa06.phx.gbl>
| >| >| Subject: RE: debugging orchestration
| >| >| Date: Wed, 14 Apr 2004 14:01:03 -0700
| >| >| Lines: 13
| >| >| Message-ID: <9311E53B-4253-4D87-B819-
| >| A5E690A3BC86@microsoft.com>
| >| >| MIME-Version: 1.0
| >| >| Content-Type: text/plain;
| >| >| charset="Utf-8"
| >| >| Content-Transfer-Encoding: 7bit
| >| >| X-Newsreader: Microsoft CDO for Windows 2000
| >| >| Content-Class: urn:content-classes:message
| >| >| Importance: normal
| >| >| Priority: normal
| >| >| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| >| >| Newsgroups: microsoft.public.biztalk.tools
| >| >| Path: cpmsftngxa06.phx.gbl
| >| >| Xref: cpmsftngxa06.phx.gbl
| >| microsoft.public.biztalk.tools:3564
| >| >| NNTP-Posting-Host: tk2msftcmty1.phx.gbl 10.40.1.180
| >| >| X-Tomcat-NG: microsoft.public.biztalk.tools
| >| >|
| >| >| thanks for the reply.
| >| >the variable list window shown in the debugger only
| shows
| >| me list of ports
| >| >and message .
| >| >is it possible to see the data at each step meaning
| >| exactly what data is
| >| >paasing through the orchestration and how it is
| getting
| >| transformed.
| >| >
| >| >if i equate it to .net debugger . I am able to see
| which
| >| statement is
| >| >executing
| >| >but NOT able to see (in watch window ) what are the
| >| values of each
| >| >varaible .
| >| >does Biztalk 2004 provies that kind of debugging or
| it
| >| only shows what
| >| >steps are executing in orchestration and not the data.
| >| >
| >| >if debugger does not show that than are there any
| biztalk
| >| database tables
| >| >where i can go and see intermediate outputs.
| >| >thanks
| >| >siddharth
| >| >
| >| >
| >| >|
| >| >
| >| >.
| >| >
| >|
| >
| >.
| >
|

2004-05-04, 12:36 pm

I currently only have 1.1 and 1.0 on the box. I was not
aware that 2.0 was out yet (BETA or otherwise)

Thanks
Rob

>-----Original Message-----
>Rob,
>
>What version of the .NET framework do you have on your

box?
>
>If you have 2.0 on the box (which is a beta product), you

will have issues
>with the Orchestration Debugger. Even if you have a side

by side
>installation of 2.0 with 1.1, you will have this

problem. You must
>specifically remove .NET 2.0 from the box for the

Orchestration Debugger to
>work properly.
>
>That is the only time I've seen an issue where the

Debugger errors out on
>any shape in any orchestration.
>
>Shaheer Abubucker
>Microsoft Biztalk Server Team
>This posting is provided "AS IS" with no warranties,and

confers no rights.
>Subscribe at
>http://support.microsoft.com/default.aspx?

scid=/servicedesks/msdn/nospam.asp
>&SD=msdn
>
>
>--------------------
>| Content-Class: urn:content-classes:message
>| From: "Rob Steele" <rsteele@landam.com>
>| Sender: "Rob Steele" <rsteele@landam.com>
>| References:

<af96a2d7.0404132229.42bceb21@posting.google.com>
><D6EpiNkIEHA.3924@cpmsftngxa06.phx.gbl> <9311E53B-4253-
>| This error only happens when I have set a breakpoint,

gone
>| into debug mode, and click on continue. It does not
>| matter if there are additional break points in the
>| orchestration or not. It does not matter if the
>| breakpoint is on any specific shape. It does not

matter
>| if it is an executable shape or a transaction/scope
>| shape. It does not matter if it is the first, last or

any
>| step in the middle. There can be code in the shape or
>| none depending on whether the shape allows code to be
>| entered.
>|
>| Sorry, I know this is not alot of information to go on,
>| but I was hoping you had seen this before.
>|
>| Thanks
>| Rob Steele
>| >-----Original Message-----
>| >Rob,
>| >
>| >Is this happening with any shape in any orchestration

or
>| is this happening
>| >with a particular shape in a specific orchestration?
>| >
>| >Even if you are in debugging mode, if the code in the
>| shape throws an
>| >exception that is not handled, we will get errors and

the
>| orchestration
>| >will fail.
>| >
>| >Or is this error only happening in debug mode? Is

this a
>| schedule that
>| >works fine when you actually submit files to BizTalk
>| without any debugging
>| >going on?
>| >
>| >You can set a breakpoint on all you shapes to see

which
>| shape is throwing
>| >this error.
>| >
>| >Please give us more details as to when you are getting
>| this error, what
>| >kind of shape, what is happening within that shape if

it
>| has any code
>| >within it, etc.
>| >
>| >Thanks,
>| >Shaheer Abubucker
>| >Microsoft Biztalk Server Team
>| >This posting is provided "AS IS" with no

warranties,and
>| confers no rights.
>| >Subscribe at
>| >http://support.microsoft.com/default.aspx?
>| scid=/servicedesks/msdn/nospam.asp
>| >&SD=msdn
>| >
>| >
>| >
>| >
>| >--------------------
>| >| Content-Class: urn:content-classes:message
>| >| From: <anonymous@discussions.microsoft.com>
>| >| Xref: cpmsftngxa10.phx.gbl
>| microsoft.public.biztalk.tools:3616
>| >| NNTP-Posting-Host: tk2msftngxa13.phx.gbl 10.40.1.165
>| >| X-Tomcat-NG: microsoft.public.biztalk.tools
>| >|
>| >| Shaheer,
>| >| I have already set breakpoints in my orchs....but
>| whenever
>| >| I attach, and then click on continue, I receive the
>| >| following message in my Application Event Log:
>| >|
>| >| Uncaught exception terminated service
>| >| LAPSBPAssignment.BPRoutingAssignment(aaf2f93c-bbb3-

dd4f-
>| >| b7e3-3b362874a782), instance cc8d01f4-cae1-4938-9d77-
>| >| 46ce7e172647
>| >|
>| >| The type System.Runtime.Remoting.ServerIdentity in
>| >| Assembly mscorlib, Version=1.0.5000.0,

Culture=neutral,
>| >| PublicKeyToken=b77a5c561934e089 is not marked as
>| >| serializable.
>| >|
>| >| Exception type: SerializationException
>| >| Source: mscorlib
>| >| Target Site: Void InitSerialize(System.Object,
>| >| System.Runtime.Serialization.ISurrogateSelector,
>| >| System.Runtime.Serialization.StreamingContext,
>| >|
>|

System.Runtime.Serialization.Formatters.Binary.SerObjectInf
>| >| oInit,

System.Runtime.Serialization.IFormatterConverter)
>| >| Help Link:
>| >| Additional error information:
>| >|
>| >|
>| >|
>| >| For more information, see Help and Support Center at
>| >| http://go.microsoft.com/fwlink/events.asp.
>| >|
>| >| What does this mean, and how can I force it to let

me
>| do a
>| >| continue so I can progress to my next breakpoint?
>| >|
>| >| Thanks
>| >| Rob Steele
>| >|
>| >| >-----Original Message-----
>| >| >Siddharth,
>| >| >
>| >| >Yes, you can see the values of promoted properties

or
>| the
>| >| message itself at
>| >| >any of these steps.
>| >| >
>| >| >In the Variable List window, click on the message

and
>| you
>| >| will see more
>| >| >information in the Variable Properties window. If

the
>| >| message is not null
>| >| >you can see the actual message string under Message
>| Parts
>| >| (still in the
>| >| >Variable Properties window) next to Part Value.
>| >| >
>| >| >Keep in mind that the breakpoint occurs BEFORE the
>| shape
>| >| that it is at is
>| >| >executed. So if you set the breakpoint on the

port,
>| the
>| >| port shape has not
>| >| >been executed yet so the Message is still null

since
>| no
>| >| value has been
>| >| >assigned to it. Set the breakpoint at the second
>| shape
>| >| and you should see
>| >| >the Part Value.
>| >| >
>| >| >Thanks,
>| >| >Shaheer Abubucker
>| >| >Microsoft Biztalk Server Team
>| >| >This posting is provided "AS IS" with no
>| warranties,and
>| >| confers no rights.
>| >| >Subscribe at
>| >| >http://support.microsoft.com/default.aspx?
>| >| scid=/servicedesks/msdn/nospam.asp
>| >| >&SD=msdn
>| >| >
>| >| >
>| >| >
>| >| >
>| >| >--------------------
>| >| >| Thread-Topic: debugging orchestration
>| >| >| thread-index: AcQiY5kR9ZqgJUOMSeywUe0OdYmm/w==
>| >| >| X-WN-Post: microsoft.public.biztalk.tools
>| >| >| From: =?Utf-8?B?c2lkZGhhcnRo?=
>| >| <anonymous@discussions.microsoft.com>
>| >| >| References:
>| >| <af96a2d7.0404132229.42bceb21@posting.google.com>
>| >| ><D6EpiNkIEHA.3924@cpmsftngxa06.phx.gbl>
>| >| >| Subject: RE: debugging orchestration
>| >| >| Date: Wed, 14 Apr 2004 14:01:03 -0700
>| >| >| Lines: 13
>| >| >| Message-ID: <9311E53B-4253-4D87-B819-
>| >| A5E690A3BC86@microsoft.com>
>| >| >| MIME-Version: 1.0
>| >| >| Content-Type: text/plain;
>| >| >| charset="Utf-8"
>| >| >| Content-Transfer-Encoding: 7bit
>| >| >| X-Newsreader: Microsoft CDO for Windows 2000
>| >| >| Content-Class: urn:content-classes:message
>| >| >| Importance: normal
>| >| >| Priority: normal
>| >| >| X-MimeOLE: Produced By Microsoft MimeOLE

V6.00.3790.0
>| >| >| Newsgroups: microsoft.public.biztalk.tools
>| >| >| Path: cpmsftngxa06.phx.gbl
>| >| >| Xref: cpmsftngxa06.phx.gbl
>| >| microsoft.public.biztalk.tools:3564
>| >| >| NNTP-Posting-Host: tk2msftcmty1.phx.gbl

10.40.1.180
>| >| >| X-Tomcat-NG: microsoft.public.biztalk.tools
>| >| >|
>| >| >| thanks for the reply.
>| >| >the variable list window shown in the debugger only
>| shows
>| >| me list of ports
>| >| >and message .
>| >| >is it possible to see the data at each step meaning
>| >| exactly what data is
>| >| >paasing through the orchestration and how it is
>| getting
>| >| transformed.
>| >| >
>| >| >if i equate it to .net debugger . I am able to see
>| which
>| >| statement is
>| >| >executing
>| >| >but NOT able to see (in watch window ) what are

the
>| >| values of each
>| >| >varaible .
>| >| >does Biztalk 2004 provies that kind of debugging

or
>| it
>| >| only shows what
>| >| >steps are executing in orchestration and not the

data.
>| >| >
>| >| >if debugger does not show that than are there any
>| biztalk
>| >| database tables
>| >| >where i can go and see intermediate outputs.
>| >| >thanks
>| >| >siddharth
>| >| >
>| >| >
>| >| >|
>| >| >
>| >| >.
>| >| >
>| >|
>| >
>| >.
>| >
>|
>
>.
>

Shaheer Abubucker

2004-05-11, 8:21 pm

Rob,

.NET 2.0 is not a public beta. Also, if you've installed VS.NET 2005
(whidbey - also on private beta), it installs .NET 2.0 and uninstalling VS
2005 does not remove .NET 2.0. You have to specifically remove .NET 2.0
after uninstalling VS 2005.

But since, it doesn't look like your problem is .NET 2.0, I'd like to get
some more information about your setup.

First, let me know what your overall architecture is. How many BizTalk
boxes? What components of BizTalk installed on each? How many SQL boxes?
What OS and service pack?

Also let me know what the version number is of your BTSNTSvc.exe file is in
the install folder of BizTalk.

Are you seeing a popup error as well as an error in the application event
logs?

I have also emailed you (to your Landam.com email address) an orchestration
that has only 2 shapes. The receive shape accepts any XML file and then
the delay shape pauses execution for 1 day. Please submit a file, and find
the running instance in HAT and set breakpoints on both shapes in it and
then submit another file and attach to the second instance and hit continue.

Let me know the exact error message that pops up in HAT is and also the
exact event viewer error.

Thanks,
Shaheer Abubucker
Microsoft Biztalk Server Team
This posting is provided "AS IS" with no warranties,and confers no rights.
Subscribe at
http://support.microsoft.com/defaul...msdn/nospam.asp
&SD=msdn

Rob Steele

2004-05-13, 3:01 pm

I never received any orchestrations from you.

Rob

>-----Original Message-----
>Rob,
>
>.NET 2.0 is not a public beta. Also, if you've installed

VS.NET 2005
>(whidbey - also on private beta), it installs .NET 2.0

and uninstalling VS
>2005 does not remove .NET 2.0. You have to specifically

remove .NET 2.0
>after uninstalling VS 2005.
>
>But since, it doesn't look like your problem is .NET 2.0,

I'd like to get
>some more information about your setup.
>
>First, let me know what your overall architecture is.

How many BizTalk
>boxes? What components of BizTalk installed on each?

How many SQL boxes?
>What OS and service pack?
>
>Also let me know what the version number is of your

BTSNTSvc.exe file is in
>the install folder of BizTalk.
>
>Are you seeing a popup error as well as an error in the

application event
>logs?
>
>I have also emailed you (to your Landam.com email

address) an orchestration
>that has only 2 shapes. The receive shape accepts any

XML file and then
>the delay shape pauses execution for 1 day. Please

submit a file, and find
>the running instance in HAT and set breakpoints on both

shapes in it and
>then submit another file and attach to the second

instance and hit continue.
>
>Let me know the exact error message that pops up in HAT

is and also the
>exact event viewer error.
>
>Thanks,
>Shaheer Abubucker
>Microsoft Biztalk Server Team
>This posting is provided "AS IS" with no warranties,and

confers no rights.
>Subscribe at
>http://support.microsoft.com/default.aspx?

scid=/servicedesks/msdn/nospam.asp
>&SD=msdn
>
>.
>

Shaheer Abubucker

2004-05-17, 11:42 am

Rob,

I have resent the orchestration to your Landam and Hotmail accounts.
Let me know if you got it.

Thanks,
Shaheer
--------------------
| Content-Class: urn:content-classes:message
| From: "Rob Steele" <rsteele@landam.com>
| Sender: "Rob Steele" <rsteele@landam.com>
|
| I never received any orchestrations from you.
|
| Rob
|
| >-----Original Message-----
| >Rob,
| >
| >.NET 2.0 is not a public beta. Also, if you've installed
| VS.NET 2005
| >(whidbey - also on private beta), it installs .NET 2.0
| and uninstalling VS
| >2005 does not remove .NET 2.0. You have to specifically
| remove .NET 2.0
| >after uninstalling VS 2005.
| >
| >But since, it doesn't look like your problem is .NET 2.0,
| I'd like to get
| >some more information about your setup.
| >
| >First, let me know what your overall architecture is.
| How many BizTalk
| >boxes? What components of BizTalk installed on each?
| How many SQL boxes?
| >What OS and service pack?
| >
| >Also let me know what the version number is of your
| BTSNTSvc.exe file is in
| >the install folder of BizTalk.
| >
| >Are you seeing a popup error as well as an error in the
| application event
| >logs?
| >
| >I have also emailed you (to your Landam.com email
| address) an orchestration
| >that has only 2 shapes. The receive shape accepts any
| XML file and then
| >the delay shape pauses execution for 1 day. Please
| submit a file, and find
| >the running instance in HAT and set breakpoints on both
| shapes in it and
| >then submit another file and attach to the second
| instance and hit continue.
| >
| >Let me know the exact error message that pops up in HAT
| is and also the
| >exact event viewer error.
| >
| >Thanks,
| >Shaheer Abubucker
| >Microsoft Biztalk Server Team
| >This posting is provided "AS IS" with no warranties,and
| confers no rights.
| >Subscribe at
| >http://support.microsoft.com/default.aspx?
| scid=/servicedesks/msdn/nospam.asp
| >&SD=msdn
| >
| >.
| >
|

Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com