问题描述
Web服务功能
我已在窗口应用程序Web服务中删除此功能
i have declear this function in window application web service
Public Sub SetClientCredential(ByVal Userame as string)'
Public Sub SetClientCredential(ByVal Userame as string)'
End Sub
在vb文件中
Public SProxy As MIWebServiceWse.MIWebService = New MIWebServiceWse.MIWebService
Public SProxy As MIWebServiceWse.MIWebService=New MIWebServiceWse.MIWebService
me.SProxy.SetClientCredential(" asd")
me.SProxy.SetClientCredential("asd")
it显示Error AT编译时SetClientCredential不是WebService'的成员。
it shows Error AT compile time SetClientCredential is not a member of WebService'.
我正在使用Window应用程序
i am using Window application
推荐答案
SetClientCredential签名看起来不像Web方法。因此它没有暴露于外部世界。您需要使用 webmethod属性来装饰方法。
The SetClientCredential signature doesn't look like a web method. Hence its not exposed to the external world. You need to decorate the method with the webmethod attribute.
希望这会有所帮助。
-Mohammed Ghouse Ibne Barq Kadapavi
-Mohammed Ghouse Ibne Barq Kadapavi
这篇关于窗口应用程序中的Web服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!