• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Issue not able to receive HTTP request from external partner

Srinivas P

New Pleskian
Hello ,

I have created http URL to receive files over http but it is not working properly. my website running on Apache Linux using plesk server. I am not sure what is the configuration is missing. Can anyone help me in this regards
 
Hello,

The information that you posted gives 0 information.

What method is used to receive the files?
What errors do you get?
How can such "issue" be reproduced?
etc..


Best Regards,
 
Thanks for your response Arashi I am using below code receive HTTP requests from external network.

include_once('include.inc.php');

try {
if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'POST')
$response = AS2Server::handle();
else{
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">' .
'<html><head>' .
'<meta name="description" content="AS2Secure - PHP Lib for AS2 message encoding / decoding: Your EAI partner">' .
'<meta name="copyright" content="AS2Secure - PHP Lib for AS2">' .
'<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">' .
'<title>AS2Secure - PHP Lib for AS2 message encoding / decoding</title>' .
'</head><body>'.
'<h2>AS2Secure - PHP Lib for AS2 message</h2>' .
'&copy; 2010 - <a href="http://www.as2secure.com">AS2Secure</a><br/><br/>' .
'You have performed an HTTP GET on this URL.<br/>' .
'To submit an AS2 message, you must POST the message to this URL.' .
'</body></html>';
}
}
catch(Exception $e){
echo 'Exception : '.$e->getMessage();
throw $e;


In AS2Server.php code will be like this
 
Can we chat on skype about this issue. If you can help in this regard then that would be great. my skype id : psv_bec
 
Back
Top