cancel
Showing results for 
Search instead for 
Did you mean: 

Java Web services - methods

Former Member
0 Kudos

We are returning VO's(Value Objects or Beans) from the EJB Methods.If there are any static methods in Value Objects available at EJB side along with setter and getter methods only setters and getters are visible in Deployable proxy but not the static methods

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

Hi,

Static fields are not utilized for ws communication (as according to JAX-RPC and JAX-WS specs). In general what is utized is:

1. public instance fields

2. Java beans (pair of get and set instance methods

~Dimitar