Hi Experts,
I've two different clients both in NAV 2016, in one of them I've publised a codeunit with just a function (this function is set Local = NO). And from the other client, I want to call that web service and get a decimal. (also I want to set some parameters to that function)
In .NET is pretty easy (I'm able to see the function adding the reference), but from NAV how in earth do I create that url in order to access to that function??
I tried something like that, but it doesn't work:
http://ipserver1:8147/DynamicsNAV90/WS/CHRONUS/Codeunit/test/functiontest?param1=1000.
Thanks
Answers
I have made a research and I have found that is possible only to do a DLL the should be work like a proxy, using a service WCF - channelfactory.
Please, contact me here or by mail massimo@pasqualinfomatica.com
thank you
There are many examples on the net. Please search for it.
You can either create an assembly and use this, as @massimopasquali suggested, or you can do it using some Dotnet objects from within C/AL.
Thanks