WCF Service Throwing Time Out Error

I have .Net service

one that is used to connect to the Enterprise Architect API. ... When running the file directly, it .exe

takes about 30 seconds to connect and receive a response. When registering the same service as the WCF service and starting it, it gave the following error:

Retrieving the COM class factory for component with CLSID
{67F4E0FA-46A7-4255-B084-69A9433D08C3} failed due to the following
error: 80080005 Server execution failed (Exception from HRESULT:
0x80080005 (CO_E_SERVER_EXEC_FAILURE)). 

      

Solved the above error by following the steps given in this link .

After that, the now registered WCF service takes about 4-5 minutes to connect and then it throws an error, "tjava.net.SocketTimeoutException:

Timed out to check.

+3


source to share


1 answer


The problem is that EA requires the "real" user to work properly.



The guys at LieberLieber apparently found a solution for it: Running-enterprise-architect-on-a-server

+1


source







All Articles