I have the geometry service in the proxy.config
<serverUrl url="http://xyz/rest/services/Utilities/Geometry/GeometryServer/"
matchAll="true"/>
I have the proxy setup in the config.json of the app:
"wabVersion": "2.8",
"isTemplateApp": true,
"isWebTier": false,
"httpProxy": {
"useProxy": true,
"alwaysUseProxy": false,
"url": "http://xyz/DotNet/proxy.ashx",
"rules": []
},
However the geometryservice gives me the 500 error
geometryService.intersect(firstgraphics, secondgraphics[0], this.theoutput);
Error:
http://xyz/DotNet/proxy.ashx?http://xyz/rest/services/Utilities/Geometry/GeometryServer/intersect 500 (Internal Server Error)
What is left to be done?
THanks.