webserver

Can i host ASP.NET on an apache server?

I have heard of the pains of setting up IIS. On a windows box, can I simply drop a ASP.NET application into Apache server and have it work? Or are there any other server alternatives? I am relatively new to web server concepts. I have heard suggestions for the server in mono but it doesn't seem practical using mono on a windows box, ...

Creating a webserver in C#

I'd like to create a web server that responds to every incoming request with a simple "Hello" message in C#. How do I do that? ...

How to configure Apache 2.2 for django 1.1 on Windows xp

I been having hard times configuring Apache 2.2 for Django app that will run on a local area network. I been through a lot of tutorials and documentations still can not get it working for me My question is there a straight , step by step method for configuring Apache 2.2 for windows i ready to try anything that will work thank in adva...

Webserver not returning response to webrequest

Following on this question: http://stackoverflow.com/questions/3143075/connect-to-windows-app-with-webrequest , I decided to implement a simple web server type thing on my client app to receive the webrequest's. Basically on the client app I have a listening socket and when it receives a connection it does something with the data and t...

What's the difference between Apache and say, Mongrel/other webserver that's not ISS?

Is it that much faster? (And if so, is that just because it's written in C, or due to some other optimizations?) Ability to eventually do load balancing? Having lots of mod_anything you could possibly want here? EDIT: I guess my real question is, what exactly does Apache do differently that makes it so widespread/well used? ...

How can Apache serve assets (css, images, scripts) from a different document root?

Is there a way to do this? I'd like for my assets to be served from a different document root, and I'm not sure if Apache has directives for that. ...

Is it possible to slow down IIS ?

I have a local development webserver set up using Win7 and IIS7. I often have to test the applications and websites I develop on all browsers using "very slow" internet connections to determine how all the clients scripts execute and if the images and all linked resources load properly and in order on all browsers. Now, this involves ...

Trouble Creating SSL Certificate

I'm trying to create a self-signed certificate for a test web server running Sun Webserver 6.1 using certutil. I am open to using keytool or openssl if someone has better instructions which work with Sun Webserver. Here are the commands that I use: certutil -S -P "https-myWebapp-" -d . -n myCA -s "CN=myWebserver.com CA,OU=myCompany,C=U...

Export SSL Certificate

Does the Admin Interface in Sun Web Server 7 support exporting SSL certificates? If so, how? Please provide a reference..... If not, could someone point me to the location where the certs are stored? ...

How will http server handle html5 web sockets?

I am reading a lot about HTML5 and I like the web sockets in particular because they facilitate bi-directional communication between web server and web browser. But we keep reading about chrome, opera, firefox, safari getting ready for html5. Which web server is ready to use web sockets feature? I mean, are web servers capable of initia...

Why does Web Server respond "304 Not Modified" when no Etag and no "If-Modified-Since" is in request header

I get back 304 Not Modified from the web server, but in Firebug, the request header doesn't have Etag and doesn't have If-Modified-Since, and I looked at all the header line and there was no datetime info at all, so how does the server know the content is not modified? ...

How to determine what server is listening on Port 80

Hello, I need to determine, what web server (IIS, Apache, Jetty) is running on port 80 in Java. Are there any solutions to get the informations via port 80? Thanx and reguards Stefan ...

WebServer Error - Failed to release SSL session cache lock

I host my ecommerce site with a 3rd party hosting company (LAMP). When I check my error logs I have a lot of these warnings: [Wed Jul 07 23:39:17 2010] [warn] (43)Identifier removed: Failed to release SSL session cache lock Does anyone know what is causing this and if it's something I should be worried about? I checked with the host...

How can I check apache modules version?

How do I get versions of apache modules on debian? I can get loaded modules list by apache2ctl -M - but how do I get their version numbers? ...

VMWare fusion: connecting to host's web server from guest

Hello, I am a web developer and my development platform is Mac. I have installed a copy of Windows XP in VMWare fusion for testing purposes and using IE for previwing my websites. I have Apache running on my Mac with several subdomains, like test.localhost etc. How can I access the webserver on host OS from the guest OS? Thank you in ...

Running Jetty web server in LAN

GAE comes with an inbuilt jetty webserver for testing purpose.Can it be configured to accessed within our LAN? I can access it using http://localhost:8888 or http://127.0.0.1:8888 but can't access using http://192.168.1.201:8888 (This my local LAN ip) why? ...

SelfSSL issue - 2 secure sites running on same box with selfssl certificates

Hi, I'm pulling my hair out a little bit over an issue we're having on one of our project environment servers. I'm trying to run 2 different versions of our site, from 2 different code bases. The site has a secure and a non secure area. I can, as expected, create as many non secure sites as I wish. The problem I'm having is that I ca...

webserver goahead header question

Hi, I'm writing a small web API routine using webserver Goahead. What's the API to be used to get the Http header information. Please help. ...

Registering a subdomain and mapping urls to it?

Hi, I own the a domain like "www.example.com". How do I setup ownership over "api.example.com"? And I have all my files hosted on a php server (at a hosting provider) and when I login to the file system I can see stuff like: /index.php /help/index.php etc. How do I map stuff like: api.example.com/v1/getAnimalNames.php to a file ...

Sending XML data from iPhone client to Web Server

I'm looking to keep a high score table for my application in XML format. All I am looking to send is a timestamp, string ID, and value. So my questions are do I have to create anything to receive the data, or can I simply have the app write out to a hosted XML file? If not can I write out new XML files for each message (and compile the...