Sxsw called as south by southwest is the annual film/music/interactive conference conducted every march at Austin, Texas. The most popular part Is sxsw interactive conference which drews over huge techies at one place. The conference was a platform for startups and techies to showcase their new services to the world. Although started in 1987 the sxsw interactive conference grew large every year and now it seems the biggest tech event
web apps Archive
The problem with sending text to mobiles from your java program is that you’ve to spend few bucks buying GSM Modem, buy SIM with free SMS option and then connect it with Java Communication API. So here is a simple API that uses the help of way2sms service to send free SMS. Credits to Aswin Anand and Sailesh Soliwal for developing the API Steps: 1) Download the jar file from http://www.mediafire.com/?ztwzzwmfmmz 2) Add the jar file to library in your Netbeans or Eclipse IDE. 3) To send SMS call the Send() method of smsclient class. 4) Here is a sample implementation. import com.way2sms.SMS; class TestSMS { public static void main(String[] args) { SMS smsClient=new SMS(); smsClient.send( Username, Password, Number, Message,Proxy); } } Where, Username & [&hellip