Matthew J. Graham wrote:
- how do I return the WSDL for the web service using the standard "http://service/endpoint?wsdl" syntax?
- is the service endpoint just what is specified in the path-info in the page-flow.xml?
First note that what OPS provides to implement a Web service is very low level. Basically, you access the XML document sent by the client with the Request generator, create the XML document you want to reply with, and send it back with the XML Serializer.
For an example, see examples/yim/page-flow.xml (where the service and WSDL are declared), and yim-webservice.xpl (implementation of the service). The WSDL is entirely hand-written.
If you want the same path to serve both the WSDL and implement the service, map that path (/endpoint) to an XPL, and in the XPL based on the parameters (that you get with the request generator) either execute the service or send the WSDL file.
Alex
------------------------------------------------------- This SF.Net email is sponsored by: InterSystems CACHE FREE OODBMS DOWNLOAD - A multidimensional database that combines robust object and relational technologies, making it a perfect match for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8 _______________________________________________ orbeon-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/orbeon-user
