WSE SOAP Attachment filesize limit

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

  1. #1

    Default WSE SOAP Attachment filesize limit

    I am using WSE 2.0 to receive SOAP Attachment, and the following are my
    testing cases.

    Upload 20 files (@4KB) => pass
    Upload 3files (@1.2KB) => pass
    Upload 4 files (@1.2KB) => FAIL!
    Upload 1 file with 4.7MB => FAIL!

    It seems that there's a filesize limit of SOAP Attachment. How can I
    configure it?

    Thanks!

    Mullin


    Mullin Yu Guest

  2. Similar Questions and Discussions

    1. Increae Limit for Attachment Size?
      My original webmaster set up my site www.woodsshop.com with a 600 pixel wide limit, and I can't figure out how to increase the limit. Matter of...
    2. Net::FTP filesize limit
      I have written a script to grab some files via FTP. All is fine for all file sizes when I run it from my development machine (Active Perl) but when...
    3. SOAP Message with attachment is the best solution?
      Hi there. I'd like to know, if anyone knows how should i send a XML file, located in server folder, to a web service. The purpose is to send and...
    4. How to send a DIME attachment with SOAP
      Hi! I am trying SOAP with DIME attachments in web services. The web service sends the file as attachment say "test.doc", and the client has to...
    5. Problem of using apache soap to consume WSE 2.0 soap attachment
      I developed a web service at .NET with WSE 2.0 attachming soap attachment with soap response, and I can write a .NET client app to consume it. ...
  3. #2

    Default Re: WSE SOAP Attachment filesize limit

    have you set the maxRequestLength in <httpRuntime/> of the machine.config?
    it defaults to 4 megs.

    <!--
    httpRuntime Attributes:
    executionTimeout="[seconds]" - time in seconds before request is
    automatically timed out
    maxRequestLength="[KBytes]" - KBytes size of maximum request
    length to accept
    ...

    Thanks
    casey



    "Mullin Yu" <mullin_yu@ctil.com> wrote in message
    news:%23tVGb1YqDHA.1928@TK2MSFTNGP12.phx.gbl...
    > I am using WSE 2.0 to receive SOAP Attachment, and the following are my
    > testing cases.
    >
    > Upload 20 files (@4KB) => pass
    > Upload 3files (@1.2KB) => pass
    > Upload 4 files (@1.2KB) => FAIL!
    > Upload 1 file with 4.7MB => FAIL!
    >
    > It seems that there's a filesize limit of SOAP Attachment. How can I
    > configure it?
    >
    > Thanks!
    >
    > Mullin
    >
    >

    casey chesnut Guest

  4. #3

    Default Re: WSE SOAP Attachment filesize limit

    thanks!

    i got it! : >

    cheers,
    mullin

    "casey chesnut" <casey@MORE_spam_PLEASEbrains-N-brawn.com> wrote in message
    news:e8DCUBZqDHA.2776@tk2msftngp13.phx.gbl...
    > have you set the maxRequestLength in <httpRuntime/> of the machine.config?
    > it defaults to 4 megs.
    >
    > <!--
    > httpRuntime Attributes:
    > executionTimeout="[seconds]" - time in seconds before request is
    > automatically timed out
    > maxRequestLength="[KBytes]" - KBytes size of maximum request
    > length to accept
    > ...
    >
    > Thanks
    > casey
    >
    >
    >
    > "Mullin Yu" <mullin_yu@ctil.com> wrote in message
    > news:%23tVGb1YqDHA.1928@TK2MSFTNGP12.phx.gbl...
    > > I am using WSE 2.0 to receive SOAP Attachment, and the following are my
    > > testing cases.
    > >
    > > Upload 20 files (@4KB) => pass
    > > Upload 3files (@1.2KB) => pass
    > > Upload 4 files (@1.2KB) => FAIL!
    > > Upload 1 file with 4.7MB => FAIL!
    > >
    > > It seems that there's a filesize limit of SOAP Attachment. How can I
    > > configure it?
    > >
    > > Thanks!
    > >
    > > Mullin
    > >
    > >
    >
    >

    Mullin Yu 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