I called a webservice for fetching items in fullcalendar. The method is never called and firebug gives this error:
*\"POST [http]://localhost:50536/FullCal
I recommend you use Fiddler to look at the network traffic and see what's being sent to the service. Then figure out why it's being sent that way.
It seems likely that you really are somehow sending a parameter named "methodname".
I had the same problem and after spending a lot of time realized that the method was marked as protected and not PUBLIC. I made it public and it started working.
That was the mistake: the method had to be "not Shared", and without the "Messagename":
<ScriptMethod(ResponseFormat:=ResponseFormat.Json)> _
<WebMethod()> _
Public Function GetEventosCalendario(ByVal startDate As String, ByVal endDate As String) As String
Try
Return CalendarioMensualDAO.Instance.getEventos(startDate, endDate)
Catch ex As Exception
Throw New Exception("FullCalendar:getEventos: " & ex.Message)
Finally
End Try
End Function