Click here to Skip to main content
15,880,967 members
Please Sign up or sign in to vote.
1.80/5 (2 votes)
I am facing a problem:

When i try to send a small size byte array
XML
byte[] s = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; 

it is easily received and inserted in the database successfully.

But when i try to send a byte array of image, then it throws an exception as below:
Quote:
The request failed with HTTP status 404: Not Found.


it does not show an exception as below:

Quote:
maximum limit exceed
or something like that. what should i do?
Posted
Updated 16-Apr-14 9:13am
v3

1 solution

Here is an example which shows how to configure a Web service to handle the larger amount of data
http://msdn.microsoft.com/en-us/library/aa528822.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900