owenb 2003/03/06 08:54:20
Modified: java/src/org/apache/wsif/util WSIFUtils.java
Log:
Use new constructor for AuthenticatingProxyWSDLLocatorImpl
Revision Changes Path
1.34 +1 -3 xml-axis-wsif/java/src/org/apache/wsif/util/WSIFUtils.java
Index: WSIFUtils.java
===================================================================
RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/util/WSIFUtils.java,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- WSIFUtils.java 5 Mar 2003 16:56:16 -0000 1.33
+++ WSIFUtils.java 6 Mar 2003 16:54:20 -0000 1.34
@@ -488,9 +488,7 @@
wsdlReader.setFeature(Constants.FEATURE_VERBOSE, false);
WSDLLocator lo = null;
try {
- String proxyUsername = pa.getUserName();
- String proxyPassword = new String(pa.getPassword());
- lo = new AuthenticatingProxyWSDLLocatorImpl(wsdlLoc, proxyUsername,
proxyPassword);
+ lo = new AuthenticatingProxyWSDLLocatorImpl(wsdlLoc, pa);
Definition def = wsdlReader.readWSDL(lo);
Trc.exitExpandWsdl(def);
return def;