Definitely sounds like permissions.  I had that error on a Windows box
because I had NT Authentication enabled, obviously the Web service call
didn't pass the credentials.  I'm not sure what the equivalent of NT
authentication is on Unix, but if it's not set so that everyone can read it
that's probably part of your problem.

-----Original Message-----
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Friday, July 07, 2006 12:31 PM
To: CF-Talk
Subject: RE: Could not generate stub objects for web service invocation

Do u have security sandboxing enabled.
If so you may need to allow that port in the sandbox.
You should also make sure there is no firewall blocking that port either.

-
snake

-----Original Message-----
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
Sent: 07 July 2006 18:11
To: CF-Talk
Subject: Could not generate stub objects for web service invocation

repost due to error:


I am having a hard time invoking the ws below in a Unix/CF7/Apache 2.0
environment. I can query the WSDL and it works successful in a windows dev
environ. However when going to UNIX it is unsuccessful. I am thinking that
it is a permissions issue or something. Further more I cannot even register
other Webservices in the CF admin ( eg bable fish) Why? Has anyone come up
with a solution? Thanks in advance for any help.



My PAGE

<cfinvoke webservice="http://120.252.201.51:8200/test.cfc?wsdl";
method="getXML" returnvariable="foo">
<cfinvokeargument name="XMLInput" value="Hello THere"> </cfinvoke>

<br><cfoutput>#foo#</cfoutput>

MY WS:
<cfcomponent output="Yes">
<cffunction name="getXML" returnType="string" access="remote" output="Yes">
<cfargument name="XMLInput" type="string" > <cfoutput>#XMLInput#</cfoutput>
<cfreturn #XMLInput#> </cffunction> </cfcomponent>








~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:245767
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to