<div dir="ltr">Hello guys:<br>My name is Mariano and bothering you because I need some guidance; I did a research but I didn't find any solution.<br>I'm using pyWPS 3.2.1 (on Ubuntu 12.04.5 LTS) together with Owslib 0.8.9 as a client, and I'm experiencing some issues when I try to get the response's xml after pyWPS executes a process; I'm not pretty sure if the problem is Owslib related but if someone knows something about it, please, let me know.<br><br>The process works as it is expected and I can get the output's object that pyWPS returns (WPSExecution, an owslib's object) if I send the request omitting the output parameter; however, when I explicitly include that parameter to get xml generated, the xml is created but without the output.<br><br>Take a look, please:<br><br># Setting service and some values<br>wps = WebProcessingService('<a href="http://myDomain/wps">http://myDomain/wps</a>', verbose=True)<br>input_parameters = [<br>    ("exe_uuid_input", "uuid"), ("pla_uuid_input", "uuid2"),<br>    ("literal_input", "foobar"), ("sleep", "2"),<br>    ("sender_address_input", "<a href="mailto:info@somewhere.com.ar">info@somewhere.com.ar</a>"),<br>    ("sender_psw_input", "Some input"),<br>    ("mail_to_input", "<a href="mailto:info@somewhere.com.ar">info@somewhere.com.ar</a>")<br>]<br><br># Execution...<br># Accordingly to owslib documentation, "output" is optional identifier which makes owslib to return the process output as a hyperlink reference... that means that an xml is generated.<br><br>execution = wps.execute(<br>    "proceso_test_2015122_version_test_2015122_4f5a18d2-dfee-4167-a427-ab2e5d7d0bea",<br>    input_parameters,<br>    output="proceso_test_2015122_version_test_2015122_4f5a18d2-dfee-4167-a427-ab2e5d7d0bea"<br>)<br><br>Here is the xml created:<br><br><?xml version="1.0" encoding="utf-8"?><br><wps:ExecuteResponse xmlns:wps="<a href="http://www.opengis.net/wps/1.0.0">http://www.opengis.net/wps/1.0.0</a>" xmlns:ows="<a href="http://www.opengis.net/ows/1.1">http://www.opengis.net/ows/1.1</a>" xmlns:xlink="<a href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</a>" xmlns:xsi="<a href="http://www.w3.org/2001/XMLSchema-instance">http://www.w3.org/2001/XMLSchema-instance</a>" xsi:schemaLocation="<a href="http://www.opengis.net/wps/1.0.0">http://www.opengis.net/wps/1.0.0</a> <a href="http://schemas.opengis.net/wps/1.0.0/wpsExecute_response.xsd">http://schemas.opengis.net/wps/1.0.0/wpsExecute_response.xsd</a>" service="WPS" version="1.0.0" xml:lang="en-CA" serviceInstance="?service=WPS&amp;request=GetCapabilities&amp;version=1.0.0" statusLocation="<a href="http://myDomain/wps/outputs/pywps-145199989796.xml">http://myDomain/wps/outputs/pywps-145199989796.xml</a>"><br>    <wps:Process wps:processVersion="Version Test 20151221122542.106532"><br>        <ows:Identifier>proceso_test_2015122_version_test_2015122_4f5a18d2-dfee-4167-a427-ab2e5d7d0bea</ows:Identifier><br>        <ows:Title>Process: dddee3ad-ebf5-42f0-96b9-48011067ef9f - Version: Version Test 20151221122542.106532</ows:Title><br>        <ows:Abstract><![CDATA[<br>User: 1<br>Process: dddee3ad-ebf5-42f0-96b9-48011067ef9f<br>Version: Prueba de eventos y planner]]></ows:Abstract><br>    </wps:Process><br>    <wps:Status creationTime="2016-01-05T10:18:17Z"><br>        <wps:ProcessAccepted>Process proceso_test_2015122_version_test_2015122_4f5a18d2-dfee-4167-a427-ab2e5d7d0bea accepted</wps:ProcessAccepted><br>    </wps:Status><br></wps:ExecuteResponse><br>    <br>As you can see, there is no output and the status is ProcessAccepted, when the owslib's object -if I omit the output parameters- confirms the success of the operation.<br><br>That's all guys.<br>Thanks in advance for your time and for any comment; let me know if you need more information.<br><br>Reagrds,<br>Mariano<br clear="all"><br></div>