main
Click here for a complete list of operations.
GetReport
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /main.asmx HTTP/1.1 Host: ws.presspower.pt Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://tempuri.org/GetReport" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body /> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body /> </soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /main.asmx HTTP/1.1
Host: ws.presspower.pt
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetReport xmlns="http://tempuri.org/">
<type>int</type>
<userID>string</userID>
<themes>string</themes>
<sources>string</sources>
<newsType>string</newsType>
<favorability>string</favorability>
<startDate>string</startDate>
<endDate>string</endDate>
<content>string</content>
<alcance>string</alcance>
</GetReport>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetReportResponse xmlns="http://tempuri.org/">
<GetReportResult>
<type>int</type>
<resultCode>int</resultCode>
<resultMessage>string</resultMessage>
<graphs>
<ppGraph>
<type>int</type>
<labels xsi:nil="true" />
<datasets />
</ppGraph>
<ppGraph>
<type>int</type>
<labels xsi:nil="true" />
<datasets xsi:nil="true" />
</ppGraph>
</graphs>
</GetReportResult>
</GetReportResponse>
</soap12:Body>
</soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /main.asmx/GetReport?type=string&userID=string&themes=string&sources=string&newsType=string&favorability=string&startDate=string&endDate=string&content=string&alcance=string HTTP/1.1 Host: ws.presspower.pt
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ppReport xmlns="http://tempuri.org/">
<type>int</type>
<resultCode>int</resultCode>
<resultMessage>string</resultMessage>
<graphs>
<ppGraph>
<type>int</type>
<labels>
<string>string</string>
<string>string</string>
</labels>
<datasets>
<ppDataSet d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
<ppDataSet d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
</datasets>
</ppGraph>
<ppGraph>
<type>int</type>
<labels>
<string>string</string>
<string>string</string>
</labels>
<datasets>
<ppDataSet d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
<ppDataSet d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
</datasets>
</ppGraph>
</graphs>
</ppReport>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /main.asmx/GetReport HTTP/1.1 Host: ws.presspower.pt Content-Type: application/x-www-form-urlencoded Content-Length: length type=string&userID=string&themes=string&sources=string&newsType=string&favorability=string&startDate=string&endDate=string&content=string&alcance=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ppReport xmlns="http://tempuri.org/">
<type>int</type>
<resultCode>int</resultCode>
<resultMessage>string</resultMessage>
<graphs>
<ppGraph>
<type>int</type>
<labels>
<string>string</string>
<string>string</string>
</labels>
<datasets>
<ppDataSet d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
<ppDataSet d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
</datasets>
</ppGraph>
<ppGraph>
<type>int</type>
<labels>
<string>string</string>
<string>string</string>
</labels>
<datasets>
<ppDataSet d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
<ppDataSet d5p1:nil="true" xmlns:d5p1="http://www.w3.org/2001/XMLSchema-instance" />
</datasets>
</ppGraph>
</graphs>
</ppReport>