Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Debugging
Message
From
22/01/2007 16:50:57
Jim Rieck
Quicken Loans/Rock Financial/Title Sourc
Livonia, Michigan, United States
 
 
To
All
General information
Forum:
ASP.NET
Category:
Web Services
Title:
Debugging
Miscellaneous
Thread ID:
01187903
Message ID:
01187903
Views:
72
All,

I am trying to step into a web method. when I do, it takes me to a temporary file and I never reach the code I am trying to execute. The debugger goes into a method in the temp file that returns this._schemaSerializationMode, the code is below.

My code and the code for the temp file is below
Temp File
 [System.Diagnostics.DebuggerNonUserCodeAttribute()]
        [System.ComponentModel.BrowsableAttribute(true)]
        [System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Visible)]
        public override System.Data.SchemaSerializationMode SchemaSerializationMode {
            get {
                return this._schemaSerializationMode;
            }
            set {
                this._schemaSerializationMode = value;
            }
        }
Web Method Code
 [WebMethod]
    public int SaveInfo(DataSet NonAffiliateEscrowData, int UpdateType)
    {
        string XML = NonAffiliateEscrowData.GetXml();
        return NonAffiliateClosingInfo.SaveInfo(XML, UpdateType);
    }
I don't quite understand what is going on, but if someone could help me, that would be great.
Thanks

Jim
Next
Reply
Map
View

Click here to load this message in the networking platform