Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SOAP/TCP サービスを .net 2.0 クライアントに公開することはできますか?
HTTP プロトコルで正常に公開しましたが、サービス バインディングを tcp に変更すると、.net 2.0 クライアントからサービスと通信しようとすると、「URI プレフィックスが認識されません」というエラーが表示されます。
URI を使用しました: net.tcp://localhost:8127/myservice
NET 2.0 は、net.tcpまたはを使用できません。2.0 クライアントからサービスをwsHttp使用するには、 を使用する必要があります。basicHttpBindingWCF はネット 3.0 で登場しました
net.tcp
wsHttp
basicHttpBinding