WCF服务在调用它时没有从java应用程序获取参数

时间:2013-07-08 14:04:17

标签: java asp.net wcf wcf-data-services wcf-binding

我在某个服务器上部署了WCF服务。

我需要通过JAVA应用程序调用它,当我检查这个OperationContract的参数是从java端正确传递但是当我在WCF服务中记录参数值时,似乎没有在这里收到。 / p>

我们正在使用' basicHttpBinding' only,为Service和OperationContracts设置的属性如下: -

[ServiceContract]
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[XmlSerializerFormat(Style = OperationFormatStyle.Rpc, Use =     OperationFormatUse.Encoded)]
public interface IMyService
{
    [WebMethod]
    [OperationContract(Action = @"http://tempuri.org/GetString")]
    [WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.Wrapped)]
    string GetString(string strParameters);
}

任何正文都可以检查这是否正确,或者可以建议所有步骤,以便通过JAVA应用程序正确访问WCF?

2 个答案:

答案 0 :(得分:0)

对于REST ful WCF,请尝试使用WEbHTTPBinding而不是基本HTTP。 REST WCF支持WebHTTPBindings

答案 1 :(得分:0)

WebInvoke属性不用于BasicHttpBinding(用于webhttpBinding)。你可以把它拿出来。诊断的一种方法是在wcf配置编辑器(SvcConfigEditor.exe)中打开配置。启用跟踪(搜索启用wcf跟踪),发出服务请求,生成跟踪文件。检查跟踪查看器(svtraceviewer.exe)中的日志。你会找到它失败的地方。