• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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