Hi,

I'm trying to create a simple webservice (for which the WSDL should be
created automatically). I use this code...

@Remote(IService.class)
@Stateless
@WebService
public class Service {
 public void doSomething(A a) {
  // do Something with a
 }      
}

My problem is, that the generated wsdl doesn't reflect the class A
correctly. A is like...

public class A {
private List<B> b;
private List<C> c;
// etc. (including getters)
}

...but in the wsdl, A is only modelled as a simple object without any
fields. Does anyone know what I have to change here to allow geronimo
automatically create a correct wsdl?

Bye,

Flo
-- 
OPTITOOL GmbH

Bruderwöhrdstr. 15b
D - 93055 Regensburg

T: +49-941-59578-13

eMail: [email protected]
URL: www.optitool.de

Sitz der Gesellschaft: Regensburg
Registergericht Regensburg: HR B 9544

Reply via email to