Tagged Questions
The send tag has no wiki summary.
10
votes
2answers
1k views
C# send image over HTTP
I have a small HTTP-Server here written in C# and until now I only needed to send raw text back to the sender. But now I have to send a JPG-Image and I dont unterstand how.
this is what I have now:
...
7
votes
3answers
376 views
Why is it assumed that send may return with less than requested data transmitted on a blocking socket?
The standard method to send data on a stream socket has always been to call send with a chunk of data to write, check the return value to see if all data was sent and then keep calling send again ...
7
votes
6answers
6k views
How can I send an SMS from Java?
I wanted to send SMS to particular mobile from a Web application and receive his reply and view to a web application only. Is it possible to create using Java technology?
6
votes
1answer
2k views
Java send and receive SMS. Free SMS gateway?
Yet another SMS question :(
Really, internet is full of solutions and ofcourse none of them I didn't find helpful.
On some questions here on SOverflow I found THIS. But it says that it is not ...
6
votes
4answers
2k views
In Java, send commands to another command-line program
I am using Java on Windows XP and want to be able to send commands to another program such as telnet.
I do not want to simply execute another program. I want to execute it, and then send it a sequence ...
6
votes
4answers
6k views
How send html mail using linux command line
I need send mail with html format. I have only linux comand line and command "mail".
Currently have used:
echo "To: address@example.com" > /var/www/report.csv
echo "Subject: Subject" >> ...
5
votes
3answers
830 views
Send binary file in HTTP response using C sockets
I`m trying to send a binary file (png image) in http response.
FILE *file;
char *buffer;
int fileLen;
//Open file
file = fopen("1.png", "rb");
if (!file)
{
return;
}
//Get file length
...
5
votes
3answers
155 views
I'm using tcp for very many small sends, should I turn off Nagles algorithm? (People also know this as TCP_NODELAY)
I remade this post because my title choice was horrible, sorry about that. My new post can be found here: After sending a lot, my send() call causes my program to stall completely. How is this ...
5
votes
3answers
190 views
What is faster: multiple `send`s or using buffering?
I'm playing around with sockets in C/Python and I wonder what is the most efficient way to send headers from a Python dictionary to the client socket.
My ideas:
use a send call for every header. ...
4
votes
2answers
49 views
How to send sms on switching off the phone in android?
I have a broadCast receiver class which listens on Switching off the phone, Now i wanted to send Sms when the phone is Switching off. Is it possible or not?
4
votes
2answers
260 views
How does RockMelt send Facebook messages?
Everything I've read says that you can't send messages but in RockMelt you can send your friend a beta invite through Facebook messages.
Are they using a preview of the Inbox API? Is there another ...
4
votes
2answers
3k views
Sending a File using Bluetooth OBEX Object Push Profile (OPP)
Is there any way to send a file using the android bluetooth API using OBEX?
I need to send a file to a printer that supports OBEX OPP only.
I can send the file using the android intent ACTION_SEND ...
4
votes
3answers
442 views
Ask the user to send crash log after crash on iPhone
Some application ask the user if they want to send the crash log by email when they restart after a crash. How are they doing that ?
They have to record the log when they crashing and reads this file ...
4
votes
2answers
218 views
Can someone give me a good explanation of 'send' behavior for non-blocking sockets?
I have read the documentation at least 10 times now and have also read some 10 or so code snippets and full programs where non-blocking sockets are used for sending data. The problem is that some of ...
4
votes
1answer
2k views
SMS raw pdu in Android
1) Is there any way that I can send a raw SMS PDU from an Android device?
Or,
2) are there any classes available that can give me access to the PDU headers (for example TP-DCS) so that I can ...
4
votes
1answer
631 views
Scapy SYN send on our own IP address
I tried to send SYN packets on my local network and monitoring them with Wireshark and everything works just fine, except when i try to send a packet to my own ip address it "seems" to work because it ...
4
votes
1answer
2k views
Sending UDP Packet in C#
I have a game server (WoW).
I want my players to download my custom patches to the game.
I've done a program that checks for update/downloading things.
I want my program to send a packet to my game ...
4
votes
2answers
4k views
Python Socket Send Buffer Vs. Str
I am trying to get a basic server (copied from Beginning Python) to send a str.
The error:
c.send( "XXX" )
TypeError: must be bytes or buffer, not str
It seems to work when pickling an object. All ...
4
votes
2answers
493 views
Send e-mail from a form (only HTML, javascript)
Send e-mail from a form, here is the the link to basic HTML code:
W3 Schools
After writing a comment, name and email and clicking Send button the Outlook Express starts-
is it possible to send ...
4
votes
6answers
475 views
How to send the mail from c#
System.Web.Mail.MailMessage oMailMessage = new MailMessage();
oMailMessage.From = strFromEmaild;
oMailMessage.To = strToEmailId;
oMailMessage.Subject = strSubject;
...
3
votes
0answers
70 views
ssl:send in erlang blocks
I am making use of a SSL socket which is upgraded from a TCP Socket. When I am trying to send some data through that socket using ssl:send , it blocks. I have send_timeout option for the underlying ...
3
votes
1answer
106 views
Sending binary data from browser
I wanted to know what I must do for sending data in binary type from client to server?
I am using Chrome 14, and when I send an ArrayBuffer in the client application, I receive a frame with the ...
3
votes
3answers
123 views
PHP mail() email address is different from the email being sent [closed]
Possible Duplicate:
Emails showing from host.myserver.com instead of mydomain.com
Not sure if this will make sense, but when I try to send an email from russell.harrower@mydomain.com it ...
3
votes
2answers
168 views
After sending a lot, my send() call causes my program to stall completely. How is this possible?
So basically I'm making an MMO server in C++ that runs on linux. It works fine at first, but after maybe 40 seconds with 50 clients it will completely pause. When I debug it I find that basically the ...
3
votes
2answers
901 views
Send Gifts from PHP Facebook App?
I need to be able to let users send each other gifts from my facebook app. I know how I'm going to store the gift data in the database, but I'm not sure how the user cans elect friends to send the ...
3
votes
1answer
148 views
When send() returns in socket programming, what does that mean?
when send() returns, there are three possibilities:
1. the data to sent has been copied to the kernel buffer
2. the data to sent has been sent to peer
3. the data to sent has been sent to peer and ...
3
votes
1answer
208 views
is it safe to recv() and send() on one socket concurrently?
I remember having read somewhere that a socket can be regarded as two independent half-duplex channels. Does it mean that recv() and send() of the same socket are actually irrelevant?
if so, is it ...
3
votes
3answers
1k views
With C TCP sockets, can 'send' return zero?
Is it ever possible for the C send function to return zero when using TCP sockets? The man page just says that it will return the number of bytes sent, but I am not sure if it will just return -1 when ...
3
votes
2answers
809 views
How to receive/send files with a java Webservice
So i'm writing a WebService in Java that should receive a file as an input, and then the WebService does some processing on that file, and finally it should send a new file to the client.
My question ...
3
votes
2answers
431 views
The behavior of send() and recv() in socket communication
The following is the setup:
Server Client
| |
accept connect
| |
v |
send msg1-> |
| |
v v
recv ...
3
votes
4answers
819 views
Windows socket.Send data isn't received until socket.Close
I'm developing a server application that asynchronously accepts TCP connections (BeginAccept/EndAccept) and data (BeginReceive/EndReceive). The protocol requires an ACK to be sent whenever the EOM ...
2
votes
1answer
43 views
Tornado Framework (FacebookGraphMixin)
I wanted to try sending App request from my Facebook app to a user using Tornado Framework. I was following http://www.tornadoweb.org/documentation/auth.html but I have no idea how to resolve this ...
2
votes
1answer
58 views
Android: Automatically Record Video And Send Resulting Movie File To E-Mail Address When Phone Call Recieved
I am trying to determine if it is possible to use an incoming call to trigger an Android enabled phone to record video for a particular number of seconds and then send the resulting video file to an ...
2
votes
2answers
295 views
facebook send button returned status code 200
I'm using the facebook social plugin with an embedded ruby url which references: http://www.facebook.com/pages/my_page/my_page_id Specifically, the like button functionality works, but the send button ...
2
votes
1answer
45 views
Timed Out Exception ( Sending Data From Android To PHP Page )
I am trying sending data from android application (with emulator) to web server (a php page) nowadays. Firstly, I had tried this program with emulator and it was working successfully. After that, I ...
2
votes
2answers
141 views
Delphi XE - Send Ctrl+Key to 3rd Party Application
Im using a 3rd Party Application that exports a file. The application uses a hot key (Ctrl + E) as a shortcut for this function.
How can I send this key combination from my Delphi XE application to ...
2
votes
2answers
264 views
Server & client socket connection issue re. send(), accept() and multi-threading
I'm designing a server program in C++ to receive multiple client connections and pass them into threads, however I've reached an impasse.
The socket connections all work fine, as does the ...
2
votes
1answer
104 views
Send parameter to server from android application
I have an android application that requests data from my mysql database. This works fine but when I try to send a parameter for how many items to retrieve I get nothing.
This is my java code:
...
2
votes
3answers
517 views
Facebook Send button causing horizontal scroll
I'm working on Ruby On Rails, and just integrated Facebook Send button in a project. When Clicked on the "Send" button, the popup window is going out of the screen and causing horizontal scrollbar. I ...
2
votes
1answer
62 views
Does Apple keep sending notifications after they have been disabled?
It is widely known that you can disable the reception of Apple notifications from the applications that allow it. But does anyone know if the disabling is made locally (ignoring the notifications ...
2
votes
3answers
1k views
Facebook, Attachment Unavailable error when using the send button?
I am using the send button to share a link and a message on a app but I get this error when I try to read the message:
Attachment Unavailable
The privacy settings on this attachment do not allow you ...
2
votes
2answers
475 views
PHP Web Sockets - Handshake Made but Not Sending and recieving
I've recently downloaded http://net.tutsplus.com/tutorials/javascript-ajax/start-using-html5-websockets-today/
php classes to create a PHP web sockets server.
I've ran the startDaemon through ...
2
votes
3answers
185 views
Allowing my app users to post tweets from a single account
I have a small application that display traffic issues on public transportation in my small country: Belgium.
I made a system in the application that allow users to warn all people when there is ...
2
votes
4answers
64 views
Packets Are Stacked When Sent at Regular Intervals
I am trying to send a message over a TCP socket at a regular interval (every second). Sometimes the full message will not be sent or two-four messages will be stacked and sent at once. I have if ...
2
votes
1answer
167 views
Socket send () stuck in C
I'm trying to connect two machines, say machine A and B. I'm trying to send TCP message from A to B (One way). In normal scenario this works fine. When the communication is smooth, if the socket in B ...
2
votes
2answers
64 views
Controlling different apps (Adobe Reader,Word,Windows Media Player,Powerpoint,etc) from C++ code
I am just about to finish my final degree project. I am creating a system that reads a gesture from the Microsoft Kinect and then it makes some actions. So now I'd like to include some interaction ...
2
votes
3answers
513 views
Delphi Indy Send POST data in Cyrillic
I want to send Cyrillic post data with delphi using indy 10.
Ok i know how to send data but when i send something written or Cyrillic the post data response is with some encoded signs.
there is my ...
2
votes
2answers
259 views
Send and receive Fax with Windows Fax
Windows 7 has built in Fax Application. Would it be possible to connect to this and send fax over Windows Fax (put a outgoing Fax in the Outgoing Folder) and read all received Faxes?
I have to use C# ...
2
votes
2answers
265 views
Linux / C udp send methods
The only way to send UDP packets in C is to use send/sendo/write/... calls.
The problem with those is, that for each packet I need to perform a new call from user-space.
Does anyone know whether ...
2
votes
1answer
345 views
How to send a newsletter from Magento?
I have a start-up and I want to send a newsletter to all my subscribers and customers, but I don't know how. I select the template and choose "Queue Newsletter" and set the date/time but it never ...