3
votes
2answers
454 views
How can I send an SMS from Java?
i wanted to send SMS to particular mobile from webapplication and receive his reply and view to webapplication only.. is it possible to create using java technology if means give g …
2
votes
7answers
226 views
Sendmail for Windows
I'm hunting for a mail sending program which can be used with command line arguments.
Ive tried jaber's sendmail . Its really neat, but its unfortunately broken for SSL auth.
…
2
votes
5answers
497 views
send a COM object with a BSTR value type in a MSMQ message
I'm trying to send a COM object over a MSMQ message in C++. This is my object :
class ATL_NO_VTABLE CAnalisis :
public CComObjectRootEx,
public CComCoClass,
public IS …
1
vote
1answer
25 views
When I send a post request in python…how do I…
Have a "check"?
For example...
I would have a dictionary with the parameters to sent to the POST.
params = {'text':'how are you?', 'subject':'hi'}
then I would have
opener.op …
1
vote
6answers
93 views
send an http request
How to send an http request with either post/get method using javascript as an eventhandler? Thanks! Paul
1
vote
2answers
69 views
How can I send data with a TcpListener, and wait for the response ?
I have the following code:
using (TcpClient client = new TcpClient())
{
client.Connect(host, port);
using (SslStream stream = new SslStream(client.GetStream(), true))
{
…
1
vote
5answers
128 views
Is there a limit when using php mail function?
I am using php and mysql
I am going to send 10k++ (ten thousands plus) emails to update my subscribers, and this is the first time I am going to send them. I will use php mail fun …
1
vote
1answer
205 views
Delphi to java, soap delphi, sms send
I am working on a code which I need to send sms messages from a sms service provider they get me delphy program that can send a sms from their service but i dont know delphy and i …
1
vote
2answers
95 views
TCP Send does not return cause crashing process…
If a tcp server and client are connected, I'd like to determine when the client is no longer connected. I thought I can simply do this by attempting to send a message to the clien …
1
vote
1answer
205 views
C# Async socket problem
Hi everyone,
I'm having a weird problem with my code, at the moment everything works fine, except the sending part. Whenever I try to send a packet it actually sends many empty pa …
1
vote
1answer
133 views
Properly disposing resources used by SmtpClient
I have a C# service that runs continuously with user credentials (i.e not as localsystem - I can't change this though I want to). For the most part the service seems to run ok, but …
1
vote
2answers
104 views
Programmatically sending “net send”
Ok, I can't seem to get the search right so here I am. I'm trying to figure out how to write a method to not use the System.Diagnostics.Process class and still send messages to oth …
1
vote
2answers
276 views
What is the Send API for accessing menu commands from outside application
hi, is there a send api to access a menu command in another application? For example,I am trying to access the View menu of a notepad. How am I going to do this? I already got the …
1
vote
10answers
548 views
What’s a quick, easy way to send HTML emails to myself to test them?
I've been given the task of optimizing HTML emails for different email/webmail clients. I used to test the HTML file by doing a trick in Outlook Express, to make it send the raw HT …
1
vote
4answers
1k views
How can I send a picture in j2me
How can I send a picture in j2me
maybe using base64 decode and the send in post form via http request
