Link to home
Start Free TrialLog in
Avatar of ank9
ank9

asked on

Return value from Jax-WS webservice

We are creating a Jax-ws webservice from which we need to return a value. I have the following annotated source in which I need to embed the business logic


public void getResumeDetails(
                  @javax.jws.WebParam(mode = javax.jws.WebParam.Mode.IN, name = "resumeId") String resumeId,
                  @javax.jws.WebParam(mode = javax.jws.WebParam.Mode.OUT, name = "firstName") Holder<String> holder0,
                  @javax.jws.WebParam(mode = javax.jws.WebParam.Mode.OUT, name = "lastName") Holder<String> holder1,
                  @javax.jws.WebParam(mode = javax.jws.WebParam.Mode.OUT, name = "address") Holder<AddressType> holder2) {
            System.out.println("Resume ID passed as paramter is ---"+resumeId);
            
            
                  
      }


can someone please let me know how do I return a value from a Jax-ws service. The return type is void but it expects values to be returned from the service.

Thank you
ASKER CERTIFIED SOLUTION
Avatar of mukundha_expert
mukundha_expert

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ank9
ank9

ASKER

Thank you.
Is there any tutorial on Jax-WS which gives information on this?
 
 
refer to,
https://jax-ws.dev.java.net/jax-ws-ea3/docs/annotations.html#2.4%20javax.jws.WebParam%7Coutline

the conformance is available in the jaxws spec which you can find in the downloads section