web server « http « Java Network Q&A

Home
Java Network Q&A
1.API
2.bluetooth
3.Client
4.connection
5.Cookie
6.Development
7.Email
8.File
9.ftp
10.http
11.HttpClient
12.https
13.ip
14.Network
15.OS
16.RMI
17.Security
18.Server
19.Socket
20.tcp
21.UDP
22.url
Java Network Q&A » http » web server 

1. How do you programatically authenticate to a web server using NTLM Authentication with apache's commons httpclient?    stackoverflow.com

I'm using this code, and I get the stack trace that is listed below. I've got this working with just https and with basic authentication, but not ntlm.

HttpClient client = null;
HttpMethod get ...

2. web server sending command to a J2ME app    stackoverflow.com

Can a J2ME app be triggered by a message from a remote web server. I want to perform a task at the client mobile phone as soon as the J2ME app ...

3. Java web server and PDF files    stackoverflow.com

I have created my own HTTP server. I need to return a PDF file (generated by Jasper Reports) to the web browser. However, when I read the PDF file ...

4. Sending a HTTP post to a web server with Java    stackoverflow.com

As per title really I'm wanting to send a custom HTTP post request to a web server and I have little experience in this area. The web server uses ...

5. java images receiving (web)server    stackoverflow.com

I want to make a system where java client programs send images to a central server. The central server saves them and runs a website that uses these images. How should I ...

6. Simple web server hangs when receiving http request    stackoverflow.com

I'm writing a simple web server,code snippet:

 ServerSocket server = new ServerSocket(80);  
  Socket client=server.accept();  
  InputStream in=client.getInputStream();  
  OutputStream out=client.getOutputStream();  
 ...

7. How should a web server handle a http request where file POSTed by client has data in wrong format?    stackoverflow.com

We have a web server which has exposed an api where the client can upload a file. That file is read in the server and certain processing happens and a http ...

8. HTTP web server    coderanch.com

There are plenty of examples to download, but if you don't want to just grab someone else's attempt, the best place to start is with the original HTTP RFC. Although wordy, this defines the basic behaviour of a http server. Writing something to just respond to simple GET requests should be no more that 20 lines of Java or so.

9. HTTP server and Web Server    coderanch.com

10. How to upload a file to a http server on the web.    coderanch.com

sorry, i might get you and the other posters wrong. how would you want to upload a file without user interaction? wouldn't that be a huge security hole if you browse a website and it just uploads a file from your system to a webserver? assuming that we are not talking about any weired active-x funtionality, i'd say this cannot be ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.