Tagged Questions
13
votes
4answers
5k views
Embedded HTTP server in Swing Java app
I wish to embed a very light HTTP server in my java swing app which just accepts requests, performs some actions and returns the results.
Is there a very light java class that I can use in my app ...
3
votes
4answers
199 views
http server in php
I want to create http socket connection for server in php for multiple client . how can I do that ? I need some resource .
First I was trying to create server in java .I create a server in java . And ...
2
votes
6answers
1k views
simple HTTP server in Java using only Java SE API
Is there a way to create a very basic HTTP server (supporting only GET/POST) in Java using just the Java SE API, without writing code to manually parse HTTP requests and manually format HTTP ...
1
vote
0answers
26 views
Simple apache mina http server with basic authorization
I know about asyncweb, but documentation for 2.0 version doesn't exists(or may be Internet ban me today).
So, if someone had same experience with Apache Mina and Http server with Basic ...
1
vote
2answers
371 views
how to let Java HttpServer handle Post Request for File Upload
First of all, my question is about HttpServer in Java to handle the POST request from a client, not about a Java client who can upload file to a web server.
OK. I am using a lightweight HttpServer in ...
0
votes
2answers
41 views
How can I make HttpServer recognise special characters in Java?
I want to make some SQL query with my Java HttpServer but it seems that the HttpServer doesn't recognize special characters in the link I submit into my browser:
[1]: ...
0
votes
3answers
56 views
Java, how to read and store file inside the JAR Package
I'm trying to build a simple HTTP Server using Java, using
java.net.ServerSocket = new ServerSocket(this.port, 0, this.ip);
java.net.Socket connection = null;
connection = server.accept();
...
0
votes
0answers
37 views
Confusing on the Apache http server RewriteRule behavior
I config a apache http server to rewrite the incoming request and redirect it to
local file, this apache serve running as the front-end of a jboss server and connect with the ajp13, the mode_jk ...
0
votes
3answers
242 views
Java HttpServletResponse with blank-value headers?
How can I make a java-based application server reply with an empty-valued response header, like this?
content-length:\r\n
Unfortunately when I call
response.setHeader("Content-Length", len)
...
0
votes
2answers
60 views
How to: Java app to start a http server on a separate thread
Is there a solution out there that can help on that? basically I want to build a Java app that could start a http server on a separate thread such that a local running app could call to this Java app ...
0
votes
1answer
348 views
Http-Server How to Create Request-Headers and response-Headers
SOS SOS SOS PLEASE!!!
I have created a primitive HttpServer in java which listens on port 80 and Uses Get method to open a file etc (127.0.0.1/index.html). ow i want create request headers ...