Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The Maximum URI length of 2083 was exceeded

Tags:

silverlight

I have created one Silverlight application. In that I have taken one entity framework model at server side, I have a no of clients list at client side and I want to pass that list to server side when I tried to pass approx 15 to 20 clients it will give me correct out put but when I tried to pass more than it it will give me error like:

The maximum URI length of 2083 was exceeded

like image 888
Dhaval Patel Avatar asked Sep 24 '12 11:09

Dhaval Patel


1 Answers

Try using the POST method instead, where the URI length is not important.

[Query(HasSideEffects=true)] 
like image 186
Paul Collingwood Avatar answered Sep 29 '22 14:09

Paul Collingwood