Do I have to use the wsimport tool?

Hi,
I make a Stateless Session Bean into a WebService and deploy. I check the WSDL everything looking good.
Here it is:
@Stateless
@WebService
public class TravelAgentWSBean {
     @WebMethod
     public String makeReservation(int cruiseId, int cabinId, int customerId, double price) {
          System.out.println(">> makeReservation()");
          return "reserved";
I wish to write a very simple client to invoke this service. Do I have to use wsimport?
And if so why?
Thanks.

basically answered on your other post here .

Similar Messages

Maybe you are looking for