And another reason may be that there's a mismatch in the payload (set of arguments) so it's failing to match by overloading.
One thing you might want to do is to use the swagger interface that we introduced in v1.11.0. My suggestion is that you run the current simpleapp archetype, then copy over your domain classes, tests, and merge over any app-specific config. When you browse to http://localhost:8080 you'll then have a link to the swagger UI, which should substantially help you with these debugging issues. See [1] for a screencast of this. HTH Dan [1] https://www.youtube.com/watch?v=lkZxRSS0Zwg Hi Arturo. The error message seems to point to invoking an action that has either be misspelled, it's hidden or has been annotated with @Programmatic (and excluded from the meta model despite being a public method). Verify also you're invoking it over the proper service or domain entity instance. HTH, Oscar > El 27 abr 2016, a las 23:59, Arturo Ulises Castañeda Estrada < [email protected]> escribió: > > Hi dan, I get the next error in some WS with any parameter that I introduce. I can see the WS in the wicket but in my browser get the same error. > > > what mean this? > > > Response Body > > no content > > Response Code > > 404 > > Response Headers > > { > "date": "Wed, 27 Apr 2016 21:49:43 GMT", > "server": "Jetty(9.3.5.v20151012)", > "content-length": "0", > "warning": "199 RestfulObjects action 'findFriendsByUserSubscriptionId' either does not exist or is not visible", > "content-type": "application/json" > } >
