WCF Web服务反序列化请求消息正文以进行操作时出错

问题描述 投票:0回答:1

这个问题来自this other question。代码基本相同,除了我删除的FirstMethodLastMethod方法,因为它们给出了问题(我在同一个问题中评论)。

即使这样,我也会在这里复制服务接口,仅用于引用。如果你们中的一些人觉得有必要在这里复制完整的代码,我没有问题,我会在这里复制它。

服务合同界面

[ServiceContract]
public interface IMJRFFrasCdadesService
{
    [OperationContract]
    string Ping();

    [OperationContract]
    Task<string> GoogleLoginAsync(string email);

    [OperationContract]
    Task<string> UploadFileAsync(byte[] fileBytes, string fileName, string email);
}

好的,现在当我连接到服务时它抛出这个:

            Error: 
Error in deserializing body of request message for operation 'GoogleLogin'. OperationFormatter encountered an invalid Message body. Expected to find node type 'Element' with name 'GoogleLogin' and namespace 'http://tempuri.org/'. Found node type 'Element' with name 'GoogleLoginAsync' and namespace 'http://tempuri.org/' ;

            Trace: 
at (wrapper managed-to-native) System.Object.__icall_wrapper_mono_remoting_wrapper(intptr,intptr)
at (wrapper remoting-invoke) ServiceReference2.IMJRFFrasCdadesService.GoogleLoginAsync(string)
at ServiceReference2.MJRFFrasCdadesServiceClient.GoogleLoginAsync (System.String email) [0x00006] in <e1f3df4dfbf340f09d2768d7fbc33427>:0 
at MJRFFacturasComunidades.Model.WebService.WebServiceClass+<LogEmail>d__6.MoveNext () [0x00023] in <e1f3df4dfbf340f09d2768d7fbc33427>:0  ;

如果我错了,请纠正我,但是我知道客户端正在尝试调用一个名为GoogleLogin的方法,但该方法被称为GoogleLoginAsync(正如您在代码中看到的那样),因此,它找不到方法。明显。

但是,VStudio自动生成了WCF Web Service Reference Provider的客户端代码...我该怎么办?我不明白。

无论如何,我试着看一下客户端生成的代码(现在我再说一遍,我是WCF的新手),看看:

[System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="ServiceReference1.IMJRFFrasCdadesService")]
public interface IMJRFFrasCdadesService
{

    [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IMJRFFrasCdadesService/Ping", ReplyAction="http://tempuri.org/IMJRFFrasCdadesService/PingResponse")]
    System.Threading.Tasks.Task<string> PingAsync();

    [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IMJRFFrasCdadesService/GoogleLogin", ReplyAction="http://tempuri.org/IMJRFFrasCdadesService/GoogleLoginResponse")]
    System.Threading.Tasks.Task<string> GoogleLoginAsync(string email);

    [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IMJRFFrasCdadesService/UploadFile", ReplyAction="http://tempuri.org/IMJRFFrasCdadesService/UploadFileResponse")]
    System.Threading.Tasks.Task<string> UploadFileAsync(byte[] fileBytes, string fileName, string email);
}

我想ActionOperationContractAttribute参数定义了什么方法将在服务中调用(再次,请纠正我,如果我错了,请),所以我改变了,只是为了测试它,结果如下:

            Error: 
The message with Action 'http://tempuri.org/IMJRFFrasCdadesService/GoogleLoginAsync' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver.  Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None). ;

            Trace: 
at (wrapper managed-to-native) System.Object.__icall_wrapper_mono_remoting_wrapper(intptr,intptr)
at (wrapper remoting-invoke) ServiceReference1.IMJRFFrasCdadesService.GoogleLoginAsync(string)
at ServiceReference1.MJRFFrasCdadesServiceClient.GoogleLoginAsync (System.String email) [0x00006] in <7e18c3beb694450a8a87883f2950def0>:0 
at MJRFFacturasComunidades.Model.WebService.WebServiceClass+<LogEmail>d__6.MoveNext () [0x00023] in <7e18c3beb694450a8a87883f2950def0>:0  ;

所以,不,我错了:(

是的,这就是我所能说的,我不知道为什么会这样。老实说,我认为“引用提供者”会生成对服务方法的调用,因为它在服务接口中,但是,我想我不理解它...

无论如何,我现在不知道该怎么做。任何帮助将再次受到高度赞赏。


编辑:

好吧,我无法完成我在评论中写的Xamarin.Forms问题的工作,所以正如@mahlatse所建议的那样,这是现在Web服务中的服务合同:

[ServiceContract]
public interface IMJRFFrasCdadesService
{
    [OperationContract]
    string Ping();

    [OperationContract]
    Task<string> GoogleLoginAsync(string email);

    [OperationContract]
    Task<string> UploadFileAsync(byte[] fileBytes, string fileName, string email);
}

Xamarin.Forms客户端中,由我修改的自动生成的界面:

[System.CodeDom.Compiler.GeneratedCodeAttribute("dotnet-svcutil", "1.0.0.1")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName= "ServiceReference1.IMJRFFrasCdadesService")]
public interface IMJRFFrasCdadesService
{
    [System.ServiceModel.OperationContractAttribute(Action=@"http://tempuri.org/IMJRFFrasCdadesService/Ping", ReplyAction=@"http://tempuri.org/IMJRFFrasCdadesService/PingResponse")]
    System.Threading.Tasks.Task<string> PingAsync();

    [System.ServiceModel.OperationContractAttribute(Action=@"http://tempuri.org/IMJRFFrasCdadesService/GoogleLoginAsync", ReplyAction= @"http://tempuri.org/IMJRFFrasCdadesService/GoogleLoginAsyncResponse")]
    System.Threading.Tasks.Task<string> GoogleLoginAsync(string email);

    [System.ServiceModel.OperationContractAttribute(Action=@"http://tempuri.org/IMJRFFrasCdadesService/UploadFileAsync", ReplyAction= @"http://tempuri.org/IMJRFFrasCdadesService/UploadFileAsyncResponse")]
    System.Threading.Tasks.Task<string> UploadFileAsync(byte[] fileBytes, string fileName, string email);
}

正如你所看到我也修改了ReplyAction参数,我添加了@只是为了避免“转义字符问题”。但完全没有变化。

阅读@tgolisch评论后,我修改了web.config文件,看到绑定是https。我修改了客户端,当我创建服务客户端类时,我将绑定设置为http,所以我改变了:

private IMJRFFrasCdadesService _Service;

public WebServiceClass(string url)
{
    _ServiceUrl = url;
    _Service = new MJRFFrasCdadesServiceClient(
        new BasicHttpsBinding(),
        new EndpointAddress(_ServiceUrl));
}

我也从自动生成的服务客户端类改变了这个方法,因为当参数引用http时它创建了一个https绑定(在第二个if它使用的是System.ServiceModel.BasicHttpBinding而不是https版本):

    private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration)
    {
        if ((endpointConfiguration == EndpointConfiguration.BasicHttpBinding_IMJRFFrasCdadesService))
        {
            System.ServiceModel.BasicHttpBinding result = new System.ServiceModel.BasicHttpBinding();
            result.MaxBufferSize = int.MaxValue;
            result.ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max;
            result.MaxReceivedMessageSize = int.MaxValue;
            result.AllowCookies = true;
            return result;
        }
        if ((endpointConfiguration == EndpointConfiguration.BasicHttpsBinding_IMJRFFrasCdadesService))
        {
/*HERE -->*/ System.ServiceModel.BasicHttpsBinding result = new System.ServiceModel.BasicHttpsBinding();
            result.MaxBufferSize = int.MaxValue;
            result.ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max;
            result.MaxReceivedMessageSize = int.MaxValue;
            result.AllowCookies = true;
            result.Security.Mode = System.ServiceModel.BasicHttpsSecurityMode.Transport;
            return result;
        }
        throw new System.InvalidOperationException(string.Format("No se pudo encontrar un punto de conexión con el nombre \"{0}\".", endpointConfiguration));
    }

在这之后我仍然得到相同的结果。

老实说,我开始问自己,让VStudio自动生成充满错误的代码有什么意义。

即使有了这一切,我也没有放弃xamarin问题,我还指出了评论。

c# web-services wcf xamarin.forms azure-app-service-envrmnt
1个回答
0
投票

我放弃了这个。我刚刚创建了一个ASP.Net核心web api。

通过WCF Web服务,我在阅读,学习和与之战斗之间花了一个多星期:从未按预期工作。

有了网络api,我花了半天的时间阅读和学习(其中大部分是this video at youtube's visual studio channel。我一直讨厌MSDN文章解释事物的方式,但这个视频是一个真正的现场救星),一天一个早上做它包括Xamarin.Forms客户端在内的所有工作,所有人都对HTTP或ASP.Net的知识很少。

现在一切都很完美。谢谢你试图帮助:)

© www.soinside.com 2019 - 2024. All rights reserved.