Http error 413->request entity too large

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

  1. #1

    Default Http error 413->request entity too large

    I have a webservice under IIS6/Win2003 Server. When I try to invoke a method
    that have a strong type dataset as parameter for update in database I
    receive on the client the follwing error: Http error 413 request entity is
    too large.
    I mention that this dataset is very large (about 1 Mb) and if the client
    is on the same machine where the server is running the code is executed
    succesfully. If I call the same method with a small dataset (about 256 Kb)
    the method is excuted succesfully.
    I checked the settings in machine.config file and the atributte for
    httpRuntime->maxRequestLength is 4096 Kb.
    Another intersted point is that if I have the exception on client and I
    stop the IIS and I try to invoke the method i receive the same error code
    insted of connection error or somnthing like this error.
    Can anyone tell me how to correct this problem and what setting I need to
    change to allow the clients app to inoke this web method with large dataset?




    Darie Florin Guest

  2. Similar Questions and Discussions

    1. Http Request Error
      I am testing out the funtionality of flex 2, with a real world app that I will improve on once I get it down. First off I have a cfc that works...
    2. Http error 413 Request entity too large
      I have a webservice under IIS6/Win2003 Server. When I try to invoke a method that have a strong type dataset as parameter for update in database I...
    3. System.Net.WebException Request Entity Too Large (not running IIS)
      When my .NET program makes a Web Service call I get this response... System.Net.WebException: The request failed with HTTP status 413: Request...
    4. Send Basic HTTP authentication credential in the first HTTP request
      Hello, How can I make the web service proxy class send basic authentication information in the HTTP header of the first request? My...
    5. Error 413: Request Entity Too Large while send a file
      Hello, I have a .NET Web Service in Windows 2003 with IIS6.0 . When I try to send a large file (+1MB) via https, I receive the error : 413...
  3. #2

    Default Re: Http error 413->request entity too large

    There is a reference in here to this ( very similar ), you may want to check
    it out.

    [url]http://www.microsoft.com/resources/documentation/iis/6/all/proddocs/en-us/qss_wss_troubleshooting.mspx[/url]

    --

    OHM ( Terry Burns )
    . . . One-Handed-Man . . .

    Time flies when you don't know what you're doing

    "Darie Florin" <darief@hotmail.com> wrote in message
    news:OB4XAu2WEHA.2972@TK2MSFTNGP12.phx.gbl...
    > I have a webservice under IIS6/Win2003 Server. When I try to invoke a
    method
    > that have a strong type dataset as parameter for update in database I
    > receive on the client the follwing error: Http error 413 request entity is
    > too large.
    > I mention that this dataset is very large (about 1 Mb) and if the
    client
    > is on the same machine where the server is running the code is executed
    > succesfully. If I call the same method with a small dataset (about 256 Kb)
    > the method is excuted succesfully.
    > I checked the settings in machine.config file and the atributte for
    > httpRuntime->maxRequestLength is 4096 Kb.
    > Another intersted point is that if I have the exception on client and
    I
    > stop the IIS and I try to invoke the method i receive the same error code
    > insted of connection error or somnthing like this error.
    > Can anyone tell me how to correct this problem and what setting I need to
    > change to allow the clients app to inoke this web method with large
    dataset?
    >
    >
    >
    >

    One Handed Man \( OHM - Terry Burns \) 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