Converting web application into exe file [closed] - apache

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Dears, I already created a Java EE web application.
This app has Java Bean, servlets, JPA, Apache server and running the server by Glassfish. When starting the app, I have to run the server manually, then the DB.
How can i let the end user use it, or installer when he clicks on it so it runs on the server and starts the application directly?
Please, I can not find an answer for this. Thanks in advance.

Create an exe for your Java EE web Application is not possible.
The WAR file is the closest to it.
More info: How to create Java webapp installer (.exe) that includes Tomcat and MySQL?"

Related

How to host .NET Core webapp in MacBook Pro using apache [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I want to host my Asp .Net Core Web Api on MacOs(Big Sur) with Apache.
Steps
Install .Net SDK on MacOS.
Configure Apache - Map Your IP address to localhost
Create your webapp and publish it
Suggestion
Read the steps of hosting webapp on linux.
Understand how to use apache to use webapp (.netcore,php,and java...)

Web server running python. [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I want to create a web server that I can accesses over the internet (not just locally) and can run and execute python scripts. These scripts will be doing some querying on .db files and returning processed query results. I want to be able to run POST and GET methods on my web server. How should I go about doing this? This is for a school project. From my research, I would need a dedicated computer to be my web server and I don't have those resources.
Thank you.
I would recommend Flask. It will work as a simple web server that let's you run POST and GET against it as well as serving pages. Since it is a Python application, running Python scripts are just part of the code.
In addition to it accomplishing what you want, you could run this on just about any computer you could load Python on (Windows, Linux, Mac, Raspberry PI) thus eliminating the requirement for a dedicated computer.
http://flask.pocoo.org

Perfomance testing for XMPP Chat application with Jmeter & Blazemeter [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
We are trying to do a performance testing for a XMPP-based mobile chat application using Jmeter and Blazemeter.
As we are new to XMPP web-services.
Can anyone brief us how to use Jmeter or Blazemeter for XMPP and how to record the scripts using XMPP plugin?
Why not to try use tsung instead?
originally created for load-testing Jabber/XMPP servers although supports a lot of other protocols at the moment;
has better performance on the same load-generation servers amount than Jmeter: you will get instantly higher load on the same amount of hardware used;
ready for distributed load-generation.
Benchmark Approach: Jabber/XMPP
Load testing Ejabberd XMPP Server with Tsung
Load testing Tigase XMPP Server with Tsung
Introduction to Load Testing with Tsung
Tsung questions on SO

What Does 'What Stack Do You Work In?' Mean in Web Development? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
What Does 'What Stack Do You Work In?' Mean in Web Development?
And, more specifically, what is a 'Stack' in web development?
Not sure what this has to do with the agile tag but, here's what I understand your question to mean:
I know of three stacks. WAMP, WIMP and LAMP
LAMP - Linux, Apache, MySQL, PHP (I think this is the most common and best known)
WIMP - Windows, IIS, MS SQL Server, PHP (Bizarrely - you'd think it would be .NET or MVC)
WAMP - Windows, Apache, MySQL / MS SQL Server, PHP

Setup MongoDB on Apache [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Is it possible to setup MongoDB on Apache? How to do this?
I have installed Apache on 127.0.0.1:8000 and MongoDb on 127.0.0.1:27017.Does it mean, that they are placed on different servers?
But how to install MongoDb on Apache, I don't know
MongoDB is a database server which is hosted on localhost:27017,
Apache is a HTTP server which in your case is hosted on localhost:8000. Both are different servers for different purposes. You cannot put a server on top of the other!
As for example, MySQL is a server running on 3306 port. Apache has a plugin to connect with it, not that MySQL runs on Apache.