Sorry. There is a typo error in my original posting. It is originally 
public class Child extends Parent


On Mon, 7 Mar 2005 12:45:02 -0800, Dino Chiesa <[EMAIL PROTECTED]> wrote:
> How is Parent.java related to Child.java?
> 
> 
> -----Original Message-----
> From: babloosony [mailto:[EMAIL PROTECTED]
> Sent: Sunday, March 06, 2005 7:05 AM
> To: [email protected]; [email protected]
> Subject: 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.
>

Reply via email to