Hi,
Using JDeveloper 12.1.3.0
I'm creating a Rest WebService using EJB.
When I test my service it works fine but when I added to the client, when finish loading it returns me this error

The method that I have created in the service needs two arguments, BigDecimal and String
@GET
@Produces("application/xml")
@Path("/{key}/{name}")
public UsersList checkUser(@PathParam("key") BigDecimal key, @PathParam("name") String name) {
UsersList listOfUsers = new UsersList();
listOfUsers.setUsersList(SessionBean.getUsersCheck(key, name));
return listOfUsers;
}
but in my DataControl, in the client it appears like this

I have created all over again the Client and it always appear this way.
Does the link that I define in the service is wrong /{key}/{name} or in the datacontrol /##key##/##name## ??
Thanks