server

.NET VB How to have Server Listen on Multiple Ports?

I'm writing a very small and simple server that I want to listen on multiple ports. I'm using the below, but connections to port 8081 are not being accepted - any suggestions what I'm doing wrong? (I actually want to listen on multiple ports, I'm not confusing multiple connections) Public Sub StartServer() Dim ports() As Integer...

How does iphone apps interact with server?

Hey guys, I am actually a really new programmer who is new to iphone developing and server stuff. So I have a lot of questions to ask. You don't have to answer all the questions but answering as much questions will help me a lot! thx! How does iphone apps interact with server? Is there a particular kind of server i should use to intera...

Unsolicited notifications from server to client over http

I am working on a dropbox like system and I am wondering how the client gets notified when the files change on the server side. It is my impression that both dropbox and ubuntu one operate over HTTP ports and work as follows: 1. if files change on client machine, inotify detects it and preforms a push from the client to the server. (I ge...

Ruby on Rails Server hangs/lags randomly for long periods

I have a program that makes a simple Ruby on Rails server go live. The server is used to communicate and collate data between computers on the same network. I have not done anything fancy to the Ruby stuff. I have simply used scaffold to generate 3 models and that is it. The problem is that after a while (many HTTP requests between the c...

Flowplayer: Play an mp3 from a URL that doesn't end in .mp3

Hi, I'm pretty new to flowplayer and have been trying to get it to play an mp3 where the URL doesn't end with .mp3 but streams mp3 correctly. Could someone please give me some direction? This is how my code looks currently: flowplayer( "player", "flowplayer-3.2.2.swf", { plugins: { ...

Manage opend connections on TCP server

Hi I have a TCP server application which is listening for incoming connections. after establishing the connection and some send/receive operations i want to close the connection by the server. for the first time server successfully close the connection but the client cant make another connection, or it halts. but if I close the connectio...

Glassfish 2.1 unrelyable deployment

Hi there, i have a glassfish 2.1 server plugged into my eclipses(helious) and it seams that its very unrelable when i deploy my project. I have a very simple EAR wich i wish to deploy and view the web servies of initialy it sucseeded. Since then has been very temprimental sometimes it will deploy and other it will say its depoyed but ...

Why Account policy is off

Possible Duplicate: Why Account is off Hi In group policy, local policy and account policy have a lock icon and have been disabled. I cant config them. I don't know why? ...

Setting up a mercurial server on media temple grid

Hi, I have successfully installed mercurial on media temple grid server. But I can not find any information about setting up a mercurial server on grid so I can push/pull multiple repositories on my grid server. How can I setup a mercurial server with multiple repositories on media temple grid server? Thanks. ...

NGINX Secure Subdomain

I am looking to set up a secure subdomain on my server. Here is my NGINX configuration... This works but I'm looking for htp[s]://transmission.example.com to proxy pass locally to 127.0.0.1:9091 and htp://example.com to proxy_pass to the app_server. This works, I can can go to htps://example.com and htp://example.com but I would like t...

windows azure cspack error The system ca nnot find the file specified. File name: 'Microsoft.ServiceHosting.Tools.MSBuildTask

Hello I am trying to package an azure cloud solution on a windows 2008 server machine from the commandline using cspack.exe, the azur packaging tool basically crashes with the error message below Unhandled Exception: System.IO.FileNotFoundException: Could not load file or ass embly 'Microsoft.ServiceHosting.Tools.MSBuildTasks, Version=1...

which Java reporting tool to use in 2010 for small/medium webapp

We have a web app with a few forms and some integration with mobile apps. We will be producing reports from the data collected in the forms and the mobile apps. which tool should we choose given how mature they are today as well as how mature they will be in a years time ? We are a NON-PROFIT so the lesser the expense, the better. I und...

Using Java (HTMLUnit) to Scrape a Web Page then Write Results to a mySQL Database

I've been able to use Java and HTMLUnit to scrape a web page, however I'm unsure how I can get this to write the resulting data to a MySQL database on a remote hosted server. I also need this to happen at regular intervals (perhaps once a day) if possible, without having to manually run the program. Is this possible and can I have any g...

ASP.NET Session State Server on IIS 7.5 and Windows 2008 - Not Working

We are moving an application from a hosting environment using IIS 6.0 and ASP.NET session state server (both on Windows 2003) to IIS 7.5 and ASP.NET session state server (on 2008 R2). We are having a problem, in the new environment, where if a user gets moved across servers in the farm, their session state is lost. We had this exact pr...

How to install Bazaar to a shared server via SSH?

If I have SSH access to a shared server (running centOS) and I want to install Bazaar. I do not have root access, but Python is already installed on the server, so that shouldn't be a problem. I really don't know where to begin after logging into the server. I'm assuming the first step is to copy the Bazaar application files onto the se...

Looking for FTP Server Java library

I'm looking for Java FTP Server library, which lets to replace DAL with lets say a DB data. So far, i saw that in Apache FtpServer there is an option to intercept some of the commands using FTPLet container, however it is missing the most important command such as LIST. ...

Is there a commercial grade Git server product

Does anyone know of commercial server product for managing GIT repos analogous to FogCreek's Kiln? If any, it would be nice to get some rundown of some most notable features it boasts. PS - it does not have to be necessarily commercial software ... commercially supported would do just as fine, but it has to be installable server softwa...

Microsoft Outlook/Exchange server-side mail processing

I would like to be able to process incoming emails for a particular account. Things like parsing subject/body, process/save any attachments, upload processed data to a database, etc. Another thing I have seen at one firm I worked at that I would like to be able to replicate, is setting up an email account that processes the subject of i...

Is it possible to remotely call methods on another computer through AIDL (Android Interface Definition Language)?

I am curious whether the AIDL only serves for inter-process communication between several Android apps on the same device, or AIDL provides much wider functionality. Let's say I have a Java application running on some server, is it possible to remotely call methods on that server through AIDL from an Android phone? If yes, do I need som...

Upload file onto Server from the IPhone using ASIHTTPRequest

Hi I've been trying to upload a file (login.zip) using the ASIHTTPRequest libraries from the IPhone onto the inbuilt Apache Server in Mac OS X Snow Leopard. My code is: NSString *urlAddress = [[[NSString alloc] initWithString:self.uploadField.text]autorelease]; NSURL *url = [NSURL URLWithString:urlAddress]; ASIFormDataRequest *req...