aboutsummaryrefslogtreecommitdiffstats
path: root/gsxws/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'gsxws/core.py')
-rw-r--r--gsxws/core.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/gsxws/core.py b/gsxws/core.py
index 79b5687..0940d75 100644
--- a/gsxws/core.py
+++ b/gsxws/core.py
@@ -39,13 +39,13 @@ import xml.etree.ElementTree as ET
from datetime import date, time, datetime, timedelta
-VERSION = "0.9"
+VERSION = "0.91"
-GSX_ENV = "it"
-GSX_LANG = "en"
-GSX_REGION = "emea"
-GSX_LOCALE = "en_XXX"
-GSX_TIMEOUT = 30
+GSX_ENV = "it" # it, ut or pr
+GSX_LANG = "en"
+GSX_REGION = "emea"
+GSX_LOCALE = "en_XXX"
+GSX_TIMEOUT = 30 # session timeout (expiration) in minutes
GSX_SESSION = None
@@ -236,10 +236,10 @@ class GsxCache(object):
class GsxRequest(object):
"Creates and submits the SOAP envelope"
- env = None
- obj = None # The GsxObject being submitted
- data = None # The GsxObject payload in XML format
- body = None # The Body part of the SOAP envelope
+ env = None
+ obj = None # The GsxObject being submitted
+ data = None # The GsxObject payload in XML format
+ body = None # The Body part of the SOAP envelope
_request = ""
_response = ""