client

Chat client on Mobile

We have to develop a chat client for mobile. The devices should be for the following: Android iPhone Blackberry Symbian Windows mobile Windows CE Palm Which technology we should use for the multiple OS computability. We like the most of code common. This chat client also support the video and audio chat. ...

What's the quickest way to write a simple browser client to talk to a REST server

I'd like to create a simple browser client that I'll to demo the REST API we have implemented on a server. I need basic functionality like Create an item on server using POST: client fills up a few parameters and posts Get list and display using GET: client sends a query, gets an XML list of items and displays them I don't need any f...

How to implement a hub in Python

Dear all, I need to implement a TCP server in Python which receives some data from a client and then sends this data to another client. I've tried many different implementations but no way to make it run. Any help would be really appreciated. Below is my code: import SocketServer import sys import threading buffer_size = 8182 ports = {...

Are binary protocols dead?

It seemed like there use to be way more binary protocols because of the very slow internet speeds of the time (dialup). I've been seeing everything being replaced by HTTP and SOAP/REST/XML. Why is this? Are binary protocols really dead or are they just less popular? Why would they be dead or less popular? ...

Action Script SSH Client

Have you seen AS SSH Client? ...

Background login with OAuth

I'm soon to write a web based Twitter client which I plan to allow users to login with OAuth. My question is; can, once a user has logged in once already, my app login later and 'background' process their feed for them? I.E. does the user have to 'be there'? ...

xmlrpc client call in python does not come back

Using Python 2.6.4, windows With the following script I want to test a certain xmlrpc server. I call a non-existent function and hope for a traceback with an error. Instead, the function does not return. What could be the cause? import xmlrpclib s = xmlrpclib.Server("http://127.0.0.1:80", verbose=True) s.functioncall() The output is:...

Clojure best way to achieve multiple threads?

Hello! I am working on a MUD client written in Clojure. Right now, I need two different threads. One which receives input from the user and sends it out to the MUD (via a simple Socket), and one that reads and displays output from the MUD, to the user. Should I just use Java Threads, or is there some Clojure-specific feature I should be...

Is an Oracle 9i Client compatible with an Oracle 11g Server?

We currently have an Oracle 9i Client running on an HPUX Itanium platform and are looking at upgrading the Server from an Oracle 9i Windows 2000 Server to an Oracle 11g W2K3 Server. Is an Oracle 9i Client compatible with an Oracle 11g Server? Are there any problems with this configuration or is it recommended to upgrade the Oracle 9i C...

UDP Socket Client in .NET

I use UDP Sokckts in my client application. Here are some code snippets: SendIP = new IPEndPoint(IPAddress.Parse(IP), port); ReceiveIP = (EndPoint)(new IPEndPoint(IPAddress.Any, 0)); socket = new Socket( AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); socket.Bind(ReceiveIP); And to Receive (while(true)): ...

UpdatePanel Javascript Error on Adding Clientside Listbox items After postback

Hi, I have a Dynamic list control of Metabuilder.Webcontrol inside UpdatePanel,I am adding removing Items using Javascript from the list control. It works fine Inside UpdatePanel. I have another control Gridview along with checkbox's which require postback to get populated. Once It gets populated successfully inside update without po...

How to configure custom binding to consume this WS secure Webservice using WCF?

Hello all, I'm trying to configure a WCF client to be able to consume a webservice that returns the following response message: Response message <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://myserv...

Differing form size between XP and 7

I am developing a C# WinForms app on my XP dev machine with Visual C# Express 2008. I set the form to have a size of my liking with Width and Height on the designer and all looks good. I also set these dimensions to the MaximumSize property. Deploying the app to another XP machine, and the app looks like it does on my dev. However, in...

Web Service Client Java

I generated java web service client from here --> http://api.search.live.net/search.wsdl.. I want to make search and listing the return values. How ı can show result ? my code is : import java.rmi.RemoteException; import com.microsoft.schemas.LiveSearch._2008._03.Search.*; public class searchtry { public static void main(String[] a...

Webcam streaming in a WPF application

I noticed few similar questions already, but didn't find exatly what I want. I'm trying to do the following. Have a client and server Webcam application. Server application is on a PC with a webcam connected to it and it streams the webcam output. Client application connects to a Server and shows the webcam video. What's the best and e...

Python socket error on UDP data receive. (10054)

I currently have a problem using UDP and Python socket module. We have a server and clients. The problem occurs when we send data to a user. It's possible that user may have closed their connection to the server through a client crash, disconnect by ISP, or some other improper method. As such, it is possible to send data to a closed sock...

Connect two client sockets

Let's say Java has two kind of sockets: server sockets "ServerSocket" client sockets or just "Socket" Imagine the situation of two processes: X = Client Y = Server The server process Y : has a "ServerSocket", that is listening to a TCP port The client process X : sends a connection request through a "Socket" to Y. Y: Then the acce...

jquery serial format

I have a website that prompt the users to enter serial number for a product. I have one text box and the user needs to enter the serial in this format: xx:xx:xx:xx:xx:xx Is there any component that will enter a : after every two characters? Or maybe I should split the text box to 6 text boxes? Alternatively are there any other tech...

how to run soap using apache tomcat

please help me i am new to this field ,i downloaded activation.jar, xerces.jar, soap.jar and mail.jar after this how to run the application. if there is any example available it will be help ful to me. i am totally panic. i dont know what to do .. some one please help me ...

C#.NET Socket Programming: Connecting to remote computers.

I have a typical server in my end and a friend using a client to connect to my IP/Port and he consistently receives the exception: "A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond {MY_IP}:{MY_PORT}"—You d...