communication

controlling bluetooth connection in matlab

we have a project in which we have to pick randomly generated numbers from a remote device, say mobile. there is a simple java application to generate numbers. next, we have to recieve those numbers in our matlab program via bluetooth connection with the device. assuming those numbers are temperature readings, we want to recieve a new n...

Blackberry Development, communicating two Blackberry device in a multiplayer game programatically

We are developing a game application for Blackberry, which will have multi player option to let two or more player compete against each other. We have implemented the logic for that and already two or more player are able to play the game simultaneously on single device. Now we want to upgrade our application so that two or more user c...

How do I get through proxy server environments for non-standard services?

I'm not real hip on exactly what role(s) today's proxy servers can play and I'm learning so go easy on me :-) I have a client/server system I have written using a homegrown protocol and need to enhance the client side to negotiate its way out of a proxy environment. I have an existing client and server system written in C and C++ for t...

Filtering in Cisco Unified Communications Manager using AXL programming

0 Hi, I want to implement a Application which gets values from CUCM resource. I am currently using the AXL snippet <firstname>FirstNameFilter</firstname><lastname>LastNameFilter</lastname> This will work as & between two filters. for example my filter is FirstNameFilter = sam* LastNameFilter = joy* this will return the entri...

Access COMPORT 1 through three different applications.

Hi I have an SMS Appliaction, which receives the messages through GPS Modem and revert back through GPS Modem. The Modem is using COM1. Now, i need two more appliactions which can send messages through the same GPS Modem. I tried making a webservice which can access the COM1 to send data, but when i try to connect through webService,...

RS 232 Communication in ASP.NET 3.5?

using ASP.NET 3.5 WebForm using C# 3.0, is it possible to setup a RS 232 communication with a device? I need the WebForm to be able to read and write data to the serial port. I would appreciate if there are some good examples, thanks. I understand that under Components, there is a SerialPort .NET Component, but it seems to me that it ca...

Send SMS through Asp.net via gsm modem

Is it possible to detect GSM mobile (any kind) which connected through serial port to computer and then be able to send SMS through this mobile phone to other mobile phones from asp.net website running under iis(only 1 system), could anyone help me and guide me, I wrote a program which could open COM port but still couldn't detect mobile...

Pass data from thread into Activity

Hi, I am want to pass data back from a Thread to Activity (which created the thread). So I am doing like described on Android documentation: public class MyActivity extends Activity { [ . . . ] // Need handler for callbacks to the UI thread final Handler mHandler = new Handler(); // Create runnable for posting f...

Communication between forms in C#

In C#, using winforms, what is the best way to make forms talk to each other? Sending data, messages, strings, whatever, from on to the other? Delegates? Ideas? ...

Interconnecting Emulator Instances Android

Hi all I want to communicate two emulators via DatagramSocket in Android. Each of them is a Node in a P2P system. Thus each of them has a server Thread and client Thread (created per GUI event). This is how I create server public static final String SERVERIP = "10.0.2.15"; //... run() { InetAddress serverAddr = ...

Interface between a DSP/Microcontroller and a PC application.

I'm using a DSP to control a sensorless brushless DC motor, The DSP is on a board which has a parallel port and a jtag connection (it's an eZdspTMS320F2812). What would be the best way to communicate between a PC application and the DSP as it was running? Ideally I'd like to have a GUI program with buttons like start, stop, accelerate, d...

How to send a message from iPhone to Mac/PC

Hey guys, I'm looking to start a new application up - the concept's really simple I guess. You press a button labelled '1' on the iPhone and it sends a message to the PC or Mac that makes the mac/PC respond exactly as if the number '1' had been pressed on the computer's own keyboard. Now I think I'm going to have to do some serious re...

Need help designing an inter-process comm layer

Hello everyone, I have several process in my system that need to communicate with each other. Some of the processes need to pass chunks of data 60 times per second continuously, and some are very sporadic. Most of the processes are in C#, one is C++. All running on the same windows 7 machine. Right now each process has it's own diff...

Is HTTPS as a way of securing client/server communication "secure enough"?

Hi, Application I am developing does some kind of server-side authorization. Communication is done via secure channel (HTTPS in my case, with valid SSL cert). I plan to implement something that will verify if remote server is exactly who he claims to be. I know that no client-side protection is unbreakable, especially given enough time...

How does a good "spec" differ from an unclear "pray?"

Hi, I am sure everybody knows the 5Ws, a formula for getting the "full" story on something which is used in journalism. Is there a formula like this -I mean, like that questions should be answered for example- so that a "spec" can be considered as totally complete. Because sometimes I face some features with a spec that sounds like a ...

Android getting a Service to communicate with an Activity?

I currently have a Service and an Activity in my application. I currently bind the Service to the activity without using AIDL as the Service and the Activity are in the same application. This allows me to call the methods from the Service within my Activity when I require them, however it doesn't let me call the methods of the Activity...

Can python share info like .net remoting?

I known python can use pipe to communicate between two process of py. But, data and functions of this method are not clear. I like .net remoting better. So, can python realize that approach? ...

SOAP or REST suitable for non-query-response communication?

We are building a proprietary system involving a client and a server linked over TCP/IP. Occasionally, the server will have some new expected or unexpected information that would be of interest to the client. My understanding is that SOAP and REST are query/response systems that require the client to request something and the server re...

SQL Server Deadlock Problem - How to Resolve ?

Hi All We have a SQL Job (2005) that from time to time will fail due a deadlock. The error is as follows ; Transaction (Process ID 52) was deadlocked on thread | communication buffer resources with another process and has been chosen as the deadlock victim. Rerun the transaction. [SQLSTATE 40001] (Error 1205). The step failed. This i...

What are the ways to send a data from one website to other website?

I know only webservices,webrequest&webresponse,sockets are the ways to send/receive data. can someone one please list out the various ways to send the information from one website to other website, and their pros&cons? Which one is best under which situation? ...