Results 1 to 2 of 2

Thread: What is SOAP Monitor from jboss?

  1. #1
    Join Date
    Jul 2009
    Posts
    1,179

    What is SOAP Monitor from jboss?

    Hi,

    I dont know whether I am in right section or not. So please forgive me for this.
    I heard this term "SOAP Monitor form JBOSS" but I am really curious to know about it.
    I know that Jboss must be some company or like that but what is SOAP Monitor.
    Please shed some light on this noob.

    Thanks in advance.

  2. #2
    Join Date
    May 2008
    Posts
    22

    Re: What is SOAP Monitor from jboss?

    Soap Monitor
    Membrane SOAP Monitor is a free Web Services development tool for inspecting and manipulating SOAP messages. It acts as a SOAP proxy between a consumer and a producer. SOAP messages can be intercepted, viewed and modified.

    SOAP Monitor functions very similarly like a Tcp Monitor. Whereas Tcp Monitor is used to intercept Http Request and Http Response messages, SOAP Monitor is used to track the SOAP Request and SOAP Response Messages. SOAP Monitor is implemented as a Handler and by default it is not enabled for all the Web Services. If we want to enable SOAP Monitor Handler for both Request and Response SOAP messages, then add the following entry in the deployment descriptor file for the Web Service.

    Code:
    <deployment xmlns="http://xml.apache.org/axis/wsdd/"
        xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
    
        <service name="SomeService" provider="java:RPC">
    
        <requestFlow>
            <handler type="soapmonitor"/>
        </requestFlow>
    
        <responseFlow>
            <handler type="soapmonitor"/>
        </responseFlow>
    
        <parameter name="className" value="SomeService"/>
            <parameter name="allowedMethods" value="*"/>
        </service>
    
    </deployment>
    Now, whenever, you request for a Web Service, the Soap Monitor will track the Request and Response from the Web Service and will display the Xml Request and Xml Response content in the UI.

    Details:

Similar Threads

  1. How to deploy Java Web Start Applications on JBoss
    By CodGuru in forum Software Development
    Replies: 2
    Last Post: 28-07-2010, 11:22 PM
  2. JBoss jmx-console and web-console for JBoss 4.0
    By Quattro in forum Networking & Security
    Replies: 4
    Last Post: 10-03-2010, 06:19 PM
  3. I need jBoss jbpm download source.
    By fldrice in forum Software Development
    Replies: 2
    Last Post: 29-07-2009, 11:07 PM
  4. Replies: 9
    Last Post: 10-04-2009, 01:51 AM
  5. PHP and SOAP
    By Jkbaseball in forum Software Development
    Replies: 2
    Last Post: 23-09-2008, 02:03 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,751,048,446.92799 seconds with 16 queries