publishing orchestration as a web service
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 > publishing orchestration as a web service




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

    publishing orchestration as a web service  
john


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


 
09-04-04 10:47 PM

I tried the sample ExposingWebService  from  the SDK  (orchestration)
and i get this error:

Thanks
System.Web.Services.Protocols.SoapException: Internal SOAP Processing
Failure at
Microsoft.BizTalk.WebServices.ServerProxy.ServerProxy.Invoke(String
functionName, Object[] parameters, ParamInfo[] inParamInfos, ParamIn
fo[]
outParamInfos, Int32 bodyPartIndex, String bodyType, ArrayList inHeaders,
ArrayList inoutHeaders, ArrayList& inoutHeaderResponses, ArrayList&
outHeaderResponses, Type[] outHeaderTypes, String[] outHeaderNamespa
ces,
SoapUnknownHeader[] unknownHeaders, SoapUnknownHeader[]&
unknownHeaderResponses, Boolean oneway, Boolean spsSsoEnabled, Object
cookie) at
Microsoft.BizTalk.WebServices.ServerProxy.ServerProxy.Invoke(String
functionName, Object[] parameters, ParamInfo[] inParamInfos, ParamIn
fo[]
outParamInfos, Int32 bodyPartIndex, String bodyType, ArrayList inHeaders,
ArrayList inoutHeaders, ArrayList& inoutHeaderResponses, ArrayList&
outHeaderResponses, Type[] outHeaderTypes, String[] outHeaderNamespa
ces,
SoapUnknownHeader[] unknownHeaders, SoapUnknownHeader[]&
unknownHeaderResponses, Boolean oneway, Boolean spsSsoEnabled) at
ExposeWebService. Microsoft_Samples_BizTalk_ExposeWebServi
ce_ProcessClientReq
uest_SOAPPort.Operation_1(ClientRequest MessagePart_1)
Source Error:

Line 40:             object[] results = this.Invoke("Operation_1", new
object[] {







[ Post a follow-up to this message ]



    Re: publishing orchestration as a web service  
Yossi Dahan


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


 
09-07-04 07:54 AM

John hi,
This usually means you had problems down the line, e.g. in the pipeline.
check the event log for BizTalk messages.

Yossi Dahan

"john" <john88m@hotmail.com> wrote in message
news:uulwv$okEHA.2140@TK2MSFTNGP15.phx.gbl...
> I tried the sample ExposingWebService  from  the SDK  (orchestration)
> and i get this error:
>
> Thanks
> System.Web.Services.Protocols.SoapException: Internal SOAP Processing
> Failure at
> Microsoft.BizTalk.WebServices.ServerProxy.ServerProxy.Invoke(String
> functionName, Object[] parameters, ParamInfo[] inParamInfos, Param
Info[]
> outParamInfos, Int32 bodyPartIndex, String bodyType, ArrayList inHeaders,
> ArrayList inoutHeaders, ArrayList& inoutHeaderResponses, ArrayList&
> outHeaderResponses, Type[] outHeaderTypes, String[] outHeaderNames
paces,
> SoapUnknownHeader[] unknownHeaders, SoapUnknownHeader[]&
> unknownHeaderResponses, Boolean oneway, Boolean spsSsoEnabled, Object
> cookie) at
> Microsoft.BizTalk.WebServices.ServerProxy.ServerProxy.Invoke(String
> functionName, Object[] parameters, ParamInfo[] inParamInfos, Param
Info[]
> outParamInfos, Int32 bodyPartIndex, String bodyType, ArrayList inHeaders,
> ArrayList inoutHeaders, ArrayList& inoutHeaderResponses, ArrayList&
> outHeaderResponses, Type[] outHeaderTypes, String[] outHeaderNames
paces,
> SoapUnknownHeader[] unknownHeaders, SoapUnknownHeader[]&
> unknownHeaderResponses, Boolean oneway, Boolean spsSsoEnabled) at
>
ExposeWebService. Microsoft_Samples_BizTalk_ExposeWebServi
ce_ProcessClientReq
> uest_SOAPPort.Operation_1(ClientRequest MessagePart_1)
> Source Error:
>
> Line 40:             object[] results = this.Invoke("Operation_1", new
> object[] {
>
>







[ Post a follow-up to this message ]



    Re: publishing orchestration as a web service  
Vikas Nahata [MSFT]


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


 
09-09-04 01:47 AM

This is a generic error message. The error message is kept generic  for
security reasons so that the clients
do not see implementation details.
Howeever during develoment phase you can turn on throwdetailed error switch
and
you would get specific error message instead of the generic one.
To get more information on how to turn the switch on, please see:
http://www.msdn.microsoft.com/libra...y/en-us/sdk/htm
/ebiz_prog_webservices_lqcv.asp

Also most common reasons for this error are incorrect/insufficient security
settings for the published webservice and aspnet process. To know the
required settings please see:
http://www.msdn.microsoft.com/libra...y/en-us/sdk/htm
/ebiz_prog_webservices_lqcv.asp

The other reasons could be a disabled receive
location/not started orchestration. This can be difficult to catch
sometimes and we are considering a troubleshooting tool for the next
release which will check all these settings for a given published
webservice.

Hope this helps.

This posting is provided "AS IS" with no warranties, and confers no rights.

EBusiness Server Team
--------------------
| >>From: "Yossi Dahan" <yossidahan@hotmail.com>
| >>References: <uulwv$okEHA.2140@TK2MSFTNGP15.phx.gbl>
| >>Subject: Re: publishing orchestration as a web service
| >>Date: Tue, 7 Sep 2004 06:58:21 +0100
| >>Lines: 40
| >>X-Priority: 3
| >>X-MSMail-Priority: Normal
| >>X-Newsreader: Microsoft Outlook Express 6.00.2800.1437
| >>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
| >>Message-ID: <eNgxv#JlEHA.3896@TK2MSFTNGP15.phx.gbl>
| >>Newsgroups: microsoft.public.biztalk.server
| >>NNTP-Posting-Host: client-81-107-223-188.glfd.adsl.virgin.net
81.107.223.188
| >>Path:
cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP15
.phx.gbl
| >>Xref: cpmsftngxa10.phx.gbl microsoft.public.biztalk.server:10234
| >>X-Tomcat-NG: microsoft.public.biztalk.server
| >>
| >>John hi,
| >>This usually means you had problems down the line, e.g. in the pipeline.
| >>check the event log for BizTalk messages.
| >>
| >>Yossi Dahan
| >>
| >>"john" <john88m@hotmail.com> wrote in message
| >>news:uulwv$okEHA.2140@TK2MSFTNGP15.phx.gbl...
| >>> I tried the sample ExposingWebService  from  the SDK  (orchestration)
| >>> and i get this error:
| >>>
| >>> Thanks
| >>> System.Web.Services.Protocols.SoapException: Internal SOAP Processing
| >>> Failure at
| >>> Microsoft.BizTalk.WebServices.ServerProxy.ServerProxy.Invoke(String
| >>> functionName, Object[] parameters, ParamInfo[] inParamInfos,
ParamInfo[]
| >>> outParamInfos, Int32 bodyPartIndex, String bodyType, ArrayList
inHeaders,
| >>> ArrayList inoutHeaders, ArrayList& inoutHeaderResponses, ArrayList&
| >>> outHeaderResponses, Type[] outHeaderTypes, String[]
outHeaderNamespaces,
| >>> SoapUnknownHeader[] unknownHeaders, SoapUnknownHeader[]&
| >>> unknownHeaderResponses, Boolean oneway, Boolean spsSsoEnabled, Object
| >>> cookie) at
| >>> Microsoft.BizTalk.WebServices.ServerProxy.ServerProxy.Invoke(String
| >>> functionName, Object[] parameters, ParamInfo[] inParamInfos,
ParamInfo[]
| >>> outParamInfos, Int32 bodyPartIndex, String bodyType, ArrayList
inHeaders,
| >>> ArrayList inoutHeaders, ArrayList& inoutHeaderResponses, ArrayList&
| >>> outHeaderResponses, Type[] outHeaderTypes, String[]
outHeaderNamespaces,
| >>> SoapUnknownHeader[] unknownHeaders, SoapUnknownHeader[]&
| >>> unknownHeaderResponses, Boolean oneway, Boolean spsSsoEnabled) at
| >>>
|[vbcol=seagreen] 
eq
| >>> uest_SOAPPort.Operation_1(ClientRequest MessagePart_1)
| >>> Source Error:
| >>>
| >>> Line 40:             object[] results = this.Invoke("Operation_1",
 new
| >>> object[] {
| >>>
| >>>
| >>
| >>
| >>






[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 09:59 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