NAV Endpoints¶
Camel → NAV (Business Central). Called from cm-int-service-sys in two places, both against the PopSockets Live company.
What Camel does not call
Camel does not hit NAV's OMSInterface — that's the OMS↔NAV contract. Camel's NAV order-release is inbound, delivered over Service Bus (see the queue row below), not a NAV call Camel makes.
Unlike OMS and Cirro, each environment is a genuinely different NAV instance (different host, port, and company database), so these are shown as full URLs per env rather than host + shared path.
SOAP — PackagingInstructions codeunit¶
| Env | URL |
|---|---|
| dev | https://tst-nav-app-02.corp.popsockets.com:8057/PopSocketsTST2/WS/PopSockets%20Live/Codeunit/PackagingInstructions |
| qa | https://navtst.popsockets.com:7447/QA/WS/PopSockets%20Live/Codeunit/PackagingInstructions |
| stage | https://navtst.popsockets.com:7147/PopSocketsSTG2/WS/PopSockets%20Live/Codeunit/PackagingInstructions |
| prod | https://nav.corp.popsockets.com:7057/ST-103628/WS/PopSockets%20Live/Codeunit/PackagingInstructions |
Page service base (qbd* pages)¶
| Env | Base URL |
|---|---|
| dev | https://tst-nav-app-02.corp.popsockets.com:8057/PopSocketsTST2/WS/PopSockets%20Live/Page/ |
| qa | https://navtst.popsockets.com:7447/QA/WS/PopSockets%20Live/Page/ |
| stage | https://tst-nav-app-02.corp.popsockets.com:8057/PopSocketsTST2/WS/PopSockets%20Live/Page/ |
| prod | unset — nav.page.base-url is not configured in prod (item-sync is nonprod-only) |
NAV order-release queue (inbound, Service Bus)¶
| Env | Queue |
|---|---|
| dev | int-dev-nav-order-release |
| qa | int-qa-nav-order-release |
| stage | int-stage-nav-order-release |
| prod | int-prod-nav-order-release |
Two NAV repoints landed 2026-07-06
- qa cut over to the new consolidated QA NAV env
navtst.popsockets.com:7447/QA(both SOAP and Page). - dev's SOAP URL moved off
PopSocketsTST1→PopSocketsTST2ontst-nav-app-02:8057, now matching dev's Page URL (same TST2 instance) — verified with a livePackagingInstructionsfetch post-restart.
stage SOAP is still on PopSocketsSTG2. nav.page.base-url remains unset in prod (NavPageSoapClient item-sync not configured there).
Related: NAV order release · Camel topology · Endpoint map home