如何获取Web服务对象?

时间:2013-03-22 20:58:53

标签: c# web-services

我正在使用Web服务在C#中实现一些代码,但我唯一的参考是他们用来加载测试的Java代码。

Java通过调用

获取对象调用
lotService=(LotService) ic.lookup("mes-webservices/lotService/remote");

其中IC是InitialContext对象。

我需要在C#上做同样的调用,但我不知道如何。有没有一种简单的方法就像这个java方法在C#中做到的那样?

3 个答案:

答案 0 :(得分:2)

您可以通过向Web服务添加服务引用来在C#中执行类似的操作。我假设您的Web服务和使用客户端都在.NET中。

Psuedo代码将是

LocationWebService objService = new LocationWebService(); // this is proxy class of web service created when you add web reference
string result = objService.GetLocationName(4); //call web method

答案 1 :(得分:1)

以下是步骤:

  1. 在项目中添加服务引用
  2. 创建ServiceClient实例
  3. 通过使用上面创建的实例调用方法,它正在公开
  4. 就是这样。

答案 2 :(得分:-1)

首先右键单击您的项目,然后选择“添加服务引用”。

一旦拥有它,您需要创建服务客户端对象。无论你将上面的服务引用命名为什么,你的项目都会有一个新的类型(我认为,命名为,最后附加了“Client”的服务引用名称。例如:如果服务是FooService,你将拥有一个可用的客户端类型FooServiceClient。)

要实例化,您需要绑定。您可以通过编程方式创建它:

var binding = new BasicHttpBinding()
            {
                CloseTimeout = new TimeSpan(0, 1, 0),
                OpenTimeout = new TimeSpan(0, 1, 0),
                ReceiveTimeout = new TimeSpan(0, 10, 0),
                SendTimeout = new TimeSpan(0, 1, 0),
                AllowCookies = false,
                BypassProxyOnLocal = false,
                HostNameComparisonMode = HostNameComparisonMode.StrongWildcard,
                MaxBufferSize = 65536,
                MaxBufferPoolSize = 524288,
                MaxReceivedMessageSize = 65536,
                MessageEncoding = WSMessageEncoding.Text,
                TextEncoding = Encoding.UTF8,
                TransferMode = TransferMode.Buffered,
                UseDefaultWebProxy = true
            };
            binding.ReaderQuotas.MaxDepth = 32;
            binding.ReaderQuotas.MaxStringContentLength = 8192;

if (isHttps)
    binding.Security = new BasicHttpSecurity() { Mode = BasicHttpSecurityMode.Transport };

然后你需要一个端点。像这样创建:

var endpoint = new EndpointAddress(serviceUri);

然后只是实例化服务客户端:

var serviceClient = new FooServiceClient(binding, endpoint);

您可以从服务客户端实例调用您的服务方法。