Questions tagged [webserver]

A software application that services requests from clients using the Hypertext Transfer Protocol.

8218 questions
2
votes
0 answers

how to run multiple flask servers

I just built a REST API server using Flask. Now I want to build a web server (still using Flask) that handles all the template rendering. I'm confused on how to run multiple servers on the same machine, so how do I go about in implementing this? Any…
Lee Merlas
  • 430
  • 9
  • 24
2
votes
1 answer

Showing sensor reading in a django website

I want to design a web based application for showing sound sensor readings, collected from an Arduino based setup (and also show some analysis results). For making my arduino setup work I had developed a python program named 'ard_sensor_project.py'…
Debanjan Dey
  • 115
  • 2
  • 15
2
votes
1 answer

Steps for class attendance by using QRCODE

I have to create a project which is for class attendance by using QRCODE for my final year project. My project was like: Students in the class will scan the QR CODE(using their own smartphone) that will be displayed by lecturers on the projector…
2
votes
1 answer

Is Rebol-based Cheyenne server able to process HTTP REST requests?

Is Rebol-based Cheyenne server able to process HTTP REST requests like « /product/1234» / « /product/{productId}» (with data in the URL, not as GET parameters) ? It could be possible if Cheyenne can redirect URLs with wildcards like '/product*'…
dreamyToto
  • 131
  • 2
2
votes
0 answers

Socket Programming for Web Server [Errno 98]

I have completed my web socket API in Python: #import socket module from socket import * serverPort = 80 #Port Used serverSocket = socket(AF_INET, SOCK_STREAM) serverSocket.bind(('', serverPort)) serverSocket.listen(1) print "The server is ready to…
2
votes
1 answer

How to run multiple php version in lighttd server at same time?

I have several php projects which contains several php version such as php 5.6, php 7.0 etc. Recently, I have installed lighttpd server as a local server. Here is my lighttpd.conf server.modules = ( "mod_access", "mod_alias", …
2
votes
1 answer

What is the difference between dispatcher and webserver

Is there any difference between dispatcher and webserver? I was asked this question and I replied both are same. Can anyone pls confirm. I work for Adobe Experience Manager tool to develop websites.
Skeptic Scribbler
  • 527
  • 1
  • 6
  • 18
2
votes
2 answers

Handle concurrent requests or threading Flask SocketIO with eventlet

I’ve started working a lot with Flask SocketIO in Python with Eventlet and are looking for a solution to handle concurrent requests/threading. I’ve seen that it is possible with gevent, but how can I do it if I use eventlet?
danielo
  • 770
  • 2
  • 13
  • 32
2
votes
0 answers

Turn off console logging jboss 5

I have read that one of the Best practices for performance tuning in JBoss is to tun off consloe logging, how can i achieve that? I'm using Jboss 5. Thank you
2
votes
1 answer

How to write on web server in java

HI I am having problem in java related to write on the web server from the client. I am using following code please help me where I am wrong For Server class import java.net.ServerSocket; import java.net.Socket; import java.io.InputStream; import…
agarwal_achhnera
  • 2,582
  • 9
  • 55
  • 84
2
votes
4 answers

Tomcat7 Alternative

I have never used something different than tomcat. For my current university project I programmed a WebApplication with JSF and Java EE 6. I have to hand it in installed on a VM with Ubuntu OS. My fellow student told me that Tomcat7 is not released…
Sven
  • 6,288
  • 24
  • 74
  • 116
2
votes
2 answers

downloading excelize xlsx file is corrupt

I'm using Excelize library for generating xlsx documents. When I use It's Write(io.writer) func for saving xlsx to file, it works perfectly. But I need to generate and serve this file at web-server. I was trying this solution func…
TheROX
  • 96
  • 13
2
votes
0 answers

Connect to IIS server

I have IIS server on virtual machine. when I connect to it from local LAN I got 401 - Unauthorized: Access is denied due to invalid credentials. and when I try to connect from WAN, I got This webpage can't be displayed what should I do to solve…
M.salameh
  • 109
  • 7
2
votes
3 answers

Is it fine to use duplicate response header with same value?

I found a response where duplicate headers are used by the application with the same value. Could anyone tell me that, Is it a good programming practice or those are used for security perspective or anything else? HTTP/1.1 200 Accept-Ranges:…
Pawan Dwivedee
  • 115
  • 3
  • 12
2
votes
2 answers

Set multiple headers conditionally with rewrite rules [apache httpd.conf]

I've been trying to set headers conditionally with few RewriteCond. Doesn't quite seem to work. RewriteEngine on RewriteLog "/tmp/rewrite.log" RewriteLogLevel 9 RewriteCond %{HTTP_REFERER} "/id\:no\:" RewriteCond…
Kamal Chanda
  • 163
  • 2
  • 12