Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default xsi nil=true

    Hi All,

    I have a deeply nested class structure defined in a web service. An
    object of this class type is received as an input parameter in the only
    web method present in the web service. When, I try to execute the
    service, I am not able to see the entire xml request schema. It
    displays till the 5th level node only. After that, an attribute
    xsi:nil=true comes up.

    HTTP/1.1 200 OK
    Content-Type: text/xml; charset=utf-8
    Content-Length: length

    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <HelloWorldResponse xmlns="http://tempuri.org/">
    <HelloWorldResult>
    <objClass2>
    <objClass3>
    <objClass4 xsi:nil="true" />
    </objClass3>
    </objClass2>
    </HelloWorldResult>
    </HelloWorldResponse>
    </soap:Body>
    </soap:Envelope>


    Any help would be appreciated
    Arjun

    arjun.chakraborty@gmail.com Guest

  2. Similar Questions and Discussions

    1. #26232 [Opn->Bgs]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: jay@php.net Reported By: me at my dot house -Status: Open +Status: Bogus Bug...
    2. #26232 [Bgs->Opn]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: helly@php.net Reported By: me at my dot house -Status: Bogus +Status: Open...
    3. #26232 [Ver->Bgs]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: iliaa@php.net Reported By: me at my dot house -Status: Verified +Status: Bogus...
    4. #26232 [Ver]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: jay@php.net Reported By: me at my dot house Status: Verified Bug Type: Arrays...
    5. #26232 [Opn->Ver]: in_array produces true when bool true is in haystack
      ID: 26232 Updated by: helly@php.net Reported By: me at my dot house -Status: Open +Status: Verified...
  3. #2

    Default Re: xsi nil=true

    I also have this issue but mine shows nill on the 3rd level deep.

    May 6th 2011
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139