Following is the code for the first model I created, which works fine:
registerModel=new registerModel();
registerModel.contact=[]
registerModel.contact.push(/* add 5 contacts */)
socket.invoke("create", registerModel);
However, the following code, where I add 10 contacts instead of 5, does not work:
registerModel.contact.push(/*add 10 contacts */)
socket.invoke("create", registerModel)
I get a 404 Not Found error.
Furthermore, if I instead add 200 contacts, it then results in Long Url error.