How could I change the port of target host?How to specify port name in php WSDLHow can I prevent SQL injection in PHP?How do I get PHP errors to display?How do I get a YouTube video thumbnail from the YouTube API?not a valid AllXsd valueHow do you parse and process HTML/XML in PHP?How do I check if a string contains a specific word?How to pass “Null” (a real surname!) to a SOAP web service in ActionScript 3?How does PHP 'foreach' actually work?Php SoapClient verify_peer=>true fails with ca-signed certificatePHP SOAP doesn't work but wget works

How to back up a running remote server?

Can fracking help reduce CO2?

Packing rectangles: Does rotation ever help?

Unexpected email from Yorkshire Bank

When India mathematicians did know Euclid's Elements?

What is the range of this combined function?

Pulling the rope with one hand is as heavy as with two hands?

Any examples of headwear for races with animal ears?

Where does the labelling of extrinsic semiconductors as "n" and "p" come from?

Were there two appearances of Stan Lee?

How to verbalise code in Mathematica?

Advice on laptop battery life

Will tsunami waves travel forever if there was no land?

Is it possible to Ready a spell to be cast just before the start of your next turn by having the trigger be an ally's attack?

Phrase for the opposite of "foolproof"

Help, my Death Star suffers from Kessler syndrome!

Single Colour Mastermind Problem

Options leqno, reqno for documentclass or exist another option?

Why does processed meat contain preservatives, while canned fish needs not?

What is the strongest case that can be made in favour of the UK regaining some control over fishing policy after Brexit?

What does "rf" mean in "rfkill"?

What are the spoon bit of a spoon and fork bit of a fork called?

What word means to make something obsolete?

Past Perfect Tense



How could I change the port of target host?


How to specify port name in php WSDLHow can I prevent SQL injection in PHP?How do I get PHP errors to display?How do I get a YouTube video thumbnail from the YouTube API?not a valid AllXsd valueHow do you parse and process HTML/XML in PHP?How do I check if a string contains a specific word?How to pass “Null” (a real surname!) to a SOAP web service in ActionScript 3?How does PHP 'foreach' actually work?Php SoapClient verify_peer=>true fails with ca-signed certificatePHP SOAP doesn't work but wget works






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I need send a request using soapclient but I'm not able to change the port of target, if i try to send it addreses like "192.168.1.1:60000" I got the error "Error Fetching http headers".



my code:



 $this->client = new SoapClient($wsdlPath, array(
'trace' => 1,
'exceptions' => true,
'ssl' => array(
'verify_peer' => false,
'allow_self_signed' => true
),
'soap_version' => SOAP_1_2
));

$this->client->__setLocation($deviceAddr);

$this->client->__setSoapHeaders($this->soapClientWSSecurityHeader($user,$pass));









share|improve this question

















  • 1





    unless you control the target machine you cannot simply elect to send to a different port and hope for it to work

    – RamRaider
    Mar 22 at 19:20












  • I think it's not clear enough for you @RamRaider, the port that I want to send the soap request is listenning, my problem is i don't know exaclty how to change de default port in soap client to send it for a diferent port than the default port (80).

    – luno
    Mar 22 at 19:25












  • stackoverflow.com/questions/12355366/… might be of interest?

    – RamRaider
    Mar 22 at 19:27











  • You just put it in the url http://example.com:1580 et.

    – ArtisticPhoenix
    Mar 22 at 19:32











  • @ArtisticPhoenix when i tryed this i got an error ... "Error Fetching http headers"

    – luno
    Mar 22 at 19:39

















0















I need send a request using soapclient but I'm not able to change the port of target, if i try to send it addreses like "192.168.1.1:60000" I got the error "Error Fetching http headers".



my code:



 $this->client = new SoapClient($wsdlPath, array(
'trace' => 1,
'exceptions' => true,
'ssl' => array(
'verify_peer' => false,
'allow_self_signed' => true
),
'soap_version' => SOAP_1_2
));

$this->client->__setLocation($deviceAddr);

$this->client->__setSoapHeaders($this->soapClientWSSecurityHeader($user,$pass));









share|improve this question

















  • 1





    unless you control the target machine you cannot simply elect to send to a different port and hope for it to work

    – RamRaider
    Mar 22 at 19:20












  • I think it's not clear enough for you @RamRaider, the port that I want to send the soap request is listenning, my problem is i don't know exaclty how to change de default port in soap client to send it for a diferent port than the default port (80).

    – luno
    Mar 22 at 19:25












  • stackoverflow.com/questions/12355366/… might be of interest?

    – RamRaider
    Mar 22 at 19:27











  • You just put it in the url http://example.com:1580 et.

    – ArtisticPhoenix
    Mar 22 at 19:32











  • @ArtisticPhoenix when i tryed this i got an error ... "Error Fetching http headers"

    – luno
    Mar 22 at 19:39













0












0








0








I need send a request using soapclient but I'm not able to change the port of target, if i try to send it addreses like "192.168.1.1:60000" I got the error "Error Fetching http headers".



my code:



 $this->client = new SoapClient($wsdlPath, array(
'trace' => 1,
'exceptions' => true,
'ssl' => array(
'verify_peer' => false,
'allow_self_signed' => true
),
'soap_version' => SOAP_1_2
));

$this->client->__setLocation($deviceAddr);

$this->client->__setSoapHeaders($this->soapClientWSSecurityHeader($user,$pass));









share|improve this question














I need send a request using soapclient but I'm not able to change the port of target, if i try to send it addreses like "192.168.1.1:60000" I got the error "Error Fetching http headers".



my code:



 $this->client = new SoapClient($wsdlPath, array(
'trace' => 1,
'exceptions' => true,
'ssl' => array(
'verify_peer' => false,
'allow_self_signed' => true
),
'soap_version' => SOAP_1_2
));

$this->client->__setLocation($deviceAddr);

$this->client->__setSoapHeaders($this->soapClientWSSecurityHeader($user,$pass));






php soap






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 22 at 19:19









lunoluno

111




111







  • 1





    unless you control the target machine you cannot simply elect to send to a different port and hope for it to work

    – RamRaider
    Mar 22 at 19:20












  • I think it's not clear enough for you @RamRaider, the port that I want to send the soap request is listenning, my problem is i don't know exaclty how to change de default port in soap client to send it for a diferent port than the default port (80).

    – luno
    Mar 22 at 19:25












  • stackoverflow.com/questions/12355366/… might be of interest?

    – RamRaider
    Mar 22 at 19:27











  • You just put it in the url http://example.com:1580 et.

    – ArtisticPhoenix
    Mar 22 at 19:32











  • @ArtisticPhoenix when i tryed this i got an error ... "Error Fetching http headers"

    – luno
    Mar 22 at 19:39












  • 1





    unless you control the target machine you cannot simply elect to send to a different port and hope for it to work

    – RamRaider
    Mar 22 at 19:20












  • I think it's not clear enough for you @RamRaider, the port that I want to send the soap request is listenning, my problem is i don't know exaclty how to change de default port in soap client to send it for a diferent port than the default port (80).

    – luno
    Mar 22 at 19:25












  • stackoverflow.com/questions/12355366/… might be of interest?

    – RamRaider
    Mar 22 at 19:27











  • You just put it in the url http://example.com:1580 et.

    – ArtisticPhoenix
    Mar 22 at 19:32











  • @ArtisticPhoenix when i tryed this i got an error ... "Error Fetching http headers"

    – luno
    Mar 22 at 19:39







1




1





unless you control the target machine you cannot simply elect to send to a different port and hope for it to work

– RamRaider
Mar 22 at 19:20






unless you control the target machine you cannot simply elect to send to a different port and hope for it to work

– RamRaider
Mar 22 at 19:20














I think it's not clear enough for you @RamRaider, the port that I want to send the soap request is listenning, my problem is i don't know exaclty how to change de default port in soap client to send it for a diferent port than the default port (80).

– luno
Mar 22 at 19:25






I think it's not clear enough for you @RamRaider, the port that I want to send the soap request is listenning, my problem is i don't know exaclty how to change de default port in soap client to send it for a diferent port than the default port (80).

– luno
Mar 22 at 19:25














stackoverflow.com/questions/12355366/… might be of interest?

– RamRaider
Mar 22 at 19:27





stackoverflow.com/questions/12355366/… might be of interest?

– RamRaider
Mar 22 at 19:27













You just put it in the url http://example.com:1580 et.

– ArtisticPhoenix
Mar 22 at 19:32





You just put it in the url http://example.com:1580 et.

– ArtisticPhoenix
Mar 22 at 19:32













@ArtisticPhoenix when i tryed this i got an error ... "Error Fetching http headers"

– luno
Mar 22 at 19:39





@ArtisticPhoenix when i tryed this i got an error ... "Error Fetching http headers"

– luno
Mar 22 at 19:39












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55306479%2fhow-could-i-change-the-port-of-target-host%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55306479%2fhow-could-i-change-the-port-of-target-host%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript