I'm currently using asp.net web api for the first time and having problems with 404
s being returned when trying to post to a particular method.
The api works fine but when one of the parameters reaches a certain length a 404
is returned.
The parameter in question is only around 2000 characters in length.
This is the signature for the api method:
public Boolean Add(String Source, Int32 CreatedByID, String CreatedBy,
String Header, String Body, Boolean IsLive, Boolean IsNotification)
Any ideas what I'm doing wrong? I'm calling my api with angular if that makes any difference.