Hi Andrew,

I'm still not getting it?

Here are the options I've tried!

==1 CODE==
<cfscript>
webservice = CreateObject("webservice","http://dummy?wsdl";);
webservice.doBuildQuoteForItinerary("123456","en_US","","1113");
</cfscript>
==1 ERROR==
Could not perform web service invocation "doBuildQuoteForItinerary".
Here is the fault returned when invoking the web service operation:<br>
<pre>AxisFault faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode: faultString:
com.raileurope.web.ngserver.InternalErrorException: Invalid key or You
are not a registered user faultActor: faultNode: faultDetail:
{http://xml.apache.org/axis/}hostname:regapp </pre>

==2 CODE==
<cfscript>
struct_foo.key          = "123456";
struct_foo.local        = "en_US";
struct_foo.style        = "";
struct_foo.solutionId = "1113";
webservice = CreateObject("webservice","http://dummy?wsdl";);
webservice.doBuildQuoteForItinerary(struct_foo);
</cfscript>
==2 ERROR==
Web service operation "doBuildQuoteForItinerary" with parameters
{{STYLE={},KEY={123456},SOLUTIONID={1113},LOCAL={en_US}}} could not be
found.

==3 CODE==
<cfscript>
array_foo[1]            = "123456";
array_foo[2]    = "en_US";
array_foo[3]    = "";
array_foo[4] = "1113";
webservice = CreateObject("webservice","http://dummy?wsdl";);
webservice.doBuildQuoteForItinerary(array_foo);
</cfscript>
==3 ERROR==
Web service operation "doBuildQuoteForItinerary" with parameters
{[123456, en_US, , 1113]} could not be found.
===

>From what I can tell out of these 3 options, the first error tells me
that I'm on the right track but I've got 1 tiny little bit wrong.

Here is the WSDL code for the doBuildQuoteForItinerary function:
<wsdl:message name="doBuildQuoteForItineraryRequest">
<wsdl:part name="key" type="xsd:string"/>
<wsdl:part name="locale" type="xsd:string"/>
<wsdl:part name="style" type="xsd:string"/>
<wsdl:part name="solutionId" type="xsd:string"/>
</wsdl:message>


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~----------~----~----~----~------~----~------~--~---

Reply via email to