client

How to display webcam on client side only?

I'd like to show a webcam inside a browser without any server interaction. Everything should happen client side with minimal plugins usage. This would replicate most default webcam software bundled with the cam itself. ...

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...

.NET remoting events sent to individual clients

I have an application that implements a simple timer (among other things). I wanted to use .NET remoting to be able to access the timer elapsed events from multiple other applications running on the same machine. I used: http://www.mctainsh.com/Articles/Csharp/RemoteCallback.aspx#A%5Fsimple%5Fexample as a reference for setting up the ev...

Analyzing client requirements and formulating software functionalities

How does one go about properly analyzing the requirements of a client in terms of software and writing down a list of functionalities? Feel free to share your own experiences. ...

Solutions for redundant server and client code?

In our system, the code which exists on the client side (in Flash and Javascript) mirrors the code that exists on the server side (e.g. in Python or PHP), normally with respect to the models, the methods available for those models, and the unit tests written for them. This becomes a problem in systems where you want to minimize data tran...

Implementing a client for ActiveMQ events

I can listen to events from a certain topic in an ActiveMQ server using a simple asynchronous listener and print the incoming events to the console (code to that actually comes as an example in the activemq-cpp library). I would like to create clients on other machines that will listen to these events and update their displays. My quest...

ActiveMQ AJax Client

I try to write a simple Ajax client to send and receive messages. It's successfully deployed but I have never received msg from the client. I am beating myself to think out what I am missing, but still can't make it work. Here is my code: I creat a dynamic web application named: ActiveMQAjaxService and put activemq-web.jar and all n...

Django app for different clients

I want both mobile phones and regular PCs to be able to use my app by navigating to the same URL, but I want them to get different versions of the code. How do I tell Django to give different versions of the code to different clients? ...

.NET TCPListener limitation ?

Hi all, I have a question about the usage of TCPListener in .NET... I am thinking about a client/server application and being new to this kind of application I have search a bit around the web and the solution which come the more often is to create a new thread for each new client connection. This solution seem fine but I was wondering...

Sending E-mail from the client

hi guys i need some help the vb.net. my problem is that i have got an formular with "name" "password" "e-mail" and some other.... i want that the client file in his for example name and i want to recieve an e-mail at my e-emil acc. Can somebody help my please? ...

GlassFish Starting Up Java SE Client - No Initial Context Exception

Hi I have developed a java se client that calls some session beans on a glassfish server v3. I connect to the bean remote interface like this. context = new InitialContext(); em = (ICrudService) context.lookup("java:global/BackITServer/CrudServiceImpl"); This works fine from inside eclipse (gf-client on build path). When I export my...

server/ client server connection

I have a server side program that creates a listening server side socket. The problem occurring is that it seems as if the client side sends a connect request it gets rejected if the server side socket is listening but connects if the server side program is not running. I can see the server side program getting the client request when de...

How to create a simple server/client application using boost.asio?

I was going over the examples of boost.asio and I am wondering why there isn't an example of a simple server/client example that prints a string on the server and then returns a response to the client. I tried to modify the echo server but I can't really figure out what I'm doing at all. Can anyone find me a template of a client and a te...

Asp.Net MVC2 Clientside Validation problem with controls with prefixes

The problem is: when I put 2 controls of the same type on a page I need to specify different prefixes for binding. In this case the validation rules generated right after the form are incorrect. So how to get client validation work for the case?: the page contains: <% Html.RenderPartial(ViewLocations.Shared.PhoneEditPartial, new Ph...

Communication protocols in UDP

After many hours, I have discovered that the given udp server needs the following steps for a successful communication: 1- Send "Start Message" on a given port 2- Wait to receive from server on any port 3- Then the port dedicated to you to send further data to the server equals the port you have received on it + 1 So I am asking if thi...

How does jQuery .data() work?

My Javascript knowledge is pretty limited. Instead of asking several javascript questions I got the "message" from Stack overflow and started using jQuery right away in order to save me some time. However several times I do not undestand the "magic" behind jQuery and I would love to learn the details. I want to use .data() in my appli...

Design Question: communication between objects within same client-server app

Have a SocketClient which communicates asynchronously with a server. SocketClient relies on Socket.BeginReceive() and Socket.EndReceive() to communicate. As incoming data is received by the Socket, it's immediately decoded by System.Text.Encoding.UTF8.GetDecoder() and parsed into strings delimited by '\n' char, which strings are then pas...

Building a JMX client in a servlet installed on the Deployment Manager

Hi guys, I'm building a monitoring application as a servlet running on my websphere 7 ND deployment manager. The tool uses JMX to query the deployment manager for various data. Global Security is enabled on the dmgr. I'm having problems getting this to work however. My first attempt was to use the websphere client code: String sslP...

server client iphone

hi, i am building a map project and i want to save my annotations to the web and download them anytime i want. What's the best way to do that??? ...

Cxf HTTPS client example

Hi all, I need a Cxf client which can deal with HTTPS wsdl url. The cxf documentation isn't really big, so i would appreciate some help. Is there any example of what i want ? google isn't my friend today :( Thx for helping me. EDIT1: I just don't know how to do this. When i try : JaxWsProxyFactoryBean factory = new JaxWsProxyFacto...