- Timestamp:
- Mar 8, 2011, 11:20:31 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/query/AdvancedQueryController.groovy
r1526 r1596 333 333 def callUrl = module.url + '/rest/getQueryableFields' 334 334 try { 335 def json = moduleCommunicationService.callModule RestMethodJSON( module.url, callUrl );335 def json = moduleCommunicationService.callModuleMethod( module.url, callUrl ); 336 336 def moduleFields = []; 337 337 entitiesToSearchFor.each { entity -> … … 636 636 } catch( Exception e ) { 637 637 // Exception is thrown when the call to the module fails. No problems though. 638 log.error "Error while fetching possible actions from " + module.name + ": " + e.getMessage() 638 //log.error "Error while fetching possible actions from " + module.name + ": " + e.getMessage() 639 e.printStackTrace() 640 throw e 639 641 } 640 642 }
Note: See TracChangeset
for help on using the changeset viewer.