WCF Host 의 BaseAddress 와 Endpoint 의 Address 의 차이
2459 단어 host
baseAddress is just that, the base address for your endpoints (unless specified explicitly).
So every
<baseAddresses>
<add baseAddress="http://127.0.0.1:1337/" />
</baseaddresses>
...
<endpoint address="" contract="MyService.IMyContract" ... />
<endpoint address="mex" contract="IMetadataExchange" ... />
You now have two endpoints:
http://127.0.0.1:1337/ - service endpointhttp://127.0.0.1:1337/mex - metadata endpointBy exempting the
exempt 면제면제 하 다 baseAddress 를 생략 하고 endpoint 의 주 소 를 완전히 제한 하도록 요구 합 니 다.
<baseAddresses></baseaddresses>
...
<endpoint address="net.tcp://127.0.0.1:1337/" contract="MyService.IMyContract" ... />
<endpoint address="http://127.0.0.1:1337/mex" contract="IMetadataExchange" ... />
You now have two different endpoints:
net.tcp://127.0.0.1:1337/ - service endpointhttp://127.0.0.1:1337/mex - metadata endpoint
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Host+DLL 모드에서 단축키 사용최근에 Host+DLL의 플러그인 시스템을 만들었는데 각 DLL 모듈은 하나의 기본 모듈인 TBaseForm을 계승했다. 그리고 기본 모듈에서 F1 증가, F2 삭제, F3 변경, F4 찾기 등 기능을 정의했고 각 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.