View previous topic :: View next topic |
Author |
Message |
deepeshk79 Beginner
Joined: 20 Jun 2003 Posts: 112 Topics: 48 Location: Bangalore
|
Posted: Thu May 15, 2008 4:55 am Post subject: Convert REXX to Web Service WSDL |
|
|
Hi,
Is there any way to convert my REXX macros or REXX programs to Web Services ? Can we generate a WSDL out of REXX through any tools like RAD etc...
Appeciate if someone can share their experience on this or give me some link or PDF having these details.
Thanks,
Deepesh |
|
Back to top |
|
|
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Thu May 15, 2008 9:35 am Post subject: |
|
|
I doubt that any such tool exists because there is no 'standard' parameter passing syntax. On input, the parameters are parsed by the individual rexx execs and the syntax of the parameters are free form. There is no specific output format either, and no specific output mechanism. Also, there is no standard way of using services like TSO in a Web Service call (though you can find ways to start TSO and run the exec under all within the web server or app server)
You could write a wrapper yourself to invoke the Rexx exec and reformat output to the appropriate XML (assuming you have a means of invoking this wrapper, which is itself not trivial, especially if your execs require TSO), but I don't think a tool to do this automatically would be possible without requiring a strict specification of how the Rexx exec must be written. _________________ New members are encouraged to read the How To Ask Questions The Smart Way FAQ at http://www.catb.org/~esr/faqs/smart-questions.html. |
|
Back to top |
|
|
Cogito-Ergo-Sum Advanced
Joined: 15 Dec 2002 Posts: 637 Topics: 43 Location: Bengaluru, INDIA
|
Posted: Thu Jun 05, 2008 11:37 am Post subject: |
|
|
If you hosted your REXX EXECs as CGI scripts on a LAMP stack (that should be easy with USS), perhaps, it can be done. Of course, the P in LAMP then becomes R. _________________ ALL opinions are welcome.
Debugging tip:
When you have eliminated all which is impossible, then whatever remains, however improbable, must be the truth.
-- Sherlock Holmes. |
|
Back to top |
|
|
|
|