Hi,
You could try WSDL4J available at http://oss.software.ibm.com/developerworks/projects/wsdl4j Nirmal. Ulf Reiman <[EMAIL PROTECTED] To: [EMAIL PROTECTED] icsson.se> cc: Sent by: Subject: WSDL [EMAIL PROTECTED] on.se 10/24/2001 03:09 AM Please respond to soap-user Hello Is someone now a java API when a can take out some info from a wsdl file? e.g. from this file take out http://services.xmethods.net:80/perl/soaplite.cgi. If....can you send me some example to do that. or tell where a can find some Regards Ulf Reiman <?xml version = "1.0"?> <definitions name = "PingService" targetNamespace = "http://www.xmethods.net/sd/PingService.wsdl" xmlns:tns = "http://www.xmetho ds.net/sd/PingService.wsdl" xmlns:xsd = "http://www.w3.org/1999/XMLSchema" xmlns:soap = "http://schemas.xmlsoap.org/wsdl/soap/" xmlns = "http://schemas.xmlsoap.org/wsdl/"> <message name = "pingHostRequest"> <part name = "hostname" type = "xsd:string"/> </message> <message name = "pingHostResponse"> <part name = "return" type = "xsd:int"/> </message> <portType name = "PingPortType"> <operation name = "pingHost"> <input message = "tns:pingHostRequest" name = "pingHost"/> <output message = "tns:pingHostResponse" name = "pingHostResponse"/> </operation> </portType> <binding name = "PingBinding" type = "tns:PingPortType"> <soap:binding style = "rpc" transport = "http://schemas.xmlsoap.org/soap/http"/> <operation name = "pingHost"> <soap:operation soapAction = "urn:xmethodsSoapPing#pingHost"/> <input> <soap:body use = "encoded" namespace = "urn:xmethodsSoapPing" encodingStyle = "http://schemas.xm lsoap.org/soap/encoding/"/> </input> <output> <soap:body use = "encoded" namespace = "urn:xmethodsSoapPing" encodingStyle = "http://schemas.xm lsoap.org/soap/encoding/"/> </output> </operation> </binding> <service name = "PingService"> <documentation>Performs a network "PING" of input host</documentation> <port name = "PingPort" binding = "tns:PingBinding"> <soap:address location = "http://services.xmethods.net:80/perl/soaplite.cgi"/> </port> </service> </definitions>