1

I am trying to achieve the same goal which is discussed here(What handles dynamics:// URLs?), and followed the code example given by "Jan B. Kjeldsen", then I created a HTML page to test that as follows

<HTML>
    <Body>
        <a href="dynamics://0/?DrillDown_0?table=Vendtable&value=Test">click here</a>
    </body>
</HTML>

when I click at the link in page, No action is taken, even the client is not trying to open. But when I remove the extra parameters and replace the Drilldown_0 with Drilldown_17 (17 is the inboxID of an existing event in eventInbox table).

<HTML>
    <Body>
        <a href="dynamics://0/?DrillDown_17">click here</a>
    </body>
</HTML> 

It works fine and takes me to the expected vendor record.

Please help me.

Community
  • 1
  • 1
Jay
  • 13
  • 3

1 Answers1

0

Maybe the the AX URI handler was not installed?

See how do I create my own URL protocol? (e.g. so://...)

All clients seeing your web page has to have it setup.

Community
  • 1
  • 1
Jan B. Kjeldsen
  • 17,817
  • 5
  • 32
  • 50