Questions tagged [appserver]

appserver.io is a next-generation PHP infrastructure consisting of a lightning fast webserver completely written in PHP

appserver.io is a next-generation PHP infrastructure consisting of a lightning fast webserver completely written in PHP including additional frequently needed services in one powerful bundle. You can use all of the services or only specifically selected services in your existing application with no additional tweaks. This is just what you need since we have eliminated the need for additional tools or additional services, appserver.io and PHP and you´re done!

appserver.io should not be confused with appserv which is an old, abandoned project that provided a LAMP stack for Windows.

141 questions
0
votes
2 answers

how can i get Country name from ISO3166-1 alpha-2 country code in java

I am getting ISO alpha-2 country code from the server in the response of an API but I need to convert that ISO alpha-2 country code to the country name. I am using Java 8.
0
votes
1 answer

Is there anywhere to setup ssl certificate on Apache Windows ? I found error SSLPassPhraseDialog builtin is not supported on Win32

I am trying to install SSL on Apache Windows with a certificate purchased and downloaded from Godaddy. There are 3 files, 2 files as .crt and 1 file as .pem. I have completed every step, all I have left is to put the location of cert and error. I…
0
votes
1 answer

Getting NoClassDefFoundError for class SettableFuture present in com.google.common.util.concurrent package of guava-30.0-jre.jar only in Websphere

On enabling class trace, found that WebSphere is loading other classes present in the same package (com.google.common.util.concurrent) from same guava-30.0-jre.jar Total classes present in com.google.common.util.concurrent package: 310 and Total…
0
votes
1 answer

Application in Sun app server hangs after processing a few messages

Appliation server Sun appserver 8.1 JVM - java 1.5.0.11 We have a JMS receiver processing messages deployed in Sun application Server 9.x After processing about 50 odd messages the appserver hangs. Upon restart the 50 odd messages gets processed and…
Chiths
  • 1
0
votes
0 answers

Plugin sonarqube for openedge connection problem

Lately i developed a sonaraqube plugin for openedge : I wrote the rules with the language progress 4gl and then I invoked the rules from java using appserver from openedge and it worked when I did a local test (java) but when I install the plugin in…
0
votes
1 answer

Can we restart Microsoft Azure app service from c#?

I'm looking for a solution to restart the azure app server/app service from C# Is there a solution for this ?
0
votes
0 answers

Locale not recognised Error while creating Datasource (connecting with oracle db)

I am using Jboss as app server (RHEL-7). I have to create datasource to connect with oracle (Oracle Database 12c Enterprise Edition Release 12.1.0.2.0) db. To create DS, using ojdbc driver. When I try to do test connection, in logs I am getting…
arpita
  • 1
  • 1
0
votes
1 answer

OpenEdge AppServer timeout

I'm using plain old OpenEdge AppServer (not PAS) 11.7 using a generated proxy dll (Proxy Generator for Open Clients) for C#. This works quite good apart from setting a timeout for connections. If I call a function using that proxy I want to set a…
TomB
  • 641
  • 5
  • 17
0
votes
1 answer

Azure Server Load Balancing

If we had hosted our server on Azure will be scale according to the load or do we need to have multiple app server and have a load balance?
0
votes
0 answers

For a .NET Web Application, is it possible to have Apache HTTPD as web server and IIS as Application server?

Me and a colleague were discussing if it is possible to have a simple 3 tier web application running in the following configuration / setup. It is a simple question, however I do not have a machine with the necessary applications and rights to test…
aeon
  • 1,029
  • 2
  • 13
  • 23
0
votes
2 answers

Phpmyadmin doesn't show the login page

Phpmyadmin doesn't show the login page to access into MySQL Database. I try accessing http://localhost/phpMyAdmin/ but it shows the blank page. What should I do ? T^T
Bud
  • 1
  • 1
  • 1
0
votes
1 answer

phpMyAdmin Failed to generate random CSRF token! phpMyAdmin 4.6.6 on windows

phpMyAdmin - Error Failed to generate random CSRF token! It happened suddenly on my appserv on windows I search the answer from Failed to generate random CSRF token! (phpmyadmin 4.6.4) modify php.ini : session.save_path = "c:\session" grant modify…
robspin
  • 771
  • 3
  • 14
  • 33
0
votes
1 answer

Should you add logic to application server or database

Assume I have 5 stores in 5 different cities. I want to find out how much I earned per day per city for this month. I have 2 options. 1) Logic on the App server: for (each city) for (each day) { Query(city, day); } } This would result in…
Tanvi Jaywant
  • 375
  • 1
  • 6
  • 18
0
votes
0 answers

Integrate Multiple Web application container on a single server

I am trying to integrate two web application on a single Server. I have two applications appA and appB, both are docker containers, Each application have several dependency containers like Database and other. I want to integrate both Application…
Ganesh
  • 29
  • 4
0
votes
2 answers

Show Users who are in 10 KM radius from User current location Android

I have a requirement where I want to get the user's current location and based on the user's current location I want to get other user's information from app server and want to show them in a list. Users should be within 5 or 10 km radius. I fetched…
user5723719