BizTalk Server - BizTalk Server 2006 KwTpm Error

This is Interesting: Free IT Magazines  
Home > Archive > BizTalk Server > June 2006 > BizTalk Server 2006 KwTpm Error





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

2006-06-02, 1: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.


lf

2006-06-06, 7:19 pm

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.
>
>
>

Hunziker Michael

2006-06-08, 8:03 am

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:
>


lf

2006-06-08, 10:35 am

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:

> 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...
>
>
>

Hunziker Michael

2006-06-08, 1: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:
>


lf

2006-06-08, 1: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 with
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...
>
>
>

Hunziker Michael

2006-06-09, 8:22 am

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:
>


lf

2006-06-09, 8:31 am

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...
>
>
>

Hunziker Michael

2006-06-09, 1: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:
>


lf

2006-06-09, 1: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...
>
>
>

Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com