You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by babloosony <ba...@gmail.com> on 2005/03/06 13:04:49 UTC

How does a soap resp. msg. look like for this ?

Hi All,

I have below classes :

Parent.java
----------------
public class Parent
{
     public String p1="INDIA";
}


Child.java
----------------
public class Child
{
     public String c1="JAPAN";
}



POJO.java
----------------
public class POJO
{
     public Child callback()
     {
             return new Child();
     }
}


Now my question is if I expose POJO.java as document/wrapped web
service using AXIS 1.2 RC2 and call the method callback() then I want
to read the state of Child.java(i.e data of its member variable c1) as
well state of Parent.java(i.e. data of its member variable p1) on the
client side. In such scenarios how does the response soap message look
like in AXIS's TCPMonitor ?


Thanks & Regards,
Kumar.