Reputation: 33
I tried to use a service to out-print text using Typograph by Lebedev. I used code from its example on localhost and it works, but when i try to do the same on a server it fails with 400 code. The server is running on the same local machine with the same apache. I tried to increase settings in http.conf (i tried with very short text): LimitRequestLine 16384 LimitRequestFieldSize 12288
I got the following answer:
""" quest\r\n Date: Mon, 25 Jun 2018 14:50:22 GMT\r\n Server: Apache\r\n Vary: Accept-Encoding\r\n Content-Length: 226\r\n Connection: close\r\n Content-Type: text/html; charset=iso-8859-1\r\n \r\n <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">\n <html><head>\n <title>400 Bad Request</title>\n </head><body>\n <h1>Bad Request</h1>\n <p>Your browser sent a request that this server could not understand.<br />\n """
The code of Class:
class Typograph
{
var $_entityType = 4;
var $_useBr = 1;
var $_useP = 1;
var $_maxNobr = 3;
var $_encoding = 'UTF-8';
var $_quotA = 'laquo raquo';
var $_quotB = 'bdquo ldquo';
public function __construct ($encoding = 'utf-8')
{
$this->_encoding = $encoding;
}
public function htmlEntities()
{
$this->_entityType = 1;
}
public function xmlEntities()
{
$this->_entityType = 2;
}
public function mixedEntities()
{
$this->_entityType = 4;
}
public function noEntities()
{
$this->_entityType = 3;
}
public function br ($value)
{
$this->_useBr = $value ? 1 : 0;
}
public function p ($value)
{
$this->_useP = $value ? 1 : 0;
}
public function nobr ($value)
{
$this->_maxNobr = $value ? $value : 0;
}
public function quotA ($value)
{
$this->_quotA = $value;
}
public function quotB ($value)
{
$this->_quotB = $value;
}
public function processText ($text)
{
$text = str_replace ('&', '&', $text);
$text = str_replace ('<', '<', $text);
$text = str_replace ('>', '>', $text);
$SOAPBody = '<?xml version="1.0" encoding="' . $this->_encoding . '"?>
<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>
<ProcessText xmlns="http://typograf.artlebedev.ru/webservices/">
<text>' . $text . '</text>
<entityType>' . $this->_entityType . '</entityType>
<useBr>' . $this->_useBr . '</useBr>
<useP>' . $this->_useP . '</useP>
<maxNobr>' . $this->_maxNobr . '</maxNobr>
<quotA>' . $this->_quotA . '</quotA>
<quotB>' . $this->_quotB . '</quotB>
</ProcessText>
</soap:Body>
</soap:Envelope>';
$host = 'typograf.artlebedev.ru';
$SOAPRequest = 'POST /webservices/typograf.asmx HTTP/1.1
Host: typograf.artlebedev.ru
Content-Type: text/xml
Content-Length: ' . strlen ($SOAPBody). '
SOAPAction: "http://typograf.artlebedev.ru/webservices/ProcessText"
'.
$SOAPBody;
$remoteTypograf = fsockopen ($host, 80);
fwrite ($remoteTypograf, $SOAPRequest);
$typografResponse = '';
while (!feof ($remoteTypograf))
{
$typografResponse .= fread ($remoteTypograf, 8192);
}
fclose ($remoteTypograf);
$startsAt = strpos ($typografResponse, '<ProcessTextResult>') + 19;
$endsAt = strpos ($typografResponse, '</ProcessTextResult>');
$typografResponse = substr ($typografResponse, $startsAt, $endsAt - $startsAt - 1);
$typografResponse = str_replace ('&', '&', $typografResponse);
$typografResponse = str_replace ('<', '<', $typografResponse);
$typografResponse = str_replace ('>', '>', $typografResponse);
return $typografResponse;
}
}
My call is simple:
$typograph = new App\services\Typograph();
return $typograph->processText('any text');
I tried GET and POST methods and sent Ajax request too with phpstorm.
Could you help me? I could not find something relevant to my problem. I don't understand even what is wrong. Why it works on localhost and don't work on site.dev on the same server.
Upvotes: 1
Views: 376
Reputation: 33
The solution is simple: i just needed to remove spaces.
$SOAPRequest = 'POST /webservices/typograf.asmx HTTP/1.1' . "\n" .
'Host: typograf.artlebedev.ru' . "\n" .
'Content-Type: text/xml' . "\n" .
'Content-Length: ' . strlen ($SOAPBody) . "\n" .
'SOAPAction: "http://typograf.artlebedev.ru/webservices/ProcessText"' . "\n\n" .
$SOAPBody;
Upvotes: 1