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