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

  1. #1

    Default Collection Readonly

    I have a Web service with a serializable collection class. My test app
    can read the collection without any problems. The problem I'm having
    is that the collection is readonly (no methods for adding to it from
    test app). My test app needs to submit a collection of objects to the
    Web service for batch adding.

    Is there anything I can do?

    Thanks.

    Greg -- Guest

  2. Similar Questions and Discussions

    1. Persisting collection data of a webcontrol when leaving the collection editor in VS2005
      Hi folks, I'm developing a WebControl, that has got a property that's supposed to return a collection of data. Whenever I try to populate the...
    2. .Net 2.0 : Smart tags and Readonly Collection Property
      Hi, I've built a composite control with a ReadOnly custom collection property. I can manage collection items in the property editor with a...
    3. Adding to collection from controlDesigner only produces end tag for the collection.
      I have a customDesigner that adds to a collection in my control. For some reason on the closing tag is added to the HTML view. My control is...
    4. How to bing a collection with sub-collection to grid
      I have a collection of objects (say Customers for example). Each Customer Object has a collection of orders. When I bind such complex type to...
    5. Files become ReadOnly
      Hello For some strange reasons, some of my files become ReadOnly when I copy them to a subfolder to my ASP.NET application. For each new session I...
  3. #2

    Default Re: Collection Readonly

    Provide an Add method that takes an ArrayList as a parameter?


    "Greg --" <metal480@gmail.com> wrote in message
    news:1122300906.769415.109050@g43g2000cwa.googlegr oups.com...
    >I have a Web service with a serializable collection class. My test app
    > can read the collection without any problems. The problem I'm having
    > is that the collection is readonly (no methods for adding to it from
    > test app). My test app needs to submit a collection of objects to the
    > Web service for batch adding.
    >
    > Is there anything I can do?
    >
    > Thanks.
    >


    Posted Via Usenet.com Premium Usenet Newsgroup Services
    ----------------------------------------------------------
    ** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
    ----------------------------------------------------------
    [url]http://www.usenet.com[/url]
    adbarnet Guest

  4. #3

    Default Re: Collection Readonly

    Sorry - didn't mean to top-post.
    "adbarnet" <adbarnet@barnet.com> wrote in message
    news:42ecbdd5$1_2@spool9-west.superfeed.net...
    > Provide an Add method that takes an ArrayList as a parameter?
    >
    >
    > "Greg --" <metal480@gmail.com> wrote in message
    > news:1122300906.769415.109050@g43g2000cwa.googlegr oups.com...
    >>I have a Web service with a serializable collection class. My test app
    >> can read the collection without any problems. The problem I'm having
    >> is that the collection is readonly (no methods for adding to it from
    >> test app). My test app needs to submit a collection of objects to the
    >> Web service for batch adding.
    >>
    >> Is there anything I can do?
    >>
    >> Thanks.
    >>
    >
    >
    >
    > Posted Via Usenet.com Premium Usenet Newsgroup Services
    > ----------------------------------------------------------
    > ** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
    > ----------------------------------------------------------
    > [url]http://www.usenet.com[/url]


    Posted Via Usenet.com Premium Usenet Newsgroup Services
    ----------------------------------------------------------
    ** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
    ----------------------------------------------------------
    [url]http://www.usenet.com[/url]
    adbarnet Guest

  5. #4

    Default Re: Collection Readonly

    Provide an Add method that takes an ArrayList as a parameter?

    "Greg --" <metal480@gmail.com> wrote in message
    news:1122300906.769415.109050@g43g2000cwa.googlegr oups.com...
    >I have a Web service with a serializable collection class. My test app
    > can read the collection without any problems. The problem I'm having
    > is that the collection is readonly (no methods for adding to it from
    > test app). My test app needs to submit a collection of objects to the
    > Web service for batch adding.
    >
    > Is there anything I can do?
    >
    > Thanks.
    >


    Posted Via Usenet.com Premium Usenet Newsgroup Services
    ----------------------------------------------------------
    ** SPEED ** RETENTION ** COMPLETION ** ANONYMITY **
    ----------------------------------------------------------
    [url]http://www.usenet.com[/url]
    adbarnet 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