Posts

Showing posts with the label Programming

Link Stream .VLC

Image
We can stream any video file download link in VLC player without downloading the whole file. But the process is a bit complicated. Many normal user not even aware of this feature. For this reason I have developed this small tool (for windows users). This application helps you to stream any video file link in VLC without downloading the file.     Download from Github:  LinkStream.VLC Size: 30 KB No need to install just download and Use. How to Use: First copy a downloadable link of any video file and paste it into the Link Textbox. Then click Open in VLC button, that's it! VLC player will start streaming your video file. N.B.: 1. VLC player need to be installed in your computer. 2. File name must be included in the link. Enjoy ... ツ  **This app is completely free. Feel free to share with others.

Microsoft Dynamics NAV - Creating and Consuming a Codeunit Web Service

Image
We can create any code unit in Dynamics NAV and publish it as web-service. To do that we need to go to the page (form in 2009)  "Web Services".  In the Web Services page, choose New. In the Object Type column, select Codeunit, then in the Object ID column enter the Codeunit Number, and then enter a name in the Service Name column. This name will be the web-service name to consume.  Mark the check box in the Published column and choose OK to close the New - Web Services page. Webservice Form (2009) Verifying the Web services availability. Make sure flowing services are running in server. In Browser write the service URL to check if the service published successfully, Change the localhost with ip for remote server : http://localhost:7047/DynamicsNAV/WS/Services  If everything is ok you should see the published services names in the browser. Now lets try to consume the service. In this example we will see how to consume the service fr...