仅在带有UNITY3d的内置android应用中强制SoapService时ArgumentException - java

我制作了一个Unity游戏,该游戏调用服务来获取游戏数据。
从统一播放器启动游戏时,它工作正常,但是当我构建apk并在android设备上运行它时,logCat出现错误:

错误Unity:ArgumentException:已添加项目。字典中的键:':Users :::'被添加的键:':Users :::'
错误Unity:在:0中的System.Collections.Hashtable.Insert(System.Object键,System.Object nvalue,System.Boolean添加)处[0x001d4]
错误Unity:在:0中的System.Collections.Hashtable.Add(System.Object键,System.Object值)[0x00000]中
错误Unity:在:0中的System.Collections.DictionaryBase.System.Collections.IDictionary.Add(System.Object键,System.Object值)[0x00016]处
错误Unity:位于System.Xml.Serialization.TempAssembly + TempMethodDictionary.Add(System.String键,System.Xml.Serialization.TempAssembly + TempMethod值)中的[0x00006] :: 0
错误统一:在System.Xml.Serialization.TempAssembly.InitAssemblyMethods(System.Xml.Serialization.XmlMapping [] xmlMappings)[0x00063]中的:0
错误统一性:在System.Xml.Serialization.TempAssembly..ctor(System.Xml.Serialization.XmlMapping [] xmlMappings,Sy

为了调用服务,我用System.Web.Services.dll和通过命令生成的wsdl-c#文件创建了一个WebClient文件夹。
这是ServiceSoap.cs文件的内容:

using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Xml.Serialization;

[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(Name = "ServizioNumbersSoap", Namespace = "http://tempuri.org/")]
public partial class ServizioNumbers : System.Web.Services.Protocols.SoapHttpClientProtocol
{

    private System.Threading.SendOrPostCallback getSolutionsbyGridOperationCompleted;

    private System.Threading.SendOrPostCallback getGridOperationCompleted;

    private System.Threading.SendOrPostCallback getUserOperationCompleted;

    private System.Threading.SendOrPostCallback setUsersOperationCompleted;

    private System.Threading.SendOrPostCallback updUserScore1OperationCompleted;

    /// <remarks/>
    public ServizioNumbers()
    {
        this.Url = "http://numbers.jemaka.it/NumberService.asmx";
    }

    /// <remarks/>
    public event getSolutionsbyGridCompletedEventHandler getSolutionsbyGridCompleted;

    /// <remarks/>
    public event getGridCompletedEventHandler getGridCompleted;

    /// <remarks/>
    public event getUserCompletedEventHandler getUserCompleted;

    /// <remarks/>
    public event setUsersCompletedEventHandler setUsersCompleted;

    /// <remarks/>
    public event updUserScore1CompletedEventHandler updUserScore1Completed;

    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/getSolutionsbyGrid", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
    public Solutions[] getSolutionsbyGrid(int idGrid)
    {
        object[] results = this.Invoke("getSolutionsbyGrid", new object[] {
                    idGrid});
        return ((Solutions[])(results[0]));
    }

    /// <remarks/>
    public void getSolutionsbyGridAsync(int idGrid)
    {
        this.getSolutionsbyGridAsync(idGrid, null);
    }

    /// <remarks/>
    public void getSolutionsbyGridAsync(int idGrid, object userState)
    {
        if ((this.getSolutionsbyGridOperationCompleted == null))
        {
            this.getSolutionsbyGridOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetSolutionsbyGridOperationCompleted);
        }
        this.InvokeAsync("getSolutionsbyGrid", new object[] {
                    idGrid}, this.getSolutionsbyGridOperationCompleted, userState);
    }

    private void OngetSolutionsbyGridOperationCompleted(object arg)
    {
        if ((this.getSolutionsbyGridCompleted != null))
        {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.getSolutionsbyGridCompleted(this, new getSolutionsbyGridCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }

    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/getGrid", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
    public Grids getGrid()
    {
        object[] results = this.Invoke("getGrid", new object[0]);
        return ((Grids)(results[0]));
    }

    /// <remarks/>
    public void getGridAsync()
    {
        this.getGridAsync(null);
    }

    /// <remarks/>
    public void getGridAsync(object userState)
    {
        if ((this.getGridOperationCompleted == null))
        {
            this.getGridOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetGridOperationCompleted);
        }
        this.InvokeAsync("getGrid", new object[0], this.getGridOperationCompleted, userState);
    }

    private void OngetGridOperationCompleted(object arg)
    {
        if ((this.getGridCompleted != null))
        {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.getGridCompleted(this, new getGridCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }

    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/getUser", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
    public Users getUser(string uuid)
    {
        object[] results = this.Invoke("getUser", new object[] {
                    uuid});
        return ((Users)(results[0]));
    }

    /// <remarks/>
    public void getUserAsync(string uuid)
    {
        this.getUserAsync(uuid, null);
    }

    /// <remarks/>
    public void getUserAsync(string uuid, object userState)
    {
        if ((this.getUserOperationCompleted == null))
        {
            this.getUserOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetUserOperationCompleted);
        }
        this.InvokeAsync("getUser", new object[] {
                    uuid}, this.getUserOperationCompleted, userState);
    }

    private void OngetUserOperationCompleted(object arg)
    {
        if ((this.getUserCompleted != null))
        {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.getUserCompleted(this, new getUserCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }

    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/setUsers", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
    public string setUsers(Users u)
    {
        object[] results = this.Invoke("setUsers", new object[] {
                    u});
        return ((string)(results[0]));
    }

    /// <remarks/>
    public void setUsersAsync(Users u)
    {
        this.setUsersAsync(u, null);
    }

    /// <remarks/>
    public void setUsersAsync(Users u, object userState)
    {
        if ((this.setUsersOperationCompleted == null))
        {
            this.setUsersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnsetUsersOperationCompleted);
        }
        this.InvokeAsync("setUsers", new object[] {
                    u}, this.setUsersOperationCompleted, userState);
    }

    private void OnsetUsersOperationCompleted(object arg)
    {
        if ((this.setUsersCompleted != null))
        {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.setUsersCompleted(this, new setUsersCompletedEventArgs(invokeArgs.Results, invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }

    /// <remarks/>
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/updUserScore1", RequestNamespace = "http://tempuri.org/", ResponseNamespace = "http://tempuri.org/", Use = System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle = System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
    public void updUserScore1(int id_user, float score1)
    {
        this.Invoke("updUserScore1", new object[] {
                    id_user,
                    score1});
    }

    /// <remarks/>
    public void updUserScore1Async(int id_user, float score1)
    {
        this.updUserScore1Async(id_user, score1, null);
    }

    /// <remarks/>
    public void updUserScore1Async(int id_user, float score1, object userState)
    {
        if ((this.updUserScore1OperationCompleted == null))
        {
            this.updUserScore1OperationCompleted = new System.Threading.SendOrPostCallback(this.OnupdUserScore1OperationCompleted);
        }
        this.InvokeAsync("updUserScore1", new object[] {
                    id_user,
                    score1}, this.updUserScore1OperationCompleted, userState);
    }

    private void OnupdUserScore1OperationCompleted(object arg)
    {
        if ((this.updUserScore1Completed != null))
        {
            System.Web.Services.Protocols.InvokeCompletedEventArgs invokeArgs = ((System.Web.Services.Protocols.InvokeCompletedEventArgs)(arg));
            this.updUserScore1Completed(this, new System.ComponentModel.AsyncCompletedEventArgs(invokeArgs.Error, invokeArgs.Cancelled, invokeArgs.UserState));
        }
    }

    /// <remarks/>
    public new void CancelAsync(object userState)
    {
        base.CancelAsync(userState);
    }
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://tempuri.org/")]
public partial class Solutions
{

    private int id_solutionField;

    private int id_gridField;

    private float numberField;

    private string sequenceField;

    private float difficultyField;

    private string noteField;

    /// <remarks/>
    public int Id_solution
    {
        get
        {
            return this.id_solutionField;
        }
        set
        {
            this.id_solutionField = value;
        }
    }

    /// <remarks/>
    public int Id_grid
    {
        get
        {
            return this.id_gridField;
        }
        set
        {
            this.id_gridField = value;
        }
    }

    /// <remarks/>
    public float Number
    {
        get
        {
            return this.numberField;
        }
        set
        {
            this.numberField = value;
        }
    }

    /// <remarks/>
    public string Sequence
    {
        get
        {
            return this.sequenceField;
        }
        set
        {
            this.sequenceField = value;
        }
    }

    /// <remarks/>
    public float Difficulty
    {
        get
        {
            return this.difficultyField;
        }
        set
        {
            this.difficultyField = value;
        }
    }

    /// <remarks/>
    public string Note
    {
        get
        {
            return this.noteField;
        }
        set
        {
            this.noteField = value;
        }
    }
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://tempuri.org/")]
public partial class Users
{

    private int id_userField;

    private string nicknameField;

    private string imeiField;

    private string uuidField;

    private System.DateTime data_setupField;

    private string emailField;

    private string service_idField;

    private string noteField;

    private float score1Field;

    private float score2Field;

    private float bonus1Field;

    private float bonus2Field;

    /// <remarks/>
    public int Id_user
    {
        get
        {
            return this.id_userField;
        }
        set
        {
            this.id_userField = value;
        }
    }

    /// <remarks/>
    public string Nickname
    {
        get
        {
            return this.nicknameField;
        }
        set
        {
            this.nicknameField = value;
        }
    }

    /// <remarks/>
    public string Imei
    {
        get
        {
            return this.imeiField;
        }
        set
        {
            this.imeiField = value;
        }
    }

    /// <remarks/>
    public string Uuid
    {
        get
        {
            return this.uuidField;
        }
        set
        {
            this.uuidField = value;
        }
    }

    /// <remarks/>
    public System.DateTime Data_setup
    {
        get
        {
            return this.data_setupField;
        }
        set
        {
            this.data_setupField = value;
        }
    }

    /// <remarks/>
    public string Email
    {
        get
        {
            return this.emailField;
        }
        set
        {
            this.emailField = value;
        }
    }

    /// <remarks/>
    public string Service_id
    {
        get
        {
            return this.service_idField;
        }
        set
        {
            this.service_idField = value;
        }
    }

    /// <remarks/>
    public string Note
    {
        get
        {
            return this.noteField;
        }
        set
        {
            this.noteField = value;
        }
    }

    /// <remarks/>
    public float Score1
    {
        get
        {
            return this.score1Field;
        }
        set
        {
            this.score1Field = value;
        }
    }

    /// <remarks/>
    public float Score2
    {
        get
        {
            return this.score2Field;
        }
        set
        {
            this.score2Field = value;
        }
    }

    /// <remarks/>
    public float Bonus1
    {
        get
        {
            return this.bonus1Field;
        }
        set
        {
            this.bonus1Field = value;
        }
    }

    /// <remarks/>
    public float Bonus2
    {
        get
        {
            return this.bonus2Field;
        }
        set
        {
            this.bonus2Field = value;
        }
    }
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "http://tempuri.org/")]
public partial class Grids
{

    private int id_gridField;

    private string itemField;

    private System.DateTime data_creationField;

    private float difficultyField;

    private Solutions solutionsField;

    /// <remarks/>
    public int Id_grid
    {
        get
        {
            return this.id_gridField;
        }
        set
        {
            this.id_gridField = value;
        }
    }

    /// <remarks/>
    public string Item
    {
        get
        {
            return this.itemField;
        }
        set
        {
            this.itemField = value;
        }
    }

    /// <remarks/>
    public System.DateTime Data_creation
    {
        get
        {
            return this.data_creationField;
        }
        set
        {
            this.data_creationField = value;
        }
    }

    /// <remarks/>
    public float Difficulty
    {
        get
        {
            return this.difficultyField;
        }
        set
        {
            this.difficultyField = value;
        }
    }

    /// <remarks/>
    public Solutions Solutions
    {
        get
        {
            return this.solutionsField;
        }
        set
        {
            this.solutionsField = value;
        }
    }
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
public delegate void getSolutionsbyGridCompletedEventHandler(object sender, getSolutionsbyGridCompletedEventArgs e);

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class getSolutionsbyGridCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
{

    private object[] results;

    internal getSolutionsbyGridCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
            base(exception, cancelled, userState)
    {
        this.results = results;
    }

    /// <remarks/>
    public Solutions[] Result
    {
        get
        {
            this.RaiseExceptionIfNecessary();
            return ((Solutions[])(this.results[0]));
        }
    }
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
public delegate void getGridCompletedEventHandler(object sender, getGridCompletedEventArgs e);

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class getGridCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
{

    private object[] results;

    internal getGridCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
            base(exception, cancelled, userState)
    {
        this.results = results;
    }

    /// <remarks/>
    public Grids Result
    {
        get
        {
            this.RaiseExceptionIfNecessary();
            return ((Grids)(this.results[0]));
        }
    }
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
public delegate void getUserCompletedEventHandler(object sender, getUserCompletedEventArgs e);

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class getUserCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
{

    private object[] results;

    internal getUserCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
            base(exception, cancelled, userState)
    {
        this.results = results;
    }

    /// <remarks/>
    public Users Result
    {
        get
        {
            this.RaiseExceptionIfNecessary();
            return ((Users)(this.results[0]));
        }
    }
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
public delegate void setUsersCompletedEventHandler(object sender, setUsersCompletedEventArgs e);

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class setUsersCompletedEventArgs : System.ComponentModel.AsyncCompletedEventArgs
{

    private object[] results;

    internal setUsersCompletedEventArgs(object[] results, System.Exception exception, bool cancelled, object userState) :
            base(exception, cancelled, userState)
    {
        this.results = results;
    }

    /// <remarks/>
    public string Result
    {
        get
        {
            this.RaiseExceptionIfNecessary();
            return ((string)(this.results[0]));
        }
    }
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "0.0.0.0")]
public delegate void updUserScore1CompletedEventHandler(object sender, System.ComponentModel.AsyncCompletedEventArgs e);

我在GameManger.cs中调用服务:

     void Start()
    {
       srv = new ServizioNumbers(); <--- Here handle's error
    }

我究竟做错了什么?!
我发布了我在游戏中定义的SOAP客户端代码,以允许任何人重现该问题。

参考方案

您不能真正在移动平台上使用WSDL,SOAP或XML序列化。尝试在Android(4.5)最新的.net运行时中使用Mono运行时选项。您将无法使用il2cpp

在小数点后三位显示秒。 -Java - java

我在Java程序中使用毫秒,并将其转换为秒。我的方法执行完此操作后,它将以长格式返回秒。System.out.println("[" + threadID + "]" + " " + "SeqSum res=" + grandTotal + " secs=" …

Java SE 7:执行顺序 - java

我正在为Java SE 7考试而学习,并且正在研究示例问题。我似乎无法弄清楚为什么以下程序以x y c g的顺序返回。我理解为什么首先运行x,因为它是一个静态初始化块,但是有人可以解释为什么y在c和g之前运行吗?public class Triangle { Triangle() { System.out.print("c "); } {…

System.out.printf不打印整数参数 - java

我是Java编程的新手,无法从另一个类返回方法。这两个类都可以编译并成功运行。我可以从一个类中调用一个简单的int,但是当我想计算用户输入的两个输入整数时,我只会得到一个空格。这是我的计算课class calculations { public final int AGE = 53; public int numbers(int num1, int num2…

如何使用正则表达式匹配以相反顺序排列的后两个字符为前两个字符的任何字符串 - java

Closed. This question needs to be more focused。它当前不接受答案。                                                                                                                            …

Java-搜索字符串数组中的字符串 - java

在Java中,我们是否有任何方法可以发现特定字符串是字符串数组的一部分。我可以避免出现一个循环。例如String [] array = {"AA","BB","CC" }; string x = "BB" 我想要一个if (some condition to tell wheth…