PRIdictor supports the web service for developers.
Developers are advised to follow the following structure to use the web service.

- Prediction web service WSDL of protein-binding RNA nucleotides
Sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
Request
POST /Web_service/PRIdictorWS/Service.asmx HTTP/1.1
Host: 165.246.44.34
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/predict_PRI"
<?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>
<predict xmlns="http://tempuri.org/">
<protein_seq>string</protein_seq>
<rna_seq>string</rna_seq>
</predict>
</soap:Body>
</soap:Envelope>
Response
HTTP/1.1 200 OK
Content-Type: application/soap+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://www.w3.org/2003/05/soap-envelope">
<soap:Body>
<predictResponse xmlns="http://tempuri.org/">
<predictResult>
<protein_predict>string</protein_predict>
<proDecVal>
<double>double</double>
<double>double</double>
</proDecVal>
<RNA_predict>string</RNA_predict>
<rnaDecVal>
<double>double</double>
<double>double</double>
</rnaDecVal>
</predictResult>
</predicResponse>
</soap:Body>
</soap:Envelope>
web service return