已提供基地址时 WCF 服务端点的相对地址

发布于 2024-12-20 01:45:37 字数 258 浏览 3 评论 0原文

我也在学习 WCF,并且是 Web 服务的新手,并且有一个非常基本的问题。请纵容我吧!我正在使用的书中的示例(学习 WCF)创建了一个 ServiceHost 实例,指定服务的基地址(new Uri("http://localhost:8000/HelloIndigo)),我猜这是该类的位置然后,使用最后一个参数(即相对地址)调用 AddServiceEndpoint(),后者只不过是类的名称(可以在库)实际上实现了服务契约?(所讨论的类确实具有该名称。)但是该参数被称为“地址”,这让我非常困惑。

I too am learning WCF and am new to Web Services and have a very basic question. Please indulge me! The example in the book I'm using (Learning WCF) created a ServiceHost instance specifying a base address for the service (new Uri("http://localhost:8000/HelloIndigo)), which I guess is the location of the class library implementing the service. Then a call to AddServiceEndpoint() is done with the final argument, the relative address, given as "HelloIndigoService". Is the latter nothing more than the name of the class (to be found in the library) that actually implements the service contract? (The class in question DOES bear that name.) Yet that argument is called the "address" which is mightily confusing me. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾城花音 2024-12-27 01:45:37

如果您是自托管,则可以

  • 在端点中拥有

    完整、明确的端点地址,例如

    http://yourServer:8888/YourService/SomeMethodName
    

    因此您的端点定义了完整的 HTTP 地址

或者:

  • 您可以定义一个基地址服务上的地址是该服务所有端点的基础,然后端点本身仅定义从那里开始的相对地址。

因此,在您的情况下,基地址是 http://localhost:8000/HelloIndigo - 因此所有服务端点都将位于该地址“下方”。

该端点定义了 HelloIndigoService相对地址,因此将这两个地址放在一起,最终的完整地址将是:

  http://localhost:8000/HelloIndigo/HelloIndigoService

这适用于自托管ServiceHost 类并打开它以供使用的主机应用程序时)。

当您使用 IIS 托管服务时,不会使用/不会解释基地址 - 相反,*.svc 文件所在的虚拟目录(在 IIS 中)定义了服务端点的地址。

If you're self-hosting, you can have either:

  • complete, explicit endpoint addresses in your endpoints, e.g.

    http://yourServer:8888/YourService/SomeMethodName
    

    So your endpoint defines a complete HTTP address

OR:

  • You can define a base address on the service which is the base for all endpoints of that service, and then the endpoint itself only defines the relative addresses from there on.

So in your case, the base address is http://localhost:8000/HelloIndigo - so all service endpoints will be "under" that address.

The endpoint defines a relative address of HelloIndigoService, so those two are put together and the full address in the end will be:

  http://localhost:8000/HelloIndigo/HelloIndigoService

This works for self-hosting only (when you have a host application that creates the ServiceHost class and opens it for use).

When you use IIS to host your service, then the base address is not used / not interpreted - instead, the virtual directory (in IIS) where your *.svc file exists defines your service endpoint's address.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文