Hi All,
How do we automate the process of writing a web service axis client
program that uses stub based approach where a web service method
accepts and returns custom types. Are there any plugin for eclipse or
frameworks that does that. I am using doc/lit style web service but
not rpc/enc
Say below is method signature and corresponding class structures of
inputs and output parameters :
public O getMe(I i);
where
public class O {
public O1;
public 02;
}
public class O1{
public O11;
public O12;
}
public class I {
public I1;
public I2;
}
public class I1{
public I11;
public I12;
}
Thanks & Regards,
Kumar.