Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6552815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:30:24+00:00 2026-05-25T12:30:24+00:00

I have to a web services method called uploadFile.the method getting a parameter as

  • 0

I have to a web services method called uploadFile.the method getting a parameter as base64str and record as a file into the specified address it.
But,I have a problem.That method doesn’t allow to upload more than 350 KB file.Otherwise,I can upload less than 300 KB file e.g zip, jpg, txt. Also,
When I attempt to upload more than 350 KB file,a process working continually on server.

Process:

Image Name : w3wp.exe, UserName : ASP.Net v4.0, CPU : 50, Description : IIS Worker Process

Sometimes server cpu goes to 100%

Code:

  * encodedFile = Base64Str as format

    string postString = string.Format("userName={0}&userVendor={1}&vendorKey={2}&base64FileStr={3}&guid={4}&fileName={5}",                                 "kadi", "şifre", "key", encodedFile, guid, strFilename);


                string localHttpPostUrl = userGatewayAddress + "uploadFile";

                ASCIIEncoding encoding = new ASCIIEncoding();

                Stream newStream = null;

                HttpWebResponse response = null;

                Stream streamResponse = null;

                StreamReader streamRead = null;


               try

                {

                    HttpWebRequest request = (HttpWebRequest)WebRequest.Create(localHttpPostUrl);

                    request.ContentType = "application/x-www-form-urlencoded";

                    request.Method = "POST";



                    byte[] buffer = Encoding.UTF8.GetBytes(postString);

                    request.ContentLength = buffer.Length;


                    newStream = request.GetRequestStream();

                    newStream.Write(buffer, 0, buffer.Length);

                    newStream.Close();


                    response = (HttpWebResponse)request.GetResponse();

                    streamResponse = response.GetResponseStream();

                    streamRead = new StreamReader(streamResponse);


                    Char[] readBuffer = new Char[256];

                    ret = string.Empty;

                    int totalCharCount = 0; 

                    int count = streamRead.Read(readBuffer, 0, 256);

                    while (count > 0)

                    {

                        totalCharCount += count;

                        ret += new String(readBuffer);

                        count = streamRead.Read(readBuffer, 0, 256);

                    }

                    ret = ret.Substring(0, totalCharCount);


                    return ret;

                }

                catch (Exception x)

                {

                    return x.Message;

                }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T12:30:24+00:00Added an answer on May 25, 2026 at 12:30 pm
    <system.web>
       <!-- 100 KB Max POST size -->
       <httpRuntime maxRequestLength="100"/>
    </system.web>
    

    http://support.microsoft.com/kb/832878

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I call, the service's method, I have Web Service Exception happening which I
I have a web service method where I would like to throw some custom
I have a web service method in which I create a particular type of
If I have a web service method, e.g. [WebMethod] [XmlInclude(typeof(SportsCar)), XmlInclude(typeof(FamilyCar))] public Car[] GetCars()
I do have something more specific in mind, however: Each web service method needs
I have a Web Service with Just one Web Method that returns a boolean
I have a web service (ASMX) and in it, a web method that does
Say I have an ASMX web service, MyService. The service has a method, MyMethod.
Some existing web services I consume have methods that look something like this: List<Employee>
I have a method in my web service which returns a DataView, I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.