ngageoint / geoq

Django web application to collect geospatial features and manage feature collection among groups of users
MIT License
704 stars 133 forks source link

Integration with the NGA RFI-Generator #283

Open rikim1228 opened 10 years ago

rikim1228 commented 10 years ago

I followed the instructions to modify the application.conf file to tie RFI-Generator to a GeoQ instance with no luck. Are these two capabilities supposed to be installed on the same box?

rikim1228 commented 10 years ago

I've fixed the issue preventing RFI-Generator from connecting to GeoQ but am now running into an issue when POSTing. The code in the RFI-Generator is attempting to create a GeoQ project and constructs the request object in this manner:

WS.WSRequest request = WS.url(url + "/projects.json"); // url = http://localhost:8000 request.authenticate(user, pass); request.setHeader("Content-type", "application/json"); request.body(body);

Is that URL string still valid?