Hi
In our project we are using windows service for database calls.
Now the requirement is to host the dll's used here in the IIS so that http and https calls can then be made.
I have one dll which is my query dll inherited from MarshalbyRefobject and the Interface reference.
The interface dll is another dll wherein i have defined all my methods.
I placed these 2 dll's in the virtual directory by making a bin folder. Also i added a web.config which is something like this
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown mode="SingleCall" type="RequestQueryNamespace.Sync,RequestQueryNamespace" objectUri="SyncOperations.soap"/>
</application>
</system.runtime.remoting>
</configuration>
But when i try making calls, it says could not load the dll or some of its reference.
I am not able to understand the issue.
Please help me with this.
Thank you.
Madhuri Iyer