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.
Related
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 am new to SharpPcap and I am confused. How can I use it for enabling and disabling internet connection using C#, is there any built in functions for this purpose?
Are there any tutorials available for SharpPcap?
SharpPcap, and the lower level libraries libpcap/winpcap, are designed to observe and capture network packets. They don't have the ability to alter packets before they are transmitted, or to block incoming packets (such as a firewall might do).
There may be a way to disable network adapters or networking via c#, a quick serach on google turned up this page, but this functionality isn't something SharpPcap or other capture libraries are involved in.
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/
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 need to get up and running quickly with a MT TCP server implemented in C#, as a proof of concept. I am looking for an open source implementation of such a multi-threaded TCP server in C#.
I came across this link, but it is almost a decade old!. I can't seem to find anything more recent. Is anyone aware of a more recent implementation of a MT TCP server?
There is a relatively complete sample of a highly scaleable TCP server at http://msdn.microsoft.com/en-us/library/system.net.sockets.socketasynceventargs.aspx.
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 11 years ago.
I want develop a music finder program. I choose music database, vkontakte. But I can't find the vkontakte api example for c# .
https://github.com/grunichev/rhythmbox-vkontakte
http://silverlightvkapi.codeplex.com/
http://xternalx.com/sexy/vkontakte-c-api/
Vkontakte api .NET wrapper
Silverlight API:
Silverlight vkontakte API
Download VKMusic from this website
and use It.) It is joke. Better go to http://www.gotdotnet.ru/forums/2/127256/ Russian programers know about vk more and you don't need to use english.
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 11 years ago.
I am developing c# application, in which this application is act as server.My front end is flex application.when i am testing my application through browser i passed a url as below.
http://serverip:8082/item/detail/2210
As response it was showing not serviced, no valid session.
But when I tried from different machine I got the response back perfectly.
Can any one please tell why it is happening.
its a non standard port, you may have to open the firewall to allow eternal address or subnet to access? A good way I usually use to test this is using Telnet
telnet.exe serverip serverport
Other things could be DNS or Host Headers in IIS
Cheers