The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
27 views

iOS app no longer receiving push notifications

We had push notifications all nicely set up for our iOS app, but they stopped working a few weeks ago. It looks like our requests are sent to APNS ok, but push notifications are not being received. ...
0
votes
1answer
16 views

UDP received datapackets but prints out funny results.

this is my first time here. I will outline my problem. I am doing a simple UDP file.txt transfer from sender to receiver. It arrived as prompt.. BUT, when I print the content some came out ...
-1
votes
0answers
62 views

Android and Arduino bluetooth sending/recieving

Basically i hooked up the arduino pro328 to a bluetooth mate gold, and am trying to send recieve data to/from an android app. The arduino recieves data sent by the android but it appears as garbage. ...
1
vote
0answers
53 views

Cloud Foundry registration email not received

I signed up for a Cloud Foundry account, received a welcome email: Thank you for your interest in Cloud Foundry - the industry's first open platform as a service. You are now registered with ...
0
votes
1answer
11 views

Corona Client Side, I Receive Limitless Messages

I develop a client side on Corona SDK but I have a problem: I can connect to our server and receive the first message from the server. And also I can send back an answer. But afterwards I begin to ...
0
votes
1answer
56 views

C# Client-Server issue: client receiving packet only on close

I have a little problem. Basically I made two C# applications, a client and a server. The client connects to the server (via sockets), then sends a packet containing some text, and the server should ...
-3
votes
0answers
19 views

No messages received from the PHP contactForm [closed]

i have a PHP contact form , i tried to test the form , but when ckecked my hotmail email i found no messages received from the form ! <form id="contactForm" action="processForm.php" ...
2
votes
0answers
32 views

Java UDP sending and receiving thousands of data

I have a database with different FPS games IP addresses and I need to query each server 5 in 5 minutes. With the query message response (received from the servers) I know if the server is online, how ...
0
votes
0answers
39 views

UDP packets can't be received by client on WP7

I've tried to make an UDP client that can run on a WP7 device, communicating via a wifi network. I've used this example from MSDN: ...
0
votes
0answers
18 views

WordPress Fast Secure Contact Form recieve data (silent remote sending)

I'm looking for a way to retrieve the data Fast Secure Contact Form sends to a remote URL. I thought creating a php file handling $_POST data would do. Apparently it doesn't. Should I somehow make ...
0
votes
2answers
47 views

Cannot received UDP packet on Iphone w/ AsyncUdpSocket

Hi guys im working on a project at school and I got a problem, I'm able to send UDP packet to different adress but I can't read UDP packet sent to my iPhone, after receiving an UDP packet I want the ...
0
votes
1answer
23 views

understanding socket recv behaviour

I'm reading the manpage for recv http://linux.die.net/man/2/recv , but it doesn't really answer the questions I have, so I hope I can get some answers here. I call recv this way: numBytes = ...
1
vote
2answers
68 views

Post Form - I Didn't Receive Email

I can understand tags a bit, also I´ve successfully edited a CMS named GetSimple and all works fine (few months ago). Now, after a couple of months I´ve started with this and cant go through... I've ...
0
votes
0answers
76 views

Facebook chat api Authentication complete Done, now next

I implemented Facebook chat api php from http://developers.facebook.com/docs/chat/,now i get all the messages: [INFO] Opening connection... connection open Authentication complete Done, now next how ...
0
votes
1answer
38 views

How do I receive the file on server side?

I have a code like this in my local exe to upload a file in a certain url: private static void SaveTToWeb() { try { WebClient client = new WebClient(); ...
-3
votes
0answers
11 views

Connecting and transmitting a simple signal to a phone [closed]

Is there any way that I can connect a wireless transmitter or an rf transmitter to a phone and then have the phone read when it recieves a signal.
0
votes
1answer
79 views

MPI - Sending and Recieving a column

I need to send a matrix column from one process and recieve it from another. I tried running the following program, but i'm getting a weird result (at least i think so); Only the first element of the ...
-2
votes
0answers
67 views

How do you send and receive all file in folder from local server [closed]

For my school, I'm making a file transfer mobile application. How do I send and receive a or all file to the local server (my computer, with wamp)? I find this method for send: public void ...
0
votes
1answer
33 views

Reading mails dynamically in Java

I have a thread which checks my inbox in a loop every 10 seconds. I create my mail session and store and connect to the store before the loop: store.connect() while (running) { ...
0
votes
2answers
53 views

Benefit of small TCP receive window?

I am trying to learn how TCP Flow Control works when I came across the concept of receive window. My question is, why is the TCP receive window scale-able? Are there any advantages from implementing ...
0
votes
0answers
91 views

Receive Data from UDP port over vpn connection

' Hi i'm using code below to connect to a remote client ip(10.8.0.6) over my vpn network and receive data on it's port 6112(port is open and have data ).my client ip is 10.8.0.10 and the game running ...
0
votes
1answer
33 views

JMS message not delivered until receiver times out

In my application,I am using MDBs to listen to messages from a queue and then posting a request message to another queue. This posting of message to another queue happens within the MDB. Then I wait ...
0
votes
1answer
188 views

Trouble with implementing a C program that sends and receives raw ethernet frames

First off, I am fairly new to the topic of the ethernet and the data link layer and I am trying to write a C program which allows the sending and receiving of ethernet frames. I am trying to have my ...
3
votes
5answers
79 views

php send message to another php file

Is it possible to have one php file send a "message" to specific users on another php file? Note that the "message" needs to be able to received by a PHP file that is already running, so simply ...
1
vote
1answer
53 views

How to avoid `missing type` error while chaining partial functions

I'm currently studying Scala & Akka and developing test application for it. In this application almost all actors log unhandled messages for ease of debug: import akka.actor._ class TestActor ...
0
votes
1answer
120 views

Send file via intent action_send to another device with result code and use it

I'm using this code to send a file to another device: Intent i = new Intent(Intent.ACTION_SEND); i.setType("image/*"); i.putExtra(Intent.EXTRA_STREAM, uri); ...
1
vote
1answer
97 views

#Ruby - Remote UDP Socket don't receive the packets

i created two files with udp socket programming, an sends and other receive, i did put the file that receive in another computer with different provider, i executed the sender and after the receiver, ...
2
votes
4answers
73 views

How to let a C++ application to receive data from PHP? [closed]

I have developed an application on C++. And I would like to connect my website to the C++ software. I want the website to send a string or an image to the C++ application; then after the C++ receives ...
3
votes
1answer
153 views

D language Socket.receive()

I wrote a socket server using D on Windows and now I want to port it on Linux. Here is code summary: /* * this.rawsocks - SocketSet * this.server - Socket * this.clients - array of custom client ...
0
votes
0answers
176 views

UDP server and receive buffer (Windows, IOCP)

I want to create a UDP server which can handle a few hundred clients. I read that it's still best to use only one socket and port on server side. So I want to call one WSARecvFrom for every client on ...
0
votes
2answers
58 views

Wait for server before receiving stream

I'm trying to implement a client-server socket system based on this MSDN article and I have it working. If I do this it works fine when the server is returning a string immediately. client.send(); ...
0
votes
2answers
185 views

Delphi. Receiving data from an SQL table

I have a form which needs to fetch and display data from a MYSQL database. The SQL code which I have written works fine, as I have tried to execute it within MYSQL. I have also used a similar ...
0
votes
1answer
112 views

UDP Java Datagram

Writing a client/server based on UDP using java. When the server constantly gets packets from the socket: socket.receive(packet); And even though the client is sending multiple packets, say ...
0
votes
0answers
87 views

Udp Socket IPEndPoint return 0.0.0.0:0

Thats my code with C# I am receiving data HeartBeat. I want to get client IP address from the server. If I use this line of code, I get client IP successfully: udpServerSocket.ReceiveFrom(buffer, ...
0
votes
2answers
69 views

Erlang: Multiple matches within receive..end for finding case..of?

I'm having trouble compiling the following code, 2> c(match). match.erl:13: syntax error before: '{' match.erl:2: function receiver/0 undefined error match.erl -module(match). ...
1
vote
2answers
143 views

Erlang: If..else if statement within receive..end statement?

I'm trying to create an if..else if condition in Erlang within a receive..end. statement in order to pass two variables A and B so that they can be tested for equivalence. In the shell I tried ...
0
votes
0answers
23 views

sensor programming in linux

we are having a moisture sensor working under a windows system for calculating the moisture contents. It is working with the help of a software called pelles c. Now we are in need of that same c ...
0
votes
2answers
70 views

Erlang: Purpose of the second argument in tuple within receive…end. statement?

The snippet shown below from this page illustrates the use of sending messages and one of the things I have trouble making sense of is the second argument within the receive clause for the judge(Pid, ...
0
votes
3answers
59 views

How to deal with short reads with Winsock2?

I'm having trouble with receiving data over a network using Winsock2, with Windows. I'm trying to use a simple client and server system to implement a file transfer program. With our current code, the ...
2
votes
2answers
146 views

Data Tx/Rx status LED function

A lot of hardware comes with a Tx/Rx status LED, but what if your hardware doesn't and you want to see if data is transmitting? If you just set the LED to the value of the line it may go on and off ...
0
votes
2answers
836 views

How to receive data sent by Ajax in a .jsp file

I am using Ajax call in JQuery to send some data to a JSP file. Here is the code: $.post("myscript.jsp", { sg: data1, st: data2 }, function(data){ alert("Data Loaded: " + data); } ...
0
votes
0answers
380 views

android: DatagramSocket.receive only receives the first two Datagrams

i am wondering about a curious problem for hours now. I am sending some data to an android application over UDP. Therefore i created the following UDPReceiver-Class: package com.example.urowatch; ...
0
votes
0answers
262 views

android sip not receiving any calls

I'm unable to receive any calls on my android SIP application, I can register successfully with the SIP server, I can initiate call and invite other users successfully but I can't receive any calls. I ...
0
votes
2answers
90 views

Get Error: Fatal error: Call to undefined function: () in /homepages/44/d1895123746/htdocs/cll/index.php on line 26. How to fix?

I wanna recieve data from my MySQL database. First, here is the code: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Filmliste</title> <link ...
1
vote
0answers
218 views

PHPMailer is not sending email: how to check my wamp server allowance

I am using wamp server and PHPMailer to send a test email. Here is my code: <?php require_once ("includes/PHPMailer/class.phpmailer.php"); require_once ("includes/PHPMailer/class.smtp.php"); ...
0
votes
2answers
45 views

Send js data-id and recieve php?

I'm currently working on how to send a javascript to php server side. I tryed playing with jquery ajax, but it requires a submit (as far as i understand?) before it can send data. My question is how ...
0
votes
1answer
200 views

SFML TCP packet receive

I send a packet as client to server and I want to the server sends that packet forward to all client, here is the code: #include <iostream> #include <SFML/Network.hpp> using namespace ...
0
votes
1answer
137 views

Python IRC bot that reads data returned from a command of the IRC server

I have a similar question to PHP IRC bot that reads data returned from a command of the IRC server I'm using an IRC bot written in Python found widely across the web. I must send a "NAMES" command ...
0
votes
2answers
111 views

receiving structured data KSOAP2 in Android

I'm having trouble trying to receive structured data from ksoap getResponse(); I've already read carefully guide to send and receive data using SoapObjects from site: link to site I'm using this ...
0
votes
0answers
92 views

PHP: receive message from Python (kivy)

I've got a MySQL server set up and my particular setup needs to use PHP as the middleman between my Python program (kivy app) and the MySQL server. I do know how to send a message from my app to the ...

1 2 3 4 5 6