I'm trying to send a JSON request to the RestHandler and I get this error:
Code:
java.lang.ClassNotFoundException: com.isomorphic.js.parser.JSParser
at com.isomorphic.js.JSTranslater.fromJS(JSTranslater.java:1662)
at com.isomorphic.js.JSTranslater.fromJS(JSTranslater.java:1646)
at com.isomorphic.rpc.RestRequestParser.parseRequest(RestRequestParser.java:206)
at com.isomorphic.rpc.RPCManager.<init>(RPCManager.java:286)
at com.isomorphic.servlet.RESTHandler.processRequest(RESTHandler.java:307)
at com.isomorphic.servlet.RESTHandler.doPost(RESTHandler.java:259)
So it seems to me that it is still needed that jar.
I use smartgwtpower-3.1-p20140110 and the isc_interfaces.properties contains:
# IJSParser
interfaces.IJSParser.implementer: com.isomorphic.js.parser.JSParser
interfaces.IJSParser.module: isomorphic_js_parser
Comment