Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Could not instantiate stub objects for web service invocation

Status
Not open for further replies.

numbered

Technical User
Jun 10, 2002
54
0
0
CA
I'm trying to connect to a webservice with coldfusion. No matter what way I try to create an object I get this error.

Could not instantiate stub objects for web service invocation.

What does this error mean? I'm running CF7.

Thanks!
 
i get this error a lot when trying to consume a web service with CFINVOKE, i've found the best way to troubleshoot them is a quick CFHTTP call instead.
Code:
<cfhttp url="{web_service_URL}" method="get">
<cfhttpparam name="method" value="{method_to_call}" type="URL">

any other arguments in cfhttpparam tags with type="URL"
</cfhttp>

<cfdump var="#cfhttp.fileContent#">
9 times out of 10, this will dump out the error message you are getting from the web service.


=========================================
I have not failed. I've just found 10,000 ways that won't work.
Thomas A. Edison
 
Thanks for the feedback MorthStarDA. It turned out to be a problem with the install of CF7.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top