server

Alternative to resetting the asp "Windows Services" every few days.

Hi, One of my site is on a shared hosting and every few days the site will stop working. The pages will simply stop loading. After contacting my host they suggested that I disable/re-enable from their hosting management tool the windows services for my site every time this happens. In the list on their website I have: ASP, ASP.net and ...

"Invalid Index" error in IIS6

I have some applications running under IIS6 and they all simply stopped working some time ago. Initially I suspected that could be any patch applied to our servers but I got the information that none have been applied in this time window. The error message that is thrown by IIS is "Invalid Index", which is a HTTP 500 error. I thought t...

C++ Server is terminating if the front end Tomcat is killed. Error "Received untrapped signal [13] - SIGPIPE"

I am facing a problem in my C++ server program. The request XML comes from the front end (Java) and the back end server (C++) process the request and returns the reply XML. As part of testing after submitting the request to back-end we killed the Tomcat server. The back-end application (threaded server application) after processing the ...

Is there any "remote console" for twisted server?

I am developing a twisted server. I need to control the memory usage. It is not a good idea to modify code, insert some memory logging command and restart the server. I think it is better to use a "remote console", so that I can type heapy command and see the response from the server directly. All I need is a remote console, I can build ...

Is it normal for so many ruby processes to be running?

I'm having issues with a site on my server loading and was running 'top' and saw this: Dozens of ruby processes...and I have no idea what that means or if that's normal. :) ...

CSF Firewall configuration for single domain name

Hello all, i'm running on a Dedicated server and i have two IPs Is it possible to block some ports for just one of the IPs via CSF firewall? What i mean is that i have two domains configured to two IPs let's say example1.com is on ip 1.1.1.1 and example2.com is on 1.1.1.2 how can i block some ports for IP 1.1.1.2 and still have the...

Recommended Socket Server frameworks

I've written my fair share of loops around accept() or select(); fork() or Thread.start(). I'd like to avoid doing it again. I'd prefer not to re-use my own code. And I'd like to take advantage of benefits that a 'serious' framework offers, such as preforking, thread pooling, etc. What frameworks do you recommend - in any language - th...

Best Practices Server Side Scripting or Web Services

Hello, Let me start off by stating that I am a novice developer, so please excuse the elementary nature of my question(s). I am currently working on a Flex Application, and am getting more and more confused about when to use server side scripting, and when to develop web services. For most of the functionality I am working on, I am ...

Help needed on Uploading Files in windows mobile

I have an desktop application running on my desktop. I need to send the file path to the CGI script running at server. CGI script taks the file path and upload the contents from my machine. I tried to send the file path through httppost method; it is not working - can any one suggest me how to do.. methods I have tried are: WebClient ...

Do clients of a SQL Server 2008 need to be on a Network domain or can they also be in a workgroup ?

Hi, When we install a SQL Server 2008 on the Windows 2008 server and the SQL clients on the PC's in the network, is there any pre-requisite that these clients should only be on a Domain controller network and not on a workgroup ? The vendor who is installing this claims that it has to be a PDC based network whereas we feel the workgrou...

What are the ways of interchanging string data between clients and a server in Delphi?

I have a server and some clients (about 50) in an intranet. The clients send short (about 40 character) string data to the server and the server answers with a similar string. There are up to (but not permanently) 2-3 requests per second for each client. The server has to serialize the requests to get the response strings. The system sh...

Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service should be used if possible. But still I am not able to understand that if it has powerful access to local resources, how attacker can acce...

Is it exists any "rss hosting" with API for creating feeds

Hi, I am creating a desktop app that will create some reports. I want to export these reports as RSS or ATOM feeds. I can easily create feeds with Rome lib for Java. But I have no idea how to spread them. I thought about embedding httpd into my app, but it's bad idea, because a computer can be behind NAT or turned off. I need some kind ...

Simple server and client request/response in C#

OK. I just want to know if this can be done. I'm using C# asp.net language. I want to send a structure to a webserver from a webpage (much like you you can pass a structure to a function). The server would act on the data found in the structure, and then return back the structure (with its contents modified) to the "client" webpage....

ASP.net development server needs restart every time

I have a problem with my ASP.NET development server. I need to stop before I run my app from VS Express environment again otherwise it uses a previously rendered version. I have searched for solutions all over, over a 3-4 month period but nothing, perhaps I am using the wrong words? ...

Is it possible to write a webpage-checking script and run it from a free server?

Hello everybody!!! I am sorry if my question is silly and not at the right place. I know it's possible to write a script (in any programming language) that would check some webpage every 20 minutes, record its HTML code (source) and store it in some file. I also it's also possible to run it from my computer. But what if I can't keep m...

2 Questions about named pipes

Hi i have a couple of question about using named pipes. Firstly, when trying to setup a pipe server, i have noticed that if i use the code below.. at the end of the first client connect the server becomes unavailable UNLESS i wrap the whole thing in a while (true) block. Have i done this correct? or is each server only supposed to be ac...

Apache: Deploying a new site to the server

I have a site currently live on a domain. I would like to switch it to a new site, that is currently in a password protected sub directory on this server. I have a "Site Maintenance in Progress" page. I want to set Apache so it displays that by default instead of "index.php". Also, I'd like everything else on the server to be password p...

Integrating a simple web server into a custom main loop in python?

I have an application in python with a custom main loop (I don't believe the details are important). I'd like to integrate a simple non-blocking web server into the application which can introspect the application objects and possibly provide an interface to manipulate them. What's the best way to do this? I'd like to avoid anything tha...

Juggernaut-like engine for .net?

Does anyone know of an engine for .net that provides realtime server connection like Juggernaut for Rails? Preferably open source. ...