UNSUBSCRIBE ME

2001-08-04 Thread Sourav Datta
_ For Rs. 2,000,000 worth of Aptech scholarships click below http://clients.rediff.com/clients/aptechsch/index.htm

RE: WSDL & UDDI Tutorials?

2001-08-04 Thread Anne Thomas Manes
Siegfried, WSDL and UDDI are natural complements to SOAP (of any flavor). You might look at the UDDI Best Practices document on WSDL: http://www.uddi.org/bestpractices.html. You might also take a look at any number of development tools that support SOAP/WSDL/UDDI. Check out IBM, Idoox, The Mi

Re: strange problem

2001-08-04 Thread William Brogden
Vikram Chiruvolu wrote: > > With SOAP 2.2, Xerces 1.3.1, Tomcat 3.23, Apache 1.3, > and NTS 4 ... I've worked through all the issues & > have my server responding properly from the browser, > that it only reponds to POST requests. Now when I try > to test my client install on the server itsel

Re: strange problem

2001-08-04 Thread Gordon Easton
It might be that you are sending the request to the wrong place. Try sending your "list" request to: http://localhost:8080/soap/servlet/rpcrouter --- Vikram Chiruvolu <[EMAIL PROTECTED]> wrote: > With SOAP 2.2, Xerces 1.3.1, Tomcat 3.23, Apache 1.3, > and NTS 4 ... I've worked through all the

ant task to deploy Apache SOAP service

2001-08-04 Thread HariNam Singh
Hi, did anyone write an ant task to deploy SOAP service to Apache SOAP server. Some ant task, where I can speciry the RPC Router URL and descriptor file would be nice. Then I could deploy the SOAP services as part of the build. It's pretty simple to write. Though, it seems also so basic that it

RE: Working with Xerces

2001-08-04 Thread Gus Delgado
Title: Working with Xerces Document doc = parser.getDocument();   Element  e  = null;NodeList nl = doc.getElementsByTagName("tagName");e = (Element) nl.item(0);   e.normalize();NodeList nl = e.getChildNodes();Node textNode = nl.item(0);String value = textNode.getNodeValue() ;   -