Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Tom Jordahl #1
Re: Duplicate file name when invoking a web service
Actually the filename and display name can match, but they have to match in
*case* too.
this is for two reasons:
1. An enhancement to web services in CFMX 7.
2. A problem with the web service code generation that doesn't take Windows
filesystems in to account.
In CFMX 7 the display name is used as the name of the "service" element in
the WSDL - an enhancement. Remember that XML is case sensitive. When the
Java code is generated to use the service, if the filename and service name
differ only in case, on Windows, a file is generated *twice* with the same
name, different case. This means that one file gets overwritten. Bad things
happen - it doesn't work.
The code that generates the Java code doesn't know that filenames are case
insensitve. So when it looks for duplicates, it doesn't find any. It
probably should. This is not a problem on Unix.
Hope that helps.
--
Tom Jordahl
Macromedia
Tom Jordahl Guest
-
Error invoking web service:ServiceStubDiscoveryException
I'm trying to use CFINVOKE to invoke a web service with this code: <cfset serviceURL =... -
Error Invoking Web Service
Hopefully someone has seen this and has an answer. I am trying to invoke a web service which takes a string of XML as a parameter. I have attached... -
dynamically invoking web service methods, how?
Is the only known way to do this is by using... -
Exception when invoking web service from asp .net form
When creating the instance to invoke a web service method, I always get the exception shown at the bottom. The .dll file changes randomly, although... -
404 error invoking web service
Hi, I'm having a problem with a web service that I wrote. I first wrote & tested the web service on my local (XP) machine. I used visual studio to...



Reply With Quote

