RestServices doesnt work with Mendix 7

2
Converted a project to Mendix 7, but when compiling I get an error on the RestServices module from the App Store. Do others have the same problem?  
asked
3 answers
2

I am not using the Rest module, but this error looks very like the errors that you get with the AdvancedGoogleMaps module - referring to JSONObject etc.  You can either wait for an updated version of the module, or update the java yourself.  You need to search for entries (in the javasource/<module> directory files) like:

import org.json.JSONArray;
import org.json.JSONObject;


and replace them with

import com.mendix.thirdparty.org.json.JSONArray;
import com.mendix.thirdparty.org.json.JSONObject;

 

answered
1

I uploaded a new version in App Store. It also addresses some compile errors due to API changes.

answered
0

'_' Used as identifier can sometimes be solved with project/clean deployment directory

answered