Jump to content

PHP Microsoft Dynamics NAV


Strawberry02

Recommended Posts

Hello,

 

i create a page in NAV (2009 R2) and published it. 

On my private web page I can read the data from this webservice.

include ("NTLMSoapClient.php");

stream_wrapper_unregister('http');
stream_wrapper_register('http', 'NTLMStream') or die("Failed to register protocol");

$baseURL = 'http://XXXXXX/Page/WS?wsdl';
$client = new NTLMSoapClient($baseURL.'SystemService');

$page = new NTLMSoapClient($baseURL);

$params = array('No' => '1010101111');
$result = $page->Read($params);
$contact = $result->WS;  

But I want to update the data from the web page. So that the new data is as well in NAV.

 

Can anyone help me?

Thanks :-)

 

Greetings

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.