Hmm, can you access the WSDL using a browser when the server is the unix box?
It is very likely permissions. Is the directory where CF is installed owned by the same user that CF runs as? try doing something like the following chown -R cfuser.cfuser /opt/jrun4 where cfuser is the user that cf runs as, the second cfuser is the group that cf runs as and /opt/jrun4 is the folder where CF is installed. You will need to do this as root. Russ > -----Original Message----- > From: Michael Dinowitz [mailto:[EMAIL PROTECTED] > Sent: Friday, July 07, 2006 1:11 PM > 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:245700 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

