Re: return null Object

2004-10-21 Thread t-online
11:56 Betreff: Re: return null Object It doesn't work. This is the source: public class SoapUser { public SimpleUser findNameByPK(int id){ SimpleUser simpleUser = new SimpleUser(); UserService userService = new UserService(); WeseUser user = userSer

Re: return null Object

2004-10-21 Thread Marco Rossi
It doesn't work. This is the source: public class SoapUser { public SimpleUser findNameByPK(int id){ SimpleUser simpleUser = new SimpleUser(); UserService userService = new UserService(); WeseUser user = userService.getByPrimaryKey(1); simpleUse

Re: return null Object

2004-10-21 Thread karim
Marco Rossi wrote: I try to create a ws with axis and Tomcat 4. I want that my ws return a simple object, something like this: Class SimpleObject{ private String name; public String getName(){ return name; } public void setName(String name){ this.name = name;