Hi, i'm Edgar Medrano, i'm working on a similar project
but to generate PORGRESS 4GL code
(http://sourceforge.net/projects/o4glws), and i was
thinking on build something similar to your work, that
is great, but can be improved if you isolate common
functions in a file maybe named "wsdl2js.js" and only
generate a javascript file maybe named "toupper.js",
then you can do:
<script language="JavaScript" src="wsdl2js.js"></script>
<script language="JavaScript" src="toupper.js"></script>
<script language="JavaScript"><!--
ToUpper_URL =
"http://localhost/WebService/Service1.asmx";
//-->
</script>
In my own implementation i was thinking to one
javascript object per webservice.
And you can build shorter code if you use some
functions to build common parts of the SOAP message,
and to support "Faults".
Logged In: YES
user_id=1412811
Thank you for your excellent suggestion. I will research
and abstract the common parts and put it in a file.