07-02-2014 11:09 AM
Hi meysam_b
"I'm so sad for it because I love Labview and I hoped that labvew help me stand alone in web based application."
Don't be sad! I developed the LabSocket system for situations just like yours. LabSocket automatically creates a web page from a LabVIEW front panel and then synchronizes the controls and indicators in the front panel and browser. Since the system does not require browser plug-ins or client-side run-time engine, LabVIEW applications can be accessed from any modern browser, including those on mobile devices.
A nice example of the ease-of-use of the system is a Home Automation system developed by 4th year engineering students at the British University in Egypt. Details of their project (Final Report, video, etc) are posted in the LabSocket User Group forum on LinkedIn: http://lnkd.in/bnHxWzi
To get started with the system, I'd recommend trying out the fully functional downloadable demo package. The demo and user guide for the system are available at: http://labsocket.com/download.html.
You're welcome to contact me directly at jbergmans <at> bergmans <dot> com if you have any questions about the system.
Regards,
John Bergmans
See you NIWeek 2014
07-25-2014 04:05 AM
Hi!
Sorry to post my question here, but I'm having a similar issue developing a web version of my labview application in HTML.
I want my web version to be the interface layer that shows some of the most important stuff that my labview application does. And for that I'm trying to use the labview's web services. My problem is that my application also uses a MySQL database, and if I make a simple query on a labview's web method VI, it doesn't work. I know that I can access the database with PHP in a HTML page, but I really don't have enough time to implement again in PHP everything I have on my labview application that accesses the database.
Is database connectivity not possible in labview's web method VIs? I was trying a simple query in the web method VI to test it and it didn't work. I've also tried putting the query in a subVI that the web method VI calls, but it didn't work either...
I'm using Labview 2013 with Database Connectivity Toolkit.
07-25-2014 04:22 AM
07-25-2014 04:43 AM
It doesn't return any data or returns 0. Shared variables or simple stuff works fine on the web method VI. I only noticed that database queries don't work correctly. But on normal VIs in my labview application I dont't have any kind of issues accessing the database.
I've attached screenshots of the web method VI and the result. With that query it should've returned 323.
07-25-2014 05:40 AM
07-25-2014 06:39 AM
I'm not sure I understand correctly what you are suggesting.
Are you saying that I could use the same query parameters I use on my VIs for accessing the DB on a PHP script that I would call o