|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
UPS LandedCost webservice and ASP.NET 1.1Hello all,
I am supposed to develop an e-commerce application integrated with UPS Courier services to calculate the cost of shipment of a products. I have UPS account number also have register a user to download the DevTools, but thos development tools are in VB6.0 and Java, I do not understand that how do I post my request to UPS and get response through ASP.NET 1.1. It has a webservice named LandedCost.wsdl. I think it is a java based webservice I can not add it into my web-references. Can any baody help. Please it is urgent. Thanks in Advance Ather Ali Shaikh The wsdl file is a descriptor for the webservice. If you run:
wsdl /out:myProxyClass.cs http://URLToWSDL/LandedCost.wsdl This will generate a proxy class for you to work with the webservice. Simply take the .cs file and place it in your project and interact with it. Regards Ray Ather Ali Shaikh wrote: Show quoteHide quote > Hello all, > > I am supposed to develop an e-commerce application integrated with UPS > Courier services to calculate the cost of shipment of a products. I have UPS > account number also have register a user to download the DevTools, but thos > development tools are in VB6.0 and Java, I do not understand that how do I > post my request to UPS and get response through ASP.NET 1.1. It has a > webservice named LandedCost.wsdl. I think it is a java based webservice I > can not add it into my web-references. > Can any baody help. Please it is urgent. > > Thanks in Advance > Ather Ali Shaikh > > I have done it, but the problem is it generates all the methos public and I
do not know what method called and when. Regards, Ather Ali Shaikh Show quoteHide quote "Ray Booysen" <raybooy***@rjb.za.net> wrote in message news:%23SdzI0x0GHA.4228@TK2MSFTNGP06.phx.gbl... > The wsdl file is a descriptor for the webservice. If you run: > > wsdl /out:myProxyClass.cs http://URLToWSDL/LandedCost.wsdl > > This will generate a proxy class for you to work with the webservice. > Simply take the .cs file and place it in your project and interact with > it. > > Regards > Ray > > Ather Ali Shaikh wrote: >> Hello all, >> >> I am supposed to develop an e-commerce application integrated with UPS >> Courier services to calculate the cost of shipment of a products. I have >> UPS account number also have register a user to download the DevTools, >> but thos development tools are in VB6.0 and Java, I do not understand >> that how do I post my request to UPS and get response through ASP.NET >> 1.1. It has a webservice named LandedCost.wsdl. I think it is a java >> based webservice I can not add it into my web-references. >> Can any baody help. Please it is urgent. >> >> Thanks in Advance >> Ather Ali Shaikh >> What is has done is create an interface for you to interact with the
webservice. The public methods are the methods that the webservice exposes. So you can call these methods in your code to interact with the webservice. Ather Ali Shaikh wrote: Show quoteHide quote > I have done it, but the problem is it generates all the methos public and I > do not know what method called and when. > > Regards, > Ather Ali Shaikh > > "Ray Booysen" <raybooy***@rjb.za.net> wrote in message > news:%23SdzI0x0GHA.4228@TK2MSFTNGP06.phx.gbl... >> The wsdl file is a descriptor for the webservice. If you run: >> >> wsdl /out:myProxyClass.cs http://URLToWSDL/LandedCost.wsdl >> >> This will generate a proxy class for you to work with the webservice. >> Simply take the .cs file and place it in your project and interact with >> it. >> >> Regards >> Ray >> >> Ather Ali Shaikh wrote: >>> Hello all, >>> >>> I am supposed to develop an e-commerce application integrated with UPS >>> Courier services to calculate the cost of shipment of a products. I have >>> UPS account number also have register a user to download the DevTools, >>> but thos development tools are in VB6.0 and Java, I do not understand >>> that how do I post my request to UPS and get response through ASP.NET >>> 1.1. It has a webservice named LandedCost.wsdl. I think it is a java >>> based webservice I can not add it into my web-references. >>> Can any baody help. Please it is urgent. >>> >>> Thanks in Advance >>> Ather Ali Shaikh >>> >
Other interesting topics
[NEWBIE] Call an event from a javascript
VS 2005 .sln / web Solution Problem Operating System and H/W for new Dev Workstation Adding a System.Web.UI.WebControls.Panel to a DataGrid Cell Upgrading ASP.NET on my web server to the latest version SharpForge - Open source C#/SourceForge implementation How to achieve this DropDownList from database and extra field gridview sorting help- Whine about VS gridline color |
|||||||||||||||||||||||