Splunk Dev

Empty response in Python SDK example a.py ?

smeier
Path Finder

I am working through the Python SDK and getting this error on the first script.

Traceback (most recent call last):
  File "C:\Users\.\Downloads\splunk-sdk-python-1.6.0\examples\abc\a.py", line 49, in <module>
    sessionKey = ElementTree.XML(body).findtext("./sessionKey")
  File "C:\Python27\lib\xml\etree\ElementTree.py", line 1312, in XML
    return parser.close()
  File "C:\Python27\lib\xml\etree\ElementTree.py", line 1665, in close
    self._raiseerror(v)
  File "C:\Python27\lib\xml\etree\ElementTree.py", line 1517, in _raiseerror
    raise err
ParseError: no element found: line 1, column 0

I tried printing the contents of 'body' and it is empty.

1 Solution

smeier
Path Finder

It looks like the connection was being closed before the response was being read..

        try:
            connection.request("POST", "/services/auth/login", body, headers)
            response = connection.getresponse()
        finally:
            **connection.close()**
        if response.status != 200:
            raise Exception, "%d (%s)" % (response.status, response.reason)
        **body = response.read()**
        sessionKey = ElementTree.XML(body).findtext("./sessionKey")

If you fix it up a little, it will work..

        try:
            connection.request("POST", "/services/auth/login", body, headers)
            response = connection.getresponse()
        finally:
            **#connection.close()**
            print ''
        if response.status != 200:
            raise Exception, "%d (%s)" % (response.status, response.reason)
        **body = response.read()**
        **connection.close()**
        sessionKey = ElementTree.XML(body).findtext("./sessionKey")

I'm wondering if anyone else has ever used this example 😉

View solution in original post

smeier
Path Finder

It looks like the connection was being closed before the response was being read..

        try:
            connection.request("POST", "/services/auth/login", body, headers)
            response = connection.getresponse()
        finally:
            **connection.close()**
        if response.status != 200:
            raise Exception, "%d (%s)" % (response.status, response.reason)
        **body = response.read()**
        sessionKey = ElementTree.XML(body).findtext("./sessionKey")

If you fix it up a little, it will work..

        try:
            connection.request("POST", "/services/auth/login", body, headers)
            response = connection.getresponse()
        finally:
            **#connection.close()**
            print ''
        if response.status != 200:
            raise Exception, "%d (%s)" % (response.status, response.reason)
        **body = response.read()**
        **connection.close()**
        sessionKey = ElementTree.XML(body).findtext("./sessionKey")

I'm wondering if anyone else has ever used this example 😉

Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...