Strawberry02 Posted May 31, 2017 Share Posted May 31, 2017 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 Quote Link to comment Share on other sites More sharing options...
requinix Posted May 31, 2017 Share Posted May 31, 2017 Use one of the other SOAP operations supported. Create or Update looks like what you want. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.