Skip to content

Commit

Permalink
Switched GP service support to Pro-based only
Browse files Browse the repository at this point in the history
Formats are too different between Map and Pro to handle easily
  • Loading branch information
DavidWhittingham committed Apr 3, 2024
1 parent af12e49 commit c2f5fb7
Show file tree
Hide file tree
Showing 5 changed files with 378 additions and 366 deletions.
2 changes: 1 addition & 1 deletion agsconfig/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "0.2.11"
__version__ = "0.3.0"
__author__ = "David Whittingham; Chris Blanchfield; Gary Bagnall"
__copyright__ = "Copyright (C) 2019-2023 David Whittingham"
17 changes: 16 additions & 1 deletion agsconfig/services/geoprocessing_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ def wps_server(self):
"sddraft": {
"paths": [
{
"path": "./Configurations/SVCConfiguration/Definition/Info/PropertyArray/PropertySetProperty[Key='WebCapabilities']/Value"
"path": "./Configurations/SVCConfiguration/Definition/ConfigurationProperties/PropertyArray/PropertySetProperty[Key='webCapabilities']/Value"
},
{
"path": "./Configurations/SVCConfiguration/Definition/Props/PropertyArray/PropertySetProperty[Key='webCapabilities']/Value"
}
],
"conversions": [{
Expand Down Expand Up @@ -91,6 +94,9 @@ def wps_server(self):
"paths": [
{
"path": "./Configurations/SVCConfiguration/Definition/ConfigurationProperties/PropertyArray/PropertySetProperty[Key='executionType']/Value"
},
{
"path": "./Configurations/SVCConfiguration/Definition/Props/PropertyArray/PropertySetProperty[Key='executionType']/Value"
}
],
"conversions": [{
Expand Down Expand Up @@ -118,6 +124,9 @@ def wps_server(self):
"paths": [
{
"path": "./Configurations/SVCConfiguration/Definition/ConfigurationProperties/PropertyArray/PropertySetProperty[Key='maximumRecords']/Value"
},
{
"path": "./Configurations/SVCConfiguration/Definition/Props/PropertyArray/PropertySetProperty[Key='maximumRecords']/Value"
}
]
}
Expand All @@ -144,6 +153,9 @@ def wps_server(self):
"paths": [
{
"path": "./Configurations/SVCConfiguration/Definition/ConfigurationProperties/PropertyArray/PropertySetProperty[Key='resultMapServer']/Value"
},
{
"path": "./Configurations/SVCConfiguration/Definition/Props/PropertyArray/PropertySetProperty[Key='resultMapServer']/Value"
}
]
}
Expand Down Expand Up @@ -172,6 +184,9 @@ def wps_server(self):
"paths": [
{
"path": "./Configurations/SVCConfiguration/Definition/ConfigurationProperties/PropertyArray/PropertySetProperty[Key='showMessages']/Value"
},
{
"path": "./Configurations/SVCConfiguration/Definition/Props/PropertyArray/PropertySetProperty[Key='showMessages']/Value"
}
]
}
Expand Down
Loading

0 comments on commit c2f5fb7

Please sign in to comment.