How to send SMS in C# [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I want to integrate SMS service with the software I am developing, so that users could send SMS to their clients.

Perhaps you can get actual SMS integration by sending an email ('[phoneNumber]#[carrierDomainName]'). This is how I integrated paging into my EventLog in the past. The cellphone domain name for each carrier shouldn't be too hard to determine. Verizon's is vtext.com.

Really the question that you need to ask is, which SMS service would be easiest to integrate with C#. Most of them out there have Web APIs, which would be easy enough to tie in with a C# application.
A few example gateways:
http://www.mediaburst.co.uk/api/
http://www.zeepmobile.com/
http://www.messagemedia.co.uk/
Of course, to send SMS this way will cost money (usually in the form of credits with your chosen gateway). If you meant to ask how can you interact with a physical phone to send messages, well that would all depend on the phone, it's o/s and software available for it.

Here is a list of SMS gateways:
http://en.wikipedia.org/wiki/List_of_SMS_gateways
Dave

Yeah Subodh i know your question, i also want that software as i am a LIC agent, well that would help me in managing my clients and policies...
well for more answers, search on google with keyword -- "sms api"

I'm guessing you want an API of sorts. Check out the following libraries:
http://twit88.com/blog/2009/07/31/c-sms-library/
http://www.topshareware.com/mCore-.NET-SMS-Library-(LITE)-download-42284.htm
http://www.hillstone-software.com/hs_sms_dll_details.htm

Related

IMAP in ASP.Net C # [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to download email by IMAP service from a gmail account through code in C# ASP>Net. I have no sound about it and new to development in this plate form. Please guide me and help me about it. Any link or reference???
You need to use third-party components witch are available in different kind and prices, or you can develop it your own with socket programming.
take a look at :
http://www.limilabs.com/mail
http://www.afterlogic.com/
you also need to enable IMAP on your Gmail account so you can send and receive with IMAP Protocol in your application. For sending emails you also need SMTP configuration to be set.
http://support.google.com/mail/bin/answer.py?hl=en&answer=77695
also take a look at webmail scripts developed by asp.net, it would be a great guide!
Google's Gmail API Reffrence is also a good guide, if you want to use API instead of starting by nothing. take a look at :
https://developers.google.com/google-apps/gmail/

How to send SMS using c# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i want to send sms using c# coding
Use SMSLib ( http://smslib.org/download/ )
You may find working codes here, i had worked using java platform, and it works all fine.
try for c#.
All you need is a gsm moden,connect to USB and provide proper port number in the availaible code at SMSlib website.
download http://smslib.org/download/files/smslib.net-v3.5.0.zip
You will find C# herein.
I did both sms sending and receiving with the Api provided by https://www.csoft.co.uk/.
It is a paid service, but it is very easy to implement.
download library from one of the sms sites and integrate:
SMS provider
It is very easy.

Help with making a C# P2P Chat Program [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to make a P2P Chat client, all I want it to do is to be able to send text across to each peer.
I looked at a Chat Client from this example:
http://www.geekpedia.com/tutorial239_Csharp-Chat-Part-1---Building-the-Chat-Client.html
And am wondering if it can be converted to a p2p program?
If so how can it be and can someone provide some code as it will help a lot.
If it can't how can I make a really simple p2p chat program?
Codes and examples will be very helpful.
btw I did look at this article, but it didn't help me:
http://msdn.microsoft.com/en-us/library/ms751502.aspx
I did a similar project once, only using bluetooth rather than Internet.
Mine wasn't chat so much as IM, since it only allowed for two people to converse, but we got it working by using the technique in brydgesk's edit and having the client ('talker') and server ('listener') together in the same application, in such a way that the server only puts out received messages to the local client, rather than rebroadcasting to all connections.
Hope this little bit is helpful, I don't think this is really the right place to help you write the entire application.
For P2P, you need to use UdpClient instead of TcpClient. Google should help you from here :)
Edit: Sorry, I made false assumptions in this answer. If you want to continue using TCP, that's just fine. Instead of creating a separate server application, add the server code to your client application, so that either the sender or receiver acts as the server.
If it is to be done on the intranet, why not use WCF named pipes?

c# Visa 3d Secure Implementation [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
can someone give a sample implementation of 3d secure for an ecommerce application?
Implementation depends on payment gateway providers. you will have to contact their support or check their manual for it.
I have worked with "The Logic Group" and BT payment gateway providers in UK so if you are using one of these then let me know I can be of some help.
You didnt give a lot of information in your question. Your options depend on what you're attempting to acheive.
Your options are either
You're integrating with a payment service provider. Most will offer 3d secure processing, ask them for help.
You're rolling your own 3d secure service. In this case you will need to either purchase or develop an MPI (Merchant Plug-In) that passes the 3dsecure messages to Visa and MasterCard. In this case your best option is to purchase an MPI from a 3rd party vendor, otherwise be prepared for a lengthy and costly integration directly with Visa and MasterCard.

Reading domino server' mailbox using C# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am making an application which will retrieve all mailboxes from Domino Server.
And Display them in List.
After that i want to extract( display) emails of each mailbox into another list.
eg:
Consider example of outlook.When we click on particular pst folder. all mails in selected folder get displayed.
Kindly send me code if possible.As i am new to C#.
Or send me related links.
I guess the simplest way to enumerate all the mailboxes without turning to Domino development is via LDAP. Then, as reto suggests, the IMAP interface should be able to show you the contents of each mailbox.
Of course, you'll need an account with access to each users mailbox.
I'd try using IMAP to fetch the necessary information. This should be easier than trying to use some Domino specific API. One of many examples
Also consider the COM library for Domino.
Have a look at soapgate Q - that is a gen. werbservice gateway for domino - that would work for you:
see the demo an soon view code

Categories