
Hi DAX,
Can anyone tell me how to consume FedEx web services from AX 2009 ?
My question is to how to track the status by passing a tracking number to a webservice? Before that How to create Web service using C# and how to add that Dll file in the AX2009?
How do i integrate the web service with Ax?
Thanks in advance
Prasad
*This post is locked for comments
I have the same question (0)A wise approach would be first reading the documentation: Consume Web Services.
AX 2009 allows you to add a service reference directly in AOT, but if you want to do it in Visual Studio (which has some pros and cons) and it's a SOAP service, create a VS project, add a service reference and use the generated proxy classes to call the service. You'll find a plenty of articles about it on internet. If it's a different kind of web service, you may need a different technique.
Regarding adding the DLL, there a References node in AOT where you register it (and you also have to install the physical file where you want to use it). You don't have to worry about these things if you add the service reference directly in AOT, instead of using a separate .NET library.