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

  1. #1

    Default rich type

    Hi all,

    I would like to know what kind of rich type (i mean complex type) a
    webservice can return.
    I have seen some example showing that a webservice can return a DataSet
    (does it just call DataSet.GetXml()?).
    How can I know is one type or an other type will be supported by webservice?
    Can a webservice also return a DataTable or a DataView? In fact I would like
    that my webservice return a dataview but i am not sure of how to do so. It
    seems difficult to know what type are supported by webservice and also what
    is the serialization mechanism used by webservice

    Tx in advance

    Francois


    Francois Malgreve Guest

  2. Similar Questions and Discussions

    1. rich text editing
      Look into activeX stuff... That's how they do it... -- // DvDmanDT MSN: dvdmandt@hotmail.com Mail: dvdmandt@telia.com "Redmond Militante"...
    2. Rich for the not.
      I have a simple question. I hear 'rich' all the time and it is getting me. I am a small business owner who just wants to be able to use online...
    3. Get Rich
      Take advantage of a great deal
    4. Rich Black
      I was wondering what the majority uses for rich black. I have an ad with a rich black background (C-40, K-100). My type is reverse/white and at it...
    5. Rich Text Box
      Hi, I'm trying to create a rich text box using VB.Net. Does anybody know how I can go about creating one without having to buy a third party...
  3. #2

    Default Re: rich type

    "Francois Malgreve" <francois.malgreveADgmail.com> wrote in
    news:#Ehv9JqWFHA.3996@TK2MSFTNGP09.phx.gbl:
    > I have seen some example showing that a webservice can return a DataSet
    > (does it just call DataSet.GetXml()?).
    Essentially.
    > How can I know is one type or an other type will be supported by
    You can add support for any type.
    > webservice? Can a webservice also return a DataTable or a DataView? In
    No, not in 1.1. In 2.0 IIRC a DataTable can be returned.
    > fact I would like that my webservice return a dataview but i am not sure
    > of how to do so. It seems difficult to know what type are supported by
    A dataview doesnt really contain any data. Why not just fill into another
    Dataset and return then?
    > webservice and also what is the serialization mechanism used by
    > webservice
    This is all listed in MSDN quite plainly.


    --
    Chad Z. Hower (a.k.a. Kudzu) - [url]http://www.hower.org/Kudzu/[/url]
    "Programming is an art form that fights back"

    Blog: [url]http://blogs.atozed.com/kudzu[/url]
    Chad Z. Hower aka Kudzu 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