client

WinInet C++ ftp template?

Starting from scratch, would like to create an ftp application using WinInet. Looking for a real basic example in C++ that will compile and get me started. Thanks. ...

WCF Integration with Legacy Remoting Client

I am facing a problem. Please explain if this is possible or not. 1)I created a Service Library (.Net 3.5) 2)Created a Windows Service (.Net 3.5), added ServiceHost and implemented my ServiceLibrary to work as a TCP Endpoint. 3)Next I created a Console Client (.Net 3.5) and tried to get data from my TCP Endpoint…(svcutil….proxy.cs ...

WCF Dispatcher for outgoing message from client side

I was programming a server side exception management by injecting an IErrorHandler into the ChannelDispatcher and all worked pretty well. I wanted someting similar at the client side to to catch exception say when the server went down unexpectedly (results in channel faults). I know most of the example out there puts all method calls to ...

on writing a POP3 client in C

Hi, I am working on a simple pop3 client in C and I encountered the following issue: In AUTHORIZATION state, the server will never recognise my password: Connection successful: +OK GMX POP3 StreamProxy ready user [email protected] +OK May I have your password, please? pass ****** -ERR Username or password incorrect but the same su...

Virtual world help

Hi. I want to start writing a multiplayer 3D game. It will be a virtual world, that user are represented as players. Every player, is a 3D model. I'm going to write this in Java and JOGL, so it will be cross platform and accessible through the web (applet). The server, will be wrriten in C++. When a user clicks with his mouse on some p...

Run Server Application in Client Browser

I am working with a relatively small and simple desktop application whose output feeds into a larger web application that I am working on. I had originally wanted to mimic the desktop app in my web app, so that the end user did not need the desktop app installed locally. I now know this won't be possible. So, if I were to install this...

Good book for writing (java) CLIENTS for sundry web services?

It seems that most of the questions I have to ask on Stack Overflow are about setting up clients for web services. Typically in this case, you have to "deal" with what the service provider has -- you are not at liberty to demand "better" technology be used by the server. The problem of the day is very closely related to this: http://...

Is there a Perl memcached client that works on Windows XP?

I'm trying to find an alternative to the Cache::Memcached Perl module that works with Windows XP. Or, to somehow get Cache::Memcached working on Windows XP. A bit of background: the production environtment (web server) is Solaris 10, which I've already installed memcached and Cache::Memcached, and all works fine. However, the developme...

Efficient way to stream Webcam from client to a server C#

Hi, I've set up a custom tcp connection between my client and the server. I'm making a simple chat program. So far the users are able to talk to each other and send files. I'm adding a webcam chat and I've used AForge.Net for grabbing the frames from my webcam. But sending these captured frames from the client to the server is taking t...

Quick Java LinkedList problem

Basically I'm rather new to Java and I have a problem with understanding a line and getting it to work. Heres the line of code: LinkedList<ClientWorkers> clients = SingletonClients.getClients(); Heres the procedure its in: ClientWorker(Socket client, JTextArea textArea) { this.client = client; this.textArea = textAre...

Designing a client/server app to update client software automatically

I am designing an app using .NET 2.0 remoting. It has a single server and multiple clients which are workstations or laptops which may be on or off-line at any time. Part of the design is that the server holds a copy of the client installer MSI. The plan is that for the first installation, the clients will be rolled-out using group poli...

Java socket server, C# socket client, communication problems?

Erm, I'm new to sockets and even newer to Java, so the Java side is basically copied and pasted. The C# side is a little more self-made. I've come to think that it may be some difference in the way Java and C# interpret strings; I've gotten it to partially work using the now deprecated "readLine" method in Java. On the C# side: pr...

Communicating applications without Event hooks.

I want to have my applications communicate to each other. I think something like a server-client model would suit me well, but I was also wondering if there was a different way. I want this way to not involve those windows event hooks. ...

Why is it a bad idea to use ClientLogin for web apps in the Google API?

I just picked up the Google API today to allow some users of our site to upload videos to our own organization YouTube account. I Don't want our users to know our user name and password, but rather give them the option if they want to upload videos to youtube or not. If they choose to do it, they check on a check box and hit the submit b...

Can a Flex client app connect to BlazeDS running on a different server?

As far as In understand the Flex technology, a Flex client connects to a Flex server to retrieve business information. Is this the only allowed connection for the client, back to the originating server? Or can a Flex client also open a secondary connection to a different server wich runs BlazeDS for message exchange? (This might offer an...

How can I add attributes to the root node of an XML doc in javascript

Hi Everyone, I am using the sarissa javascript library to create xml on the client in a web application. My question is how can I add attributes to the root node? I am really trying to pass a small xml string to the server like basically a 1 liner of XML. I tried this and it doesn't work. oDomDoc does not support the "setAttributeNode" ...

How to set Firefox Profile: Selenium RC, .Net Client Driver?

I'm using Selenium RC + .Net Client Driver. I've created a Firefox profile in my c:\selenium\ directory. Here's my code: Dim MySelenium As ISelenium = Nothing MySelenium = New DefaultSelenium("localhost", 4444, "*custom C:/Program Files/Mozilla Firefox/firefox.exe -profile c:/selenium/", "http://www.google.com/") When I run this, I ...

problem with opening new document in document library with form authentication

i am working on Form authentication. After enabling Client Integration to YES i am getting all the menu items in document library.But when i am opening a new document or my own template it is showing error like word was unable to read it may be corrupted. ...

python Client hangs when no data to receive from server and hangs in that thread w/o letting client send.

I am trying to figure out how to get my client to send and receive data 'simultaneously' and am using threads. My problem is that, depending on the way I set it up, the way here it waits for data from the server in the recieveFromServer function which is in its own thread and cannot stop it when nothing will be sent. The other way it j...

Web enabled .EXE

Is it possible for a website to automatically run an external .exe file upon visiting? That is, an .exe file that is not already on the client file system. If so how is this possible? Also, i've read about the use of HTA files or ActiveX components or Java in this process. Is it possible for a java applet to write code to a client's file...