Whatever message this page gives is out now! Go check it out!
<cfscript>
ws = CreateObject("webservice", "http://localhost:8500/soapexamples/tester.cfc?WSDL");
addSOAPRequestHeader(ws, "http://mynamespace/", "username", "randy");
ret = ws.echo_me("value");
</cfscript>
<cfset soapreq = GetSOAPRequest(ws)>
<h2>SOAP Request</h2>
<cfdump var="#soapreq#">
<cfset soapresp = GetSOAPResponse(ws)>
<h2>SOAP Response</h2>
<cfdump var="#soapresp#">
...<cfcomponent displayName="testerdebug" hint="Test for underscores">
<cffunction access="remote" name="echo_me" output="false" returntype="string"
displayname="Echo Test" hint="Header test">
<cfargument name="in_here" required="true" type="string">
<cfset var soapreq = "">
<cfif IsSOAPRequest()>
<cfset soapreq = GetSOAPRequest()>
<cflog text="#soapreq#"
log="APPLICATION"
type="Information">
...java -cp cf_root/cfusion/lib/axis.jar org.apache.axis.utils.tcpmon [listening_port] [target_host] [target_port] |
Field | Description |
Listen Port# | Enter a local port number, such as 8123, to monitor for incoming connections. Instead of requesting the usual port on which your server runs, you request this port. TCPMonitor intercepts the request and forwards it to the Target Port. |
Listener | Select Listener to use TCPMonitor as a sniffer service in JRun. |
Proxy | Select Proxy to enable proxy support for TCPMonitor. |
Target Hostname | Enter the target host to which incoming connections are forwarded.For example, if you are monitoring a service running on a local server, the hostname is localhost. |
Target Port# | Enter the port number on the target machine to which TCPMonitor connects. For example, if you are monitoring a service running on your local ColdFusion server in the server configuration, the default port number is 8500. |
HTTP Proxy Support | Select this check box only to configure proxy support for TCPMonitor. |
java -cp cf_root/cfusion/lib/axis.jar org.apache.axis.utils.tcpmon [listening_port] [target_host] [target_port] |
http://localhost:8123/ |