-1

インターネットで検索しましたが、具体的な回答が得られませんでした。または、web.Config ファイルに webHttpBinding を持つ WCF サービスの DLL を作成するにはどうすればよいかという満足のいく回答が得られました。

I have a WCF Service which i want to deploy on client's server but i dont want them to see my code as if i host this service on their server they will able to see my code and i don't want that.

This Service responses in JSON Format which can be access only through URL. so how to create a dll of this service and then host this on Server.

4

1 に答える 1

1

1) DLL に web.config またはその他の .config がありません。

2) サービスを DLL としてデプロイしても、(逆アセンブルされた) コードを誰もが見ることができなくなりません。

3) コードでサービスを構成できる場合がありますが、セルフホスティングの場合のみです。これは通常 EXE であり、DLL はそれをホストするために別のものを必要とします。

于 2012-10-01T07:34:13.917 に答える