0 Replies Latest reply on Jul 25, 2008 1:19 PM by btallon

    Proxy Object Caching

    btallon

      In the following code creating proxy object takes about 500 milliseconds.

      Is there any other mechanism to resuse this proxy object using pooling? or can we use this proxy as singleton?

      String wsdlLocation = System.getProperty("wsdl_url"); //
      URL url = new URL(wsdlLocation);
      String serviceName = "PipCalculatorService";
      QName qname = new QName(namespaceURI, serviceName);
      Service remote = connectService(url, qname);
      PipCalculator proxy = (PipCalculator) remote.getPort(PipCalculator.class);