Why would you include a UDF? May as well make it a private method in the CFC
itself, be more efficient I guess.

Can actuall are the WSDL in the one which errors?




 
"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-----Original Message-----
From: Michael Muller
To: CF-Talk
Sent: Fri Mar 09 20:32:36 2007
Subject: Re: Could not generate stub objects for web service invocation

Ok, this is very bizarre.

I made a new method, shown below.

<cffunction name="Testing123" returnType="string" access="remote"
output="No">
        <cfinclude template="_udf_StructToXML.cfm">
        <cfset test = StructNew()>
        <cfset test.test1 = "hoohah">
        <cfset test.test2 = "yeehah">
        <cfreturn StructToXML(test)>
</cffunction>


Now, try these examples. You can put them all on one page if you like.

<cfinvoke 
        webservice="http://www.montaguetv.org/_wsTest.cfc?wsdl"; 
        method="Testing123" 
        returnvariable="xxx">
</cfinvoke>
<cfdump var="#xmlParse(xxx)#" label="MontagueTV">
<br/>
<br/>
<cfinvoke 
        webservice="http://kusoftball.gameplannetwork.com/_wsTest.cfc?wsdl"; 
        method="Testing123" 
        returnvariable="xxx">
</cfinvoke>
<cfdump var="#xmlParse(xxx)#" label="kusoftball">
<br/>
<br/>
<cfinvoke 
        webservice="http://inside-edge.gameplannetwork.com/_wsTest.cfc?wsdl";

        method="Testing123" 
        returnvariable="xxx">
</cfinvoke>
<cfdump var="#xmlParse(xxx)#" label="kusoftball">


These are all going to the same server, same code. Nothing is different
except the domain name.


Now try this one...

<cfinvoke 
        
webservice="http://unomavsfootball.gameplannetwork.com/_wsTest.cfc?wsdl"; 
        method="Testing123" 
        returnvariable="xxx">
</cfinvoke>
<cfdump var="#xmlParse(xxx)#" label="unomavsfootball">


Only this one gives the error.

I'm losing hair on this one.

Michael



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:272247
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to