Skip to content

Latest commit

 

History

History
30 lines (14 loc) · 705 Bytes

Readme.md

File metadata and controls

30 lines (14 loc) · 705 Bytes

CONSUMING NAVISION WEB SERVICES WITH PHP

This sample demonstrates how to use PHP to consume web services both Pages and CodeUnits

First, clone this repo to a preferred location

Then open Config.php at the root,and input your details

const PROJECT_NAME = "";

//e.g http://YOUR_URL/DynamicsNAV90/WS/SOME_VALUE/Page/
const NAVISION_PAGE_BASE_URL = "";

//e.g http://YOUR_URL/DynamicsNAV90/WS/SOME_VALUE/CodeUnit/
const NAVISION_CODEUNIT_BASE_URL = "";

const USERPWD = "user:password";

You can now check on the samples folder for some great samples classes

Will add more classes on each commit