我在某个服务器上部署了 WCF 服务。
我需要通过 JAVA 应用程序调用它,当我检查此 OperationContract 的参数是否从 java 端正确传递但当我在 WCF 服务中记录参数值时,这里似乎没有收到。
我们仅使用“basicHttpBinding”,为 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?