I called a webservice for fetching items in fullcalendar. The method is never called and firebug gives this error:
*\"POST [http]://localhost:50536/FullCal
That was the mistake: the method had to be "not Shared", and without the "Messagename":
_
_
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