PDA

View Full Version : Running Open Laszlo App On Hosting Server


stuckhere90
05-14-2008, 11:10 AM
If you have an Open Laszlo application that you want the public to have access to, do you normally do something like the following:

(1) Create the Laszlo Application
(2) Create a web with say a button on it, that when clicked on, would go to the correct directory on the server, and begin running the Open Laszlo application.


Assuming that it can be done this way, how many simultaneous connections can there be? I mean, it would not be good if only one person could use the app at any given time.

One thing that I am very unclear on is, if NOT running solo, does Tomcat have to be on the server as well?

Any help would be appreciated.

Thanks

rcyeager
05-14-2008, 02:01 PM
You can poke around my app Cooqy at http://www.cooqy.com to get some ideas. I do use launch app buttons from the home page. I also allow eBay sellers to embed widgets on their web pages by generating Flash embed code snippets. SWFObject is another tool I use to embed OL apps on web pages.

If your app is proxied, you need Tomcat or another web app server.

The number of concurrent users is determined by your web server and web app server configuration. Within Tomcat, look at the /conf/server.xml file for Connector settings.

Robert Yeager
http://www.qrowd.com
http://www.cooqy.com

stuckhere90
05-15-2008, 03:07 PM
Thank You!