Title: Message
Sorry, it was a typo. I did add the <requestFlow> to deploy.wsdd
It's actually very easy with an ANT replaceregexp task. You can put the following target in your build.xml and call it right after you wsdl2java generates deploy.wsdd.
 
Hope this helps.

<!-- Edit generated deploy.wsdd file to force SOAP requests -->
<!-- to go through SOAP Monitor. -->
<target name="update_wsdd" depends="generate-java">
<replaceregexp
file="${wsdl.src.dir}/interfaces/ws/deploy.wsdd"
match='&lt;service (.*)&gt;(.*)'
replace='&lt;service \1&gt; \
&lt;requestFlow&gt; \
&lt;handler type="soapmonitor"/&gt; \
&lt;/requestFlow&gt; \
&lt;responseFlow&gt; \
&lt;handler type="soapmonitor"/&gt; \
&lt;/responseFlow&gt; \
\2'
byline="true"/>
</target>

 

-----Original Message-----
From: Tony Blair [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 10, 2004 8:16 PM
To: [EMAIL PROTECTED]
Subject: Re: SoapMonitorApplet

Thanks Oleg that worked like a charm. The only thing I did different is that I pasted the <requestFlow> xml to my deploy.wsdd as oppose to web.xml.
 
Thanks,
Tony.

Oleg Lebedev <[EMAIL PROTECTED]> wrote:
Tony,
 
The instructions I found there worked for me.
Make sure to add
<requestFlow>
      <handler type="soapmonitor"/>
    </requestFlow>
    <responseFlow>
      <handler type="soapmonitor"/>
    </responseFlow>

to your web.xml.
 
Cheers.
 
Oleg
 
*************************************
This e-mail may contain privileged or confidential material intended for the named recipient only.
If you are not the named recipient, delete this message and all attachments.
Unauthorized reviewing, copying, printing, disclosing, or otherwise using information in this e-mail is prohibited.
We reserve the right to monitor e-mail sent through our network.
*************************************


Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online
 
*************************************
This e-mail may contain privileged or confidential material intended for the named recipient only.
If you are not the named recipient, delete this message and all attachments.
Unauthorized reviewing, copying, printing, disclosing, or otherwise using information in this e-mail is prohibited.
We reserve the right to monitor e-mail sent through our network.
*************************************

Reply via email to