• λ我爱Aspx >> Asp.Net >> Data Integrity in Web Services (转一)
  • Data Integrity in Web Services (转一)

  • :aspxer  Դ:internet  :2007-5-28 20:37:44  ؼ:web
  • Data Integrity in Web Services (转一)

    ract

    Web Services bring with them great possibilities and with these possibilities are some pitfalls. One such pitfall is passing complex data types to and from Web Services without losing data integrity. The clearest thing to keep in mind when passing objects to Web Services is the data is passed for your object@#s fields, but the code is not.

    What happens when I have an object that my web service passes as a return value?

    WSDL does some magic when a programmer creates a referance to your web service. Visual Studio.NET creates wrapper objects around foreign data types.

    The struct you create inside your Web Service looks like this:

    public struct PersonData

    {

    private int yearsExperience;

    public int YearsExperience

    {

    get { return yearsExperience; }

    set

    {

    Ҷƪл˵?
  • һƪ在Web Service中实现Transaction
    һƪData Integrity in Web Services (转二)