Tony
No use....i tried it already.....
i am using tomcat5.0 on windows 2000, Axis1.1 and IE5.0
any how thanks
Tony Blair <[EMAIL PROTECTED]> wrote:
Tony Blair <[EMAIL PROTECTED]> wrote:
Well let's try all the steps and see where that takes us. This is what you need to do:-Undeploy the example3 using the undploy.wsdd.-Deploy the example3 using the deploy.wsdd that has the requestFlow and responseFlow.-State the SoapMonitorService-Run the example.If no traffic shows, perhaps there is an issue with your environment.Tony.
bethana kumar <[EMAIL PROTECTED]> wrote:Hikeyboard problem :::)).... No i did not see any soap traffic ..I am just executing thesample example i.e axis/samples/userguide/example3 which is bundled with axis.
Tony Blair <[EMAIL PROTECTED]> wrote:Hi there,Are you saying that soap traffic only shows when there is a delay? I don't have that problem. Of course my service takes some times to process the request but there is no major delay. Your wsdd looks good.Tony.
bethana kumar <[EMAIL PROTECTED]> wrote:HiI have added request flow and response flow tags . This is my deploy.wsdd......i hope we can see soap traffic only when there is delay in requet and response ???<deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"><service name="MyService" provider="java:RPC">
<requestFlow>
<handler type="soapmonitor"/>
</requestFlow>
<responseFlow>
<handler type="soapmonitor"/>
</responseFlow>
<parameter name="className" value="samples.userguide.example3.MyService"/>
<parameter name="allowedMethods" value="*"/>
</service></deployment>
Tony Blair <[EMAIL PROTECTED]> wrote:Hi there,
Did you added the requestFlow and responseFlow tag in your deploy.wsdd ? Once you do that you should start seeing the soap traffic.Tony.
bethana kumar <[EMAIL PROTECTED]> wrote:I have copied the deploy-monitor.wsdd which is mentioned in the site ,then i have deployed it with AdminClient.Now i am not getting any errors but i did not see any soap traffic while executing http://localhost:8080/axis/services/MyService?wsdlwhats the probelm?I did not see my service name in SOAPMonitorApplet.I am using IE5.0 on windows 2000.
Tony Blair <[EMAIL PROTECTED]> wrote:Hi there,Did you deploy the soap monitor service.Go to http://www.sosnoski.com/presents/java-xml/axis/axis-monitor.html and follow the instructions. I was getting the same error but now the Soap monitor is working fine.Tony.
bethana kumar <[EMAIL PROTECTED]> wrote:HiI am getting following error when i have addedd SOAPMonitor Service for my service i.e axis/samples/userguide/example3.
Exception - org.apache.axis.ConfigurationException: Can't find handler name:'null' type:'soapmonitor' in the registry
org.apache.axis.ConfigurationException: Can't find handler name:'null' type:'soapmonitor' in the registry
at org.apache.axis.deployment.wsdd.WSDDChain.makeNewInstance(WSDDChain.java:168)
at org.apache.axis.deployment.wsdd.WSDDDeployableItem.getNewInstance(WSDDDeployableItem.java:310)
at org.apache.axis.deployment.wsdd.WSDDDeployableItem.getInstance(WSDDDeployableItem.java:296)
at org.apache.axis.deployment.wsdd.WSDDService.makeNewInstance(WSDDService.java:439)
at org.apache.axis.deployment.wsdd.WSDDDeployment.getDeployedServices(WSDDDeployment.java:559)
at org.apache.axis.configuration.FileProvider.getDeployedServices(FileProvider.java:321)
at org.apache.axis.transport.http.AxisServlet.reportAvailableServices(AxisServlet.java:681)
at org.apache.axis.transport.http.AxisServlet.doGet(AxisServlet.java:262)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:339)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:284)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:204)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:564)
at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:245)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:199)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:564)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:195)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:164)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:149)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:564)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:156)
at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:151)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:564)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:972)
at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:211)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:805)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:696)
at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:605)
at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:677)
at java.lang.Thread.run(Thread.java:536)
This is my deploy.wsdd
-----------------------<deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"><service name="MyService" provider="java:RPC">
<requestFlow>
<handler type="soapmonitor"/>
</requestFlow>
<responseFlow>
<handler type="soapmonitor"/>
</responseFlow>
<parameter name="className" value="samples.userguide.example3.MyService"/>
<parameter name="allowedMethods" value="*"/>
</service></deployment>
I can see the this service if i dont use request and response flows in deploy.wsdd
Oleg Lebedev <[EMAIL PROTECTED]> wrote:Tony,take a look at this link: http://www.sosnoski.com/presents/java-xml/axis/axis-monitor.htmlThe 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
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online