|
Home > Archive > BizTalk Server > June 2004 > How do you debug an External Assembly called from a map?
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 |
How do you debug an External Assembly called from a map?
|
|
| GaleForce 2004-06-26, 10:51 am |
| I'm having trouble getting an external assembly call to work from a BTS map
with a script functoid. Is there a process I can attach to to debug it? I
guessed and tried BTSNTsvc, but no luck.
Thanks,
Mike
| |
| larry franks 2004-06-26, 10:51 am |
| Hi Mike, it might be easier to add code to your assembly to launch the
debugger when it's called. You can add something like:
if(System.Diagnostics.Debugger.IsAttached==false)
System.Diagnostics.Debugger.Launch();
This should launch the debugger and break at the next line of code in your
component.
You could also just add some tracing to the component.
Larry Franks
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: "GaleForce" <nospan_mmcguinness@galeforcesolutions.com>
| Subject: How do you debug an External Assembly called from a map?
| Date: Thu, 24 Jun 2004 14:40:55 -0700
| Lines: 8
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.132
| Message-ID: <uij2uPjWEHA.2408@tk2msftngp13.phx.gbl>
| Newsgroups: microsoft.public.biztalk.server
| NNTP-Posting-Host: h209-139-213-230.gtconnect.net 209.139.213.230
| Path:
cpmsftngxa10.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftngp13
.phx.gbl
| Xref: cpmsftngxa10.phx.gbl microsoft.public.biztalk.server:9742
| X-Tomcat-NG: microsoft.public.biztalk.server
|
| I'm having trouble getting an external assembly call to work from a BTS
map
| with a script functoid. Is there a process I can attach to to debug it?
I
| guessed and tried BTSNTsvc, but no luck.
|
| Thanks,
| Mike
|
|
|
|
|
|
|
|