viniciuscarvalho
Jan 26th, 2006, 10:58 AM
Hello there! I have this following Bean:
public class User{
private List<Car> cars;
...
}
I need a little help on how to handle this on the client side using spring? From the Spring reference it says we need to subclass JaxRpcPortProxyFactoryBean.
My question is simple :D So for my subclass should I register all complex beans involved? Is there an special way of doing this? or just register one by one?
Another thing, it's an Axis issue but maybe you folks could help me out. Axis is registring my list as an ArrayOfAny Type, this is generating errors because my deploy.wsdd does not have a serializer for my Car bean.
Regards
public class User{
private List<Car> cars;
...
}
I need a little help on how to handle this on the client side using spring? From the Spring reference it says we need to subclass JaxRpcPortProxyFactoryBean.
My question is simple :D So for my subclass should I register all complex beans involved? Is there an special way of doing this? or just register one by one?
Another thing, it's an Axis issue but maybe you folks could help me out. Axis is registring my list as an ArrayOfAny Type, this is generating errors because my deploy.wsdd does not have a serializer for my Car bean.
Regards