server

server based vs client based antivirus systems

can someone compare server based antivirus vs client based antivirus systems? Is it something like that in server side the updates for the antivirus system are downloaded at the server or by a single client attached to the server, and then other clients can locally update their copy over LAN. Whereas in a client side antivirus each upd...

Error accessing tomcat web server from my mac

Hi, support guys in the office can't help and everything has been fine for the last couple months until today. Running OSX 10.6.3 and 1 of only 2 users on mac. Can access a staging server when remoting in to a pc near my desk but not able to access via any of the browsers on my mac (Chrome, Firefox or Safari). An example staging server ...

Cross-site strong secured authentication

There are two websites in different domains, in different server, with different databases, developed in different platforms, both for banking purposes. In the first website (I'll call it "A") the user (bank operator) will login with his credentials. The problem is: They need to put a "link" to the B-site into the A-site, and the user ...

Java telnet server

any one know of a simple telnet server i want to embed in my application and set my own commands something simple not complex . ...

How can I tell if a user has left my website

Is there a way to tell if a user on my website has left (i.e. connection dropped, navigated away etc.) in real time? I am building a RoR website and want to initiate an event as soon as a user leaves my site for whatever reason (e.g. connection, navigating away from domain etc.) Thanks in advance for any help. ...

dataReceived in client side doesn't work ?

I have implemented a simple server-client script like this: Server: class Server(Protocol): def connectionMade(self): while True: self.transport.write('a') Client class Client(Protocol): def dataReceived(self, data): print data What I expected was a string of infinite a's was printed on client window, but actual...

Break server exception

Can any one Download the cmid.ctt File Zong.com.pk http://203.82.55.30/websms/default.aspx?txt_Msg=your-name&amp;txt_MNumber=0333303787&amp;txt_Nick=your-name Still Waiting for Reply.... kindly more Developer to broke the Server expection <SCRIPT language="Javascript"> function alphanumeric(alphane) { var numaric = alphane...

PHP: Possible to access class after page loads via ajax?

I wasn't sure if when a class is instantiated with code in PHP, if is stays in the servers cache where it would be possible to access it with ajax (php file), or if it just dies once the script finishes running. Is it possible to do this with a Keep-Alive connection or something? I know I'm showing my ignorance in web handle, but at th...

Any open source server based on ACE framework?

Hi, anyone aware on open source project that uses ACE as the framework? Thanks, I. ...

QQ - Does .NET Framework 4.0 require restart?

Getting .NET 4.0 installed on our prod server, just a quick question, does installation of the framework require restart? I don't remember anymore! :) ...

Setting up a ssl server socket with signed certificate

I'm trying to make a simple server which listens on a port and authenticates with ssl. I have files server.crt server.key my-ca.crt obtained with a openssl tutorial (http://www.vanemery.com/Linux/Apache/apache-SSL.html). my-ca.crt is my own CA certificate, server.crt contains the x509 server certificate (signed with my-ca.crt) and ser...

HttpWebRequest error 403

I am new in C# and have requirement to retrieve a url from C#. Most of case it’s working fine but in one case its throws an error. url is as follows http://whois.afrinic.net/cgi-bin/whois?searchtext=41.132.178.138 Error is: Exception in the HTTP request for url: http://whois.afrinic.net/cgi-bin/whois?searchtext=41.132.178.138 The remo...

High Performance Socket Server using Perl

Hi, i need to write a socket server using perl which will run on a 64bit linux (2.6x kernel). Is there a library to support IO Completion Ports and some equivalent on Linux? I need to listen to multiple ports. 8000-8100 is there a smart way doing this? The protocol has to use a length byte. What threading library do you recommend?...

Basic SSL Server Using Twisted Not Responding

I am currently trying to pull together a basic SSL server in twisted. I pulled the following example right off their website: from twisted.internet import ssl, reactor from twisted.internet.protocol import Factory, Protocol class Echo(Protocol): def dataReceived(self, data): """As soon as any data is received, write it back...

Portable gcc executable?

So I'm trying to break a few rules quietly. GoDaddy doesn't seem too keen on letting me have Git, and for some reason think that one needs root access to run any gcc (crazy web-hosting support teams). As I try to convince them to do what I tell them to, I'm trying to find a gcc that I can send to my server so I can build git on my own an...

What are the files from the 'make' of git that I actually need to run git?

I'm trying to "portablize" git, so I want to send the required executables from the make process of git to my hosted web server. Can I do that? Do you think the executables will work? ...

twisted three-layer server-client model ?

I'm trying to do a three-layer server-client: 1st layer: send data to 2nd layer 2nd layer: receive data from 1st and send it to 3rd 3rd layer: receive data from 2nd layer By this way, 2nd layer need to be implemented as both server and client, is that doable with twisted ? ...

How to communicate with server's database from android phone?

Hello, I'm currently making an app where it would communicate with a simple database that will be hosted on a server. The database will only have three columns, a _id, title, and url link. I've successfully done this using the phone's local database using SQLiteDatabase but I want it so that any other phone can also access the same data...

Which good ways exists to reload page by server for news popular website?

Hi, Which good ways exists to reload front page by server every time that new article placed by editor in front page for (news popular website like fox.com, cnn.com)? Thanks ...

Selector.select(timeout) x Selector.selectNow()

Hi, I'm implementing a Non-Blocking HTTP server in Java and decided to use pure Java NIO. I'm combining a NIO Selector with a small thread pool to perform the operations indicated by the selector. Leaving the system choose the default selector (tested in Linux 2.6 epoll and Mac OS Snow Leo KQueue) and using Selector.select(TIMEOUT); I ...