Hi, I am trying to invoke the Babel Fish translation service at:
http://www.xmethods.net/sd/2001/BabelFishService.wsdl This is an RPC style, Soap/HTTP binding service. My code looks something like this: WSIFServiceFactory factory = WSIFServiceFactory.newInstance(); WSIFService dpf = factory.getService( "http://www.xmethods.net/sd/2001/BabelFishService.wsdl", "http://www.xmethods.net/sd/BabelFishService.wsdl", "BabelFishService", "http://www.xmethods.net/sd/BabelFishService.wsdl", "BabelFishService"); WSIFPort port = dpf.getPort(); The getPort call failed with this error message: 68422 [Thread-44] WARN wsif - WSIF0003W: An error occurred finding pluggable providers: <null> The wsif.jar comes with the Apache Soap provider, right? Why am I getting this error? Do I need to do anything for the META-INF\services\org.apache.wsif.spi.WSIFProvider file contained in the wsif.jar? It seems like the system can't find it. I appreciate your help. Tony