I'm trying to figure out creating a client and have code which creates a new Service object as follows:
Service s = new Service(); And then creates a call and so forth. This all works okay, but it is very slow -- the Service constructor seems to take as much as 10 seconds to complete. Is there a better way to establish the service so that the time can be reduced? Steve Carton
