Hi, everyone,
I want to ask some basic knowledge of server.
1) What is the different between the web server and the CalDav server?
2) How to set the web server and CalDav server?
3) If I send a request to CalDav server ( I assume that I have the URL of the server), will the response header contains the data within the CalDav server...
I have a java program which need to be run as a service. How do I do that easily?
...
Hello,
I would like to start writing Python web apps, first start simple like servlets in Java, then move to some web frameworks.
What server could I use to develop the apps? Is there a Tomcat version for Python? Is Apache with mod_python the way to go or something else?
Thank you!
PS: It is for Python 2.6.5, if that makes a differe...
Hi all,
I am learning spring MVC and developing some basic web applications and running over Tomcat.
The changes i made did not effect fastly and that makes me angry, i fed up with restarting server, or cleaning projects bla bla (right click server and select clean).
Is there any way to say not to cache anything preventing the effect ...
Last time I started to having problem with gconftools, I'm using Ubuntu Server Edition 10.04 LTS
When I make command
gconftools-2 --spawn
I've gor an error:
Failed to spawn the configuration
server (gconfd): Failed to contact
configuration server; some possible
causes are that you need to enable
TCP/IP networking for ...
When using the hg serve command in windows, the server starts correctly, but when somebody tries to do a clone, this error appears.
$ hg serve
listening at http://machineX:8000/ (bound to *:8000)
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 4456)
Traceback (most recent cal...
In the application Im writting the server will have information abuot the users, using a XML databse. The admin user will be able to write/read information on those files too.
How can I deal with concurrent access to those files?
The only way users/admin can read/write to those files is by requesting to the server(Sockets, TCP connection...
I have asked this question on serverfault.com which is as suggested a more appropriate place for it - http://serverfault.com/questions/169829/what-does-glibc-detected-httpd-double-free-or-corruption-mean
I have an EC2 server running that I use to process image uploads. i have a flash swf that handles uploading to the server from my lo...
How can i redireect from https to http?
i have the code below but it does not seem to work.
server {
listen 443;
server_name example.com;
rewrite ^(.*) http://example.com$1 permanent;
}
...
Hey, i have made a full backup of my entire site using cpanel and i now want to use this backup to restore everything back to the state when i made the full backup.
I know i have to go to WHM > Restore a Full Backup/cpmove file then enter the username for the account i want to restore and that the backup file should be in /home, /home2,...
I am trying to create a server for small business.But I could not chose OS for thıs .Am I use Linux or Windows 7 is enough and stable for home-build server?I will use Xampp.And I have a little experiment on Linux.But if it will be more stable then I can start to learn it .
...
I am trying to find a good network monitoring system, easy to configure and to still have a lot of features. I want to try Nagio but it seems to be very complicated. I saw that are also a lot of systems direved from it (or work with it), like groundwork or Shinken.
Do you know or recommend a good solution for this?
...
I am developing an app using Grails and GWT for a client side.
I want to use the same date format both on the client side and on the server side (preferably defined in one file).
So far i've understood that Grails got it's own mechanism for internationalization (grails-app/i18n). I know i can access these messages from any server code u...
Hello everyone.
I have been surfing around on google, googling away in order to find the source of a Python HTTP proxy server, because i wish to write my own. Good news is: I found lots! Bad news is: I think they are too complicated. At least for me to properly grasp. I have seen python do stuff like this before in very simple and compac...
Hi all,
I guess this might have been posted somewhere, I did search, but couldn't find anything.
I have this server on which I run a game server, and where I want to have some TCP server (possibly written in Ruby) that will provide a pseudo-session with few commands available (like restart the game server, send the logs, etc.)
What I ...
I created a basic tcp client and server in groovy and I'm wanting to send maps from the server to the client, I'm wondering if I'm able send maps across and still being able to access the values.
//TCP Server
def book1 = [Title of Book: "Groovy Recipes", Author: "Scott Davis", Number of Pages: "241"]
server = new ServerSocket(2000)
p...
looking for a python multiplayer game server project. just trying to learn more and i love to game
...
What are some ways to create PDF reports in a Java server environment without having to use Java code to do so. Or maybe minimal Java code?
We have used iText and various htmltopdf solutions. Those work, but they take a lot of Java code create the documents and you have to code the positioning of all the elements?
Is there a solutio...
Hi all,
I have a css problem with Firefox. The css files on my website don't work on Firefox but it works fine on IE. I am using Sun One web server and the mime.types file is already configured for css and the virtual server's obj.conf file has ObjectType fn="type-by-extension" in the default Object.
Anyone here know what could be ca...
The requirement of the TCP server:
receive from each client and send
result back to same client (the
server only do this)
require to cater for 100 clients
speed is an important factor, ie:
even at 100 client connections, it should not be laggy.
For now I have been using C# async method, but I find that I always encounter laggy at...