BizTalk Server 2006 KwTpm Error
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 > BizTalk Server 2006 KwTpm Error




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

    BizTalk Server 2006 KwTpm Error  
Hunziker Michael


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


 
06-02-06 06:14 PM

Hi

I have the following error when trying to get the parameters from the BAS
web service:

Failed to retrieve structured parameter value for parameter schema
'OrderProcess.PurchasingParameters' for orchestration
'OrderProcess.OrderService' in assembly 'OrderProcess, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=dac3d19cee011ef8,
processorArchitecture=MSIL' for partner 'Partner1'. If you are expecting a
value to be returned, verify that all parameters to the method are correct.

Any Ideas? Help would be very appreciated.







[ Post a follow-up to this message ]



    RE: BizTalk Server 2006 KwTpm Error  
lf


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


 
06-07-06 12:19 AM

Michael,

I am having the same problem with this tutorial.  Did you ever figure out
what the problem was?

Thanks,

Linda

"Hunziker Michael" wrote:

> Hi
>
> I have the following error when trying to get the parameters from the BAS
> web service:
>
> Failed to retrieve structured parameter value for parameter schema
> 'OrderProcess.PurchasingParameters' for orchestration
> 'OrderProcess.OrderService' in assembly 'OrderProcess, Version=1.0.0.0,
> Culture=neutral, PublicKeyToken=dac3d19cee011ef8,
> processorArchitecture=MSIL' for partner 'Partner1'. If you are expecting a
> value to be returned, verify that all parameters to the method are correct
.
>
> Any Ideas? Help would be very appreciated.
>
>
>





[ Post a follow-up to this message ]



    Re: BizTalk Server 2006 KwTpm Error  
Hunziker Michael


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


 
06-08-06 01:03 PM

yep - just found it out after HOURS of analyzing and trying.

you have to omit the "processorArchitecture=MSIL":

ParamRequestMsg.orchestrationAssemblyStrongName = "OrderProcess,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=a943ef770ebacdea";
ParamRequestMsg.orchestrationName = "OrderProcess.OrderService";
ParamRequestMsg.parameterSchemaFullName =
"OrderProcess.PurchasingParameters";
ParamRequestMsg.partnerId = sourceParty.Name;
ParamRequestMsg.roleLinkTypeAssemblyStrongName = "OrderProcess,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=a943ef770ebacdea";
ParamRequestMsg.roleLinkTypeFullName = "OrderProcess.PurchasingType";

it isn't recognized by the web service method.

hope that helps
Michael


"lf" <lf@discussions.microsoft.com> wrote in message
news:8499700A-5D2A-4415-95A5-378788CA0D12@microsoft.com...[vbcol=seagreen]
> Michael,
>
> I am having the same problem with this tutorial.  Did you ever figure out
> what the problem was?
>
> Thanks,
>
> Linda
>
> "Hunziker Michael" wrote:
> 







[ Post a follow-up to this message ]



    Re: BizTalk Server 2006 KwTpm Error  
lf


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


 
06-08-06 03:35 PM

Michael,

Thanks for your response.  Sounds like my problem has a different cause
though.  I never had the processorArchitecture=MSIL in there.  I finally
broke down and called Microsoft.  Hopefully they'll get back to me today wit
h
an answer.

Linda

"Hunziker Michael" wrote:

> yep - just found it out after HOURS of analyzing and trying.
>
> you have to omit the "processorArchitecture=MSIL":
>
> ParamRequestMsg.orchestrationAssemblyStrongName = "OrderProcess,
> Version=1.0.0.0, Culture=neutral, PublicKeyToken=a943ef770ebacdea";
> ParamRequestMsg.orchestrationName = "OrderProcess.OrderService";
> ParamRequestMsg.parameterSchemaFullName =
> "OrderProcess.PurchasingParameters";
> ParamRequestMsg.partnerId = sourceParty.Name;
> ParamRequestMsg.roleLinkTypeAssemblyStrongName = "OrderProcess,
> Version=1.0.0.0, Culture=neutral, PublicKeyToken=a943ef770ebacdea";
> ParamRequestMsg.roleLinkTypeFullName = "OrderProcess.PurchasingType";
>
> it isn't recognized by the web service method.
>
> hope that helps
> Michael
>
>
> "lf" <lf@discussions.microsoft.com> wrote in message
> news:8499700A-5D2A-4415-95A5-378788CA0D12@microsoft.com... 
>
>
>





[ Post a follow-up to this message ]



    Re: BizTalk Server 2006 KwTpm Error  
Hunziker Michael


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


 
06-08-06 06:19 PM

yep - just found it out after HOURS of analyzing and trying.

you have to omit the "processorArchitecture=MSIL":

ParamRequestMsg.orchestrationAssemblyStrongName = "OrderProcess,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=a943ef770ebacdea";
ParamRequestMsg.orchestrationName = "OrderProcess.OrderService";
ParamRequestMsg.parameterSchemaFullName =
"OrderProcess.PurchasingParameters";
ParamRequestMsg.partnerId = sourceParty.Name;
ParamRequestMsg.roleLinkTypeAssemblyStrongName = "OrderProcess,
Version=1.0.0.0, Culture=neutral, PublicKeyToken=a943ef770ebacdea";
ParamRequestMsg.roleLinkTypeFullName = "OrderProcess.PurchasingType";

it isn't recognized by the web service method.

hope that helps
Michael


"lf" <lf@discussions.microsoft.com> wrote in message
news:8499700A-5D2A-4415-95A5-378788CA0D12@microsoft.com...[vbcol=seagreen]
> Michael,
>
> I am having the same problem with this tutorial.  Did you ever figure out
> what the problem was?
>
> Thanks,
>
> Linda
>
> "Hunziker Michael" wrote:
> 







[ Post a follow-up to this message ]



    Re: BizTalk Server 2006 KwTpm Error  
lf


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


 
06-08-06 06:19 PM

Michael,

Thanks for your response.  Sounds like my problem has a different cause
though.  I never had the processorArchitecture=MSIL in there.  I finally
broke down and called Microsoft.  Hopefully they'll get back to me today wit
h
an answer.

Linda

"Hunziker Michael" wrote:

> yep - just found it out after HOURS of analyzing and trying.
>
> you have to omit the "processorArchitecture=MSIL":
>
> ParamRequestMsg.orchestrationAssemblyStrongName = "OrderProcess,
> Version=1.0.0.0, Culture=neutral, PublicKeyToken=a943ef770ebacdea";
> ParamRequestMsg.orchestrationName = "OrderProcess.OrderService";
> ParamRequestMsg.parameterSchemaFullName =
> "OrderProcess.PurchasingParameters";
> ParamRequestMsg.partnerId = sourceParty.Name;
> ParamRequestMsg.roleLinkTypeAssemblyStrongName = "OrderProcess,
> Version=1.0.0.0, Culture=neutral, PublicKeyToken=a943ef770ebacdea";
> ParamRequestMsg.roleLinkTypeFullName = "OrderProcess.PurchasingType";
>
> it isn't recognized by the web service method.
>
> hope that helps
> Michael
>
>
> "lf" <lf@discussions.microsoft.com> wrote in message
> news:8499700A-5D2A-4415-95A5-378788CA0D12@microsoft.com... 
>
>
>





[ Post a follow-up to this message ]



    Re: BizTalk Server 2006 KwTpm Error  
Hunziker Michael


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


 
06-09-06 01:22 PM

if not - post me your code - maybe I can help you.
greets
Michael


"lf" <lf@discussions.microsoft.com> wrote in message
news:23D2060B-9557-4F83-A313-96913BBE492E@microsoft.com...[vbcol=seagreen]
> Michael,
>
> Thanks for your response.  Sounds like my problem has a different cause
> though.  I never had the processorArchitecture=MSIL in there.  I finally
> broke down and called Microsoft.  Hopefully they'll get back to me today
> with
> an answer.
>
> Linda
>
> "Hunziker Michael" wrote:
> 







[ Post a follow-up to this message ]



    Re: BizTalk Server 2006 KwTpm Error  
lf


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


 
06-09-06 01:31 PM

Michael,

Thanks for your offer, but I finally did get it working, but never really
figured out for sure what the problem was.  I did change the code in that
expression, but all I did was add a space after the comma (which I'm sure
wasn't the problem, but I was desperate.)  After that it started working (of
course now I'm having problems with the rest of the stuff.)

Linda

"Hunziker Michael" wrote:

> if not - post me your code - maybe I can help you.
> greets
> Michael
>
>
> "lf" <lf@discussions.microsoft.com> wrote in message
> news:23D2060B-9557-4F83-A313-96913BBE492E@microsoft.com... 
>
>
>





[ Post a follow-up to this message ]



    Re: BizTalk Server 2006 KwTpm Error  
Hunziker Michael


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


 
06-09-06 06:18 PM

if not - post me your code - maybe I can help you.
greets
Michael


"lf" <lf@discussions.microsoft.com> wrote in message
news:23D2060B-9557-4F83-A313-96913BBE492E@microsoft.com...[vbcol=seagreen]
> Michael,
>
> Thanks for your response.  Sounds like my problem has a different cause
> though.  I never had the processorArchitecture=MSIL in there.  I finally
> broke down and called Microsoft.  Hopefully they'll get back to me today
> with
> an answer.
>
> Linda
>
> "Hunziker Michael" wrote:
> 







[ Post a follow-up to this message ]



    Re: BizTalk Server 2006 KwTpm Error  
lf


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


 
06-09-06 06:18 PM

Michael,

Thanks for your offer, but I finally did get it working, but never really
figured out for sure what the problem was.  I did change the code in that
expression, but all I did was add a space after the comma (which I'm sure
wasn't the problem, but I was desperate.)  After that it started working (of
course now I'm having problems with the rest of the stuff.)

Linda

"Hunziker Michael" wrote:

> if not - post me your code - maybe I can help you.
> greets
> Michael
>
>
> "lf" <lf@discussions.microsoft.com> wrote in message
> news:23D2060B-9557-4F83-A313-96913BBE492E@microsoft.com... 
>
>
>





[ Post a follow-up to this message ]



    Sponsored Links  




 





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