I am trying to develop a WCF service on 64 bit Win 7. This service has to utilize a third party component to do it's job.
The 3rd party component is instantiated like this
ThirdPartyib.ThirdPartyClass objThird = new ThirdPartyib.ThirdPartyClass;
Invoking the method gives the error
*Failed to invoke the service. Possible causes: The service is offline or inaccessible; the client-side configuration does not match the proxy; the existing proxy is invalid. Refer to the stack trace for more detail. You can try to recover by starting a new proxy, restoring to default configuration, or refreshing the service. *
When I comment out the instantiation part of the third party dll and return a simple string it works fine. Infact I even tried creating a folder locally with the service and that works too. What can I do for the service to work with the 3rd party dll?
This 3rd party dll is 32-bit.