Jump to content
  • 0

PHP vs SOAP


Flint
 Share

Question

Решил попробовать расширение SOAP в PHP. Написал простенький WSDL и к нему скрипт, реализующий логику. Все так сказать по мануалу. Соответственно, написал простенького клиента:

<?php 
$params = array('soap_version' => SOAP_1_2,
'encoding'=>'UTF-8',
'compression' => SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP);

$client = new SoapClient("http://test.travelsnotes.com/stockquote.wsdl", $params);
try {
echo "<pre>n";
print($client->getQuote("ibm"));
echo "n</pre>n";
} catch (SoapFault $exception) {
echo $exception;
}
?>

Все проверил на локальном сервере, работает за милую душу. Более того проверил клиента, который с локальной машины обращается к моему же сервису, но уже расположенному на сайте. И получаю ошибку:

SoapFault exception: [HTTP] Could not connect to host in /home2/username/public_html/subdomains/test/client1.php:9

Stack trace:

#0 [internal function]: SoapClient->__doRequest('__call('getQuote', Array)

#2 /home2/username/public_html/subdomains/test/client1.php(9): SoapClient->getQuote('ibm')

#3 {main}

Т.е. получается что сервис функционирует нормально (поэтому его код и не привожу), а вот клиент на локальной машине работает, а на сервере нет.

Что это? особенности настроек хостера? или чтото не так в примере?

p.s. Параметры в массиве $params можно и не задавать, один и тот же глюк.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

попробуем три варианта:

<?php
if(@fsockopen('denton.msk.ru',80)) {echo('fsockopen allow
');
if(@include('http://denton.msk.ru/tmp/useragentcheck.inc.php')) {echo('include allow
');
if(@readfile('http://denton.msk.ru/tmp/useragentcheck.inc.php')) {echo('readfile allow
');
?>

выполнение этого скрипта покажет какие из трех вариантов подключения к ресурсу разрешены хостером

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy