Hello, I would really appreciate if anyone could help me out.
I have created an ASP.net with c# code that communicates with Dynamic GP for integration purpose. Up till now, I was using my local machine where I have installed eConnect and dynamic GP to test my coding, which is working fine. Now I have created a server on Amazone with Dynamic GP and eConnect to full fill real use case where client are on different server and my code will be running on separate machine.
Although, I can connect the SQL server with the following information
Data Source=(IP address),(TCP port number of SQL on server);Initial Catalog=(databaseName);Persist Security Info=False;User ID=sa;Password=(password);Network Library=dbmssocn
however, when I am trying to create a customer using eConnect methods with the same SQL connectionstring I am facing different errors.
- Initially, I was encountering the following error:
eConnectException: There was no endpoint listening at net.pipe://localhost/Microsoft/Dynamics/GP/eConnect/EntityOperations.
In order to resolve this issue, I have installed different features on my server and restarted my server. Added <add key="ServiceAddress" value="net.pipe://GP server NETBIOS name /Microsoft/Dynamics/GP/eConnect/EntityOperations" /> in my config file.
-Now I am facing a different error when I am trying to connect (Integration Security is required in connectionstring). And when I am providing Integration Security = true; in my connectionstring, it takes little time to process and prompt an error "Login failed. The login is from an untrusted domain and cannot be used with Windows authentication."
Can anyone please help me? Thank you very much.
*This post is locked for comments