could anyboldy learn me how can I start with AXLAPI WITH ASP.NET C#
what the first steps for that ?
the begining is very important ..
I tried to understand but i faced some difficult
what the wsdl.exe and where can i find it ?
what I have to do after install wsdl.exe ?
how can use it in asp.net and how can I connect with call manager server ?
I hope to help me
I need it for asp.net only
thank you
wsdl.exe comes with your Visual Studio installation. You don't have to install it. You can find it in C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin or similar.
Once you find it, you have to use cmd.exe to use the wsdl file to create a proxy class. It will by default be named as AXLAPIService.cs.
Once you have the .cs file, you can add it to your ASP.NET project and then use it as regular class. You do have to make some changes to AXLAPIService.cs file, like the constructor but all this is documented.
Good luck.