Quantcast
Channel: Microsoft Dynamics NAV
Viewing all articles
Browse latest Browse all 64865

Forum Post: connecting nav web services from php

$
0
0

Hi all,

I am trying to connect the Nav Web Services in Php (followed by this Blog).

but it’s returning an error: SOAP-ERROR: Parsing WSDL: Couldn’t load from ‘http://localhost:7047/DynamicsNAVPMS/WS/SystemService’ : Start tag expected, ‘<' not found.

my php code is: //ntlmuserid.php

//ntlmstream.php

path = $path;         $this->mode = $mode;         $this->options = $options;         $this->opened_path = $opened_path;         $this->createBuffer($path);         return true;     }     /**      * Close the stream      *      */     public function stream_close() {         curl_close($this->ch);     }     /**      * Read the stream      *      * @param int $count number of bytes to read      * @return content from pos to count      */     public function stream_read($count) {         if(strlen($this->buffer) == 0) {             return false;         }         $read = substr($this->buffer,$this->pos, $count);         $this->pos += $count;         return $read;     }     /**      * write the stream      *      * @param int $count number of bytes to read      * @return content from pos to count      */     public function stream_write($data) {         if(strlen($this->buffer) == 0) {             return false;         }         return true;     }     /**      *      * @return true if eof else false      */     public function stream_eof() {         return ($this->pos > strlen($this->buffer));     }     /**      * @return int the position of the current read pointer      */     public function stream_tell() {         return $this->pos;     }     /**      * Flush stream data      */     public function stream_flush() {         $this->buffer = null;         $this->pos = null;     }     /**      * Stat the file, return only the size of the buffer      *      * @return array stat information      */     public function stream_stat() {         $this->createBuffer($this->path);         $stat = array( ‘size’ => strlen($this->buffer),         );         return $stat;     }     /**      * Stat the url, return only the size of the buffer      *      * @return array stat information      */     public function url_stat($path, $flags) {         $this->createBuffer($path);         $stat = array( ‘size’ => strlen($this->buffer),         );         return $stat;     }     /**      * Create the buffer by requesting the url through cURL      *      * @param unknown_type $path      */     private function createBuffer($path) {         if($this->buffer) {             return;         }         $this->ch = curl_init($path);         curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true);         curl_setopt($this->ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);         curl_setopt($this->ch, CURLOPT_HTTPAUTH, CURLAUTH_NTLM);         curl_setopt($this->ch, CURLOPT_USERPWD, USERPWD);         $this->buffer = curl_exec($this->ch);         $this->pos = 0;     } }

?>

//ntlmsoapclient.php

__last_request_headers = $headers;         $ch = curl_init($location);         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);         curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);         curl_setopt($ch, CURLOPT_POST, true );         curl_setopt($ch, CURLOPT_POSTFIELDS, $request);        curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);         curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_NTLM);         curl_setopt($ch, CURLOPT_USERPWD, USERPWD);         $response = curl_exec($ch);         return $response;     }

    function __getLastRequestHeaders() {         return implode(“\n”, $this->__last_request_headers).”\n”;     } }

?>

//client.php

Companies(); $companies = $result->return_value; echo “Companies:”; if (is_array($companies)) {   foreach($companies as $company) {     echo “$company”;   }   $cur = $companies[0]; } else {   echo “$companies”;   $cur = $companies; }

} catch(Exception $ex) {     echo $ex->getMessage(); } ?>

my error is:

SOAP-ERROR: Parsing WSDL: Couldn’t load from ‘http://localhost:7047/DynamicsNAVPMS/WS/SystemService’ : Start tag expected, ‘<' not found.

Could you tell me where I went wrong?

thanks in advance…….


Viewing all articles
Browse latest Browse all 64865

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>