try dumping: ws.getResponseHeader() and ws.getResponseHeaders() and see what happens :)
On 5/28/05, danilocelic <[EMAIL PROTECTED]> wrote:
danilocelic wrote:
> After readign through I saw the GetSOAPRequestHeader as well, which
> seems link it will allow me to grab the soap requset header, but I think
> I can see a problem I might run into. It seems that this function, as
> well as the GetSOAPResponseHeader function presume that you know in
> advance the namespace and the name of the headers before they are made
> from an arbitrary client/service. Is that a correct reading of the
> operation of these functions?
A bit more research and a tip from Ray Camden, who suggested looking at
getHTTPRequestData. That function helps on the web service side of
things, and on the client side of things, at least within CF, I found
that if you create a web service object and dump, like so:
<cfscript>
ws = CreateObject("webservice",
" http://localhost/dummy.cfc?wsdl");
</cfscript>
<cfdump var="#ws#">
I found
getResponseHeader (returns org.apache.axis.message.SOAPHeaderElement )
getResponseHeaders (returns Lorg.apache.axis.message.SOAPHeaderElement;)
Unfortunately, searching livedocs for either of them returns no
results, so I'll have to live with that for now.
Thanks for looking.
Danilo
----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email to [email protected] with the words 'unsubscribe cfcdev' as the subject of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported by CFXHosting (www.cfxhosting.com).
CFCDev is supported by New Atlanta, makers of BlueDragon
http://www.newatlanta.com/products/bluedragon/index.cfm
An archive of the CFCDev list is available at www.mail-archive.com/[email protected]
--
Who wants a Gmail invite? I have 50 of them
http://nectaar.i989.net/ - Coming Soon ----------------------------------------------------------
You are subscribed to cfcdev. To unsubscribe, send an email to [email protected] with the words 'unsubscribe cfcdev' as the subject of the email.
CFCDev is run by CFCZone (www.cfczone.org) and supported by CFXHosting (www.cfxhosting.com).
CFCDev is supported by New Atlanta, makers of BlueDragon
http://www.newatlanta.com/products/bluedragon/index.cfm
An archive of the CFCDev list is available at www.mail-archive.com/[email protected]
