I have a solution file ( i.e DLL file). i want to create webservice/WCF Service which exposes the methods of DLL file. so that other team can use webservice instead of DLL reference
simply we cannot Add DLL as a reference to another project because another project is using in java..
so i have been provided DLL file and asked me to create one webservice( WCF is also fine) by using DLL file related methods.
please help me and my question is how can i expose DLL methods in Newly created webservice?
webservice/wcf any thing should be fine .
You can try creating a WCF Service, which has reference to this DLL file, You can call the functions in DLL from Operation contract() in your service contract.
And these operation contracts can be called from your other java project.