Hi Martin,
1)I created a service reference and build it in vs. I copied the dll and config file to client and server bin folder (ax32.exe,ax32serv.exe).I modified the config file in vs to allow as Basic( <transport clientCredentialType="Basic" proxyCredentialType="None").
2)I tested the url by creating the console application and hardcoded some of the values to execute the method ,I got 2errors (trustconnection with tls/ssl issue,client credentials is missing),i fixed those errors by hardcoding the client username and password and the other error " System.Net.ServicePointManager.ServerCertificateValidationCallback +=
(se, cert, chain, sslerror) =>
{
return true;
};" by pasting the above code in console application and so my process execute successfully by getting a response back from the other application.
3)In AOT i consumed the same service and invoke the classes and methods , when i debug the execute method i dont find any changes happening in the background , In the same place the error caught in vs because of the client credential and ssl/tls trust relationship .
My question how i can open the connection to access the client application.I have used CLRInterop as well.