Code Comments
Programming Forum and web based access to our favorite programming groups.Tried several web services in my Cobol (microfocus) program using an example URL link as below; http://myxml.thisissample/serverside.WSDL and it works all the time. The server-side (SOAP) WSDL file will do the thing for me. But just lately a friend of mine ask if I could do the same for a .NET framework server that has the below URL; http://myxml.thisissample/serverside.ASMX Considering I passed the "required" function with fields or parameters in my Cobol program, and INVOKE the url with "asmx" extension, will it produce the same output as my wsdl file?
Post Follow-up to this messageJust to rephrase my query above, it may not be clear. I usually invoke SOAP (Web service) using WSDL file extension, now a friend of mine says that they have a .NET platform server that uses ASMX file extension instead. Do not know exactly how ASMX works, search the internet about it and it tells me it is the same technology as WSDL SOAP but the problem is how to access ASMX. Would it be the same as the WSDL file extension? And another thing, what is the maximum data (in length/bytes) that can be pass to a WSDL? Reference topic here: Web Service (Retouch)
Post Follow-up to this message"Rene_Surop" <infodynamics_ph@yahoo.com> wrote: > Just to rephrase my query above, it may not be clear. > > I usually invoke SOAP (Web service) using WSDL file extension, now a > friend of mine says that they have a .NET platform server that uses > ASMX file extension instead. > > Do not know exactly how ASMX works, search the internet about it and > it tells me it is the same technology as WSDL SOAP but the problem is > how to access ASMX. Would it be the same as the WSDL file extension? > > And another thing, what is the maximum data (in length/bytes) that can > be pass to a WSDL? > > Reference topic here: Web Service (Retouch) I'm not a .NET guru, but I have done some web service applications with Visual Studio 2005. ASMX is simply the web service extension for ASP.NET web service pages, as ASPX is the extension for ASP.NET web pages. You still use WSDL, SOAP and XML in the same way. Other than the "ASPX" in the web service URL, I don't think a web service client would know the difference. Hope this helps. -- Judson McClendon judmc@sunvaley0.com (remove zero) Sun Valley Systems http://sunvaley.com "For God so loved the world that He gave His only begotten Son, that whoever believes in Him should not perish but have everlasting life."
Post Follow-up to this messageThanks Judson. Im going to try executing my Cobol code anyhow by invoking an "ASMX" file extension instead of the usual WSDL url file that I'm using. I wont change Cobol codes for the meantime.
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.