Getting HttpException while transfering Dataset

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

  1. #1

    Default Getting HttpException while transfering Dataset

    I am transfering a large dataset, about 120,000 records to a web service to
    update a DB but I get this error:

    System.Web.HttpException: Maximum request length exceeded.

    How can this be fixed? Is it something I have to config on the remote
    server?

    Thanks


    T Cordon Guest

  2. Similar Questions and Discussions

    1. Dataset.length(), dataset.hasnext() not working.. Why?
      I have a dataset that has 3 items, yet when I test for it, it is "undefined". Any ideas why this property would not be available? Thanks Geoff
    2. dataset.Databind error when dataset XML contains attributes...
      I've come accross an interesting problem populating an asp.net datagrid. I am trying to bind XML data to a datagrid as I've done in countless other...
    3. System.Web.HttpException Error.
      Need some help. Followed the following microsoft article to the T: http://msdn.microsoft.com/library/en-us/dnnetsec/html/SecNetHT02.asp When I was...
    4. - Transfering text from PS to AI
      Using PS7 and AI10... How do I transfer text in PS to AI without rasterizing? What are my options, if any? Thanks!
    5. Ccopying a datatable content from an untyped dataset into a table which is inside a typed dataset
      Hi All, I am facing problem in copying content of table from a untyped dataset into to a table inside the typed dataset. I wanted to copy the data...
  3. #2

    Default RE: Getting HttpException while transfering Dataset

    On your Web.config add this

    <httpRuntime maxRequestLength="10192" />

    This is for 10 MB, you can make it as big as you want, please let me know if that fixes your problem.

    Al
    Albert Pascual Guest

  4. #3

    Default Re: Getting HttpException while transfering Dataset

    Thanks, This works.

    Does this affect or compromise in any war my server's security or
    performance?

    Thanks Again.


    "Albert Pascual" <anonymous@discussions.microsoft.com> wrote in message
    news:974270FD-83E1-4DB2-9CCA-81E34E9AE9E0@microsoft.com...
    > On your Web.config add this
    >
    > <httpRuntime maxRequestLength="10192" />
    >
    > This is for 10 MB, you can make it as big as you want, please let me know
    if that fixes your problem.
    >
    > Al

    T Cordon 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