server

How to open a console app from a webform

Hi, I have a collection of sites running on a single server. The server also runs a console application which collects data and distributes this data to the websites. I am not always about to check if the application is running and I would like to give the end user (a select few users!) the option to start/restart this application on t...

Sending UDP Packet in C#

Hello everybody! I have a game server (WoW). I want my players to download my custom patches to the game. I've done a program that checks for update/downloading things. I want my program to send a packet to my game server if player have all my patches. I dont need any response from the server, it will handle it, but its another story. ...

Xcode iPhone Programming check if a server is online

My app has to connect to a server, but sometimes when I test my application I don't have my server online, so the app remains stuck when opening. How I can test programmatically if the server is online? Is there something like ping so i can verify the state of the server and then doing the normal work or not if it is offline? Thank you! ...

get server ip in java (Struts)

hello, i want to get ip server where my tomcat is execute in java (Struts).? ...

Are there any Opensource, free XF.Network analogs (product for creating fast servers with .Net)

Opensource, free XF.Network analogs (product for creating High Performance TCP/IP Server using C#.NET) ...

PHP doesn't show any kind of errors

Hello everybody I have a PHP server at home for development. It is running: Ubuntu 9.10 Apache 2.2.12 PHP 5.3.2-0.dotdeb.1 MySql 5.0.7-dev Currently the settings in the php.ini for displayiong errors are: display_errors = on error_reporting = E_ALL But I do not see any errors in my php script. Also very strange is that phpinfo() s...

how to run an ActiveX that must be visible and topmost on a server without a desktop?

We're writing a server application that needs to use an ActiveX object that must be visible and Top-Most otherwise it doesn't render correctly. The challenge is that servers typically don't have an active desktop, and therefore the applications should not require one. Ours does. I must use this ActiveX, and I don't have access to the sou...

Limit Connections with semaphores

I'm trying to limit the number of connections my server will accept using semaphores, but when running, my code doesn't seem to make this restriction - am I using the semaphore correctly? eg. I have hardcoded the number of permit as 2, but I can connect an unlimited number of clients... public class EServer implements Runnable { pri...

problem when migrating from development into live server

I'm facing problem when migrate my web app project from development server to live server. the reason is because i just realize that the live server has different PHP version and available memory lower then mine. i found this after client give me their ftp and cpanel access of their server, which is a shared host. so, how do we han...

download file only with sockets

Hi I want to write a simple client on the iPhone that downloads a file from an http server using only bsd sockets. I searched the web but couldn't find anything helpful. Can you give me a direction? Thanks Alex ...

How to configure your WCF service to work as normal TCP server?

How can I configure my WCF service to work as a normal TCP server? Is it possible to disable all that binding specific stuff so as to keep your service URL like http://example.com:4444/service and be able to work vith pure HTTP/TCP streams? I need to be able to work with TCP streams in tandem with WCF services... so I have to make TCP s...

Which flash server i should use for flash chat with a lot of instant users?

I'm currently developing flash chat for social networking websites like facebook. Actually i want to develope flash chat in this game. Chat would have a lot of instant active users. So that, i need to know which flash servers i should use, is there any free ones that are pretty good for such high performance needs? I've found ElectroSer...

How to restrict http access to video files?

I want to only let "right" people watch those videos. In other words, only registered users that are allowed (by other users, ie, friends) should see videos. I have a hard retriction for cpu usage in my shared environment, so I can't use things like php's readfile. ...

extend web server to serve static files

Hello, I want to extend a web server which is only able to handle RPC handling now. The web server is written in C#. It provides a abstract handler function like following: public string owsHandler(string request, string path, string param, OSHttpRequest httpRequest, OSHttpResponse httpResponse) A...

c# send recive object over network?

Hello, I'm working on a server/client project the client will be asking the server for info and the server will send them back to the client the info may be string,number, array, list, arraylist or any other object I found allot of examples but I faced issues!!!! the solution I found so far is to serialize the object (data) and send ...

Sending messages between two Python servers

I have two servers - one Django, the other likely to be written in Python - and one is putting 'tasks' into a database and another is processing these tasks. They share a database, but I want the processor to react quickly to new tasks rather than polling periodically. Are there any straightforward ways for two Python servers to talk t...

Will PayPal require fresh implementing work when I transfer site to an another host?

Hi friends, I have a site using PayPal payment for membership. I need to move my site to an another host now. So, Do I need to do PayPal integration work from scratch on new server? or will it just work when I transfer files to new server? Thanks a lot for helps! Appreciate. ...

Client-Server Networking Between PHP Client and Java Server

Hi there, I have a university project which is already 99% completed. It consists of two parts-website (PHP) and desktop (Java). People have their accounts on the website and they wish to query different information regarding their accounts. They send an SMS which is received by desktop application which queries database of website (MyS...

Where can I find WebSphere configuration files?

Hello Stackoverflow'ers, I would like to know where are the WebSphere configuration details saved? Specifically, configuration details that are shown in the Administrative Console (from the web) or from the console using wsadmin. Some of the examples would be: Java and Process Management: Class loader, Process definition, Process ex...

Ajax request (from .NET) give me unexpected results

I wanted to learn a little more about web and .NET so i decided to write a program to download binaries, webpages and does a little ajax. The first download site i tried was too easy. So i went against uploading.com. It seemed good, no captcha, some ajax use required, you cant guess all the data, it was perfect. After 2hours of messing...