<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7615026743333586447</id><updated>2011-12-12T09:24:04.890-08:00</updated><title type='text'>mobiledevelopment</title><subtitle type='html'>WAP , JDE , IPHONE , ANDROID , ALL things Mobile</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>42</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-4464421353849803231</id><published>2010-12-12T08:10:00.000-08:00</published><updated>2010-12-12T08:10:35.361-08:00</updated><title type='text'>Post to wcf service windows phone 7</title><content type='html'>namespace sendsms&lt;br /&gt;{&lt;br /&gt;    public partial class Page1 : PhoneApplicationPage&lt;br /&gt;    {&lt;br /&gt;        public Page1(string s , string u , string t)&lt;br /&gt;        {&lt;br /&gt;            InitializeComponent();&lt;br /&gt;            smssendClient client = new smssendClient();&lt;br /&gt;            client.sendsmsCompleted += new EventHandler&lt;sendsmsCompletedEventArgs&gt;(client_sendsmsCompleted);&lt;br /&gt;            client.sendsmsAsync(s, u, t);&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;        void client_sendsmsCompleted(object sender, sendsmsCompletedEventArgs e)&lt;br /&gt;        {&lt;br /&gt;            textBlock1.Text = e.Result;&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-4464421353849803231?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/4464421353849803231/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=4464421353849803231' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/4464421353849803231'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/4464421353849803231'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/12/post-to-wcf-service-windows-phone-7.html' title='Post to wcf service windows phone 7'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-1459448845549420459</id><published>2010-08-28T07:57:00.001-07:00</published><updated>2010-08-28T07:57:13.374-07:00</updated><title type='text'>Populate drop down liast repeater</title><content type='html'>protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)&lt;br /&gt;{&lt;br /&gt;        if (e.Item.ItemType == ListItemType.AlternatingItem || e.Item.ItemType == ListItemType.Item)&lt;br /&gt;        {&lt;br /&gt;            DropDownList dll = (DropDownList )e.Item.FindControl("ddOptions");&lt;br /&gt;            if (dll != null)&lt;br /&gt;            {&lt;br /&gt;                string ID = //Grab the id here&lt;br /&gt;                DataTable dt = // call the method from your Class library that returns a DataTable and pass the value of ID as the paramter&lt;br /&gt;&lt;br /&gt;                if (dt.Rows.Count &gt; 0)&lt;br /&gt;                {&lt;br /&gt;                   dll.DataSource = dt;&lt;br /&gt;                   dll.DataTextField = "ColumnName";&lt;br /&gt;                   dll.DataValueField = "ColumnName";&lt;br /&gt;                   dll.DataBind();&lt;br /&gt;                }&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-1459448845549420459?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/1459448845549420459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=1459448845549420459' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/1459448845549420459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/1459448845549420459'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/08/populate-drop-down-liast-repeater.html' title='Populate drop down liast repeater'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-7313137235050888434</id><published>2010-08-10T06:08:00.000-07:00</published><updated>2010-08-10T06:08:43.372-07:00</updated><title type='text'>web site tools</title><content type='html'>http://www.feedbackarmy.com/&lt;br /&gt;&lt;br /&gt;https://www.usertesting.com/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-7313137235050888434?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/7313137235050888434/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=7313137235050888434' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7313137235050888434'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7313137235050888434'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/08/web-site-tools.html' title='web site tools'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-3236972295174058043</id><published>2010-08-07T10:38:00.000-07:00</published><updated>2010-08-07T10:38:41.596-07:00</updated><title type='text'>BIt.ly api asp.net c#</title><content type='html'>C# class bitlyapi.cs&lt;br /&gt;&lt;br /&gt;using System;&lt;br /&gt;using System.Data;&lt;br /&gt;using System.Configuration;&lt;br /&gt;using System.Linq;&lt;br /&gt;using System.Web;&lt;br /&gt;using System.Web.Security;&lt;br /&gt;using System.Web.UI;&lt;br /&gt;using System.Web.UI.HtmlControls;&lt;br /&gt;using System.Web.UI.WebControls;&lt;br /&gt;using System.Web.UI.WebControls.WebParts;&lt;br /&gt;using System.Xml.Linq;&lt;br /&gt;&lt;br /&gt;/// &lt;summary&gt;&lt;br /&gt;/// Summary description for bitly&lt;br /&gt;/// &lt;/summary&gt;&lt;br /&gt;public static class BitlyApi&lt;br /&gt;{&lt;br /&gt;    private const string apiKey = "YOUR API KEY";&lt;br /&gt;    private const string login = "YOUR LOGIN";&lt;br /&gt;&lt;br /&gt;    public static BitlyResults ShortenUrl(string longUrl)&lt;br /&gt;    {&lt;br /&gt;        var url =&lt;br /&gt;            string.Format("http://api.bit.ly/shorten?format=xml&amp;version=2.0.1&amp;longUrl={0}&amp;login={1}&amp;apiKey={2}",&lt;br /&gt;                          HttpUtility.UrlEncode(longUrl), login, apiKey);&lt;br /&gt;        var resultXml = XDocument.Load(url);&lt;br /&gt;        var x = (from result in resultXml.Descendants("nodeKeyVal")&lt;br /&gt;                 select new BitlyResults&lt;br /&gt;                 {&lt;br /&gt;                     UserHash = result.Element("userHash").Value,&lt;br /&gt;                     ShortUrl = result.Element("shortUrl").Value&lt;br /&gt;                 }&lt;br /&gt;                );&lt;br /&gt;        return x.Single();&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public class BitlyResults&lt;br /&gt;{&lt;br /&gt;    public string UserHash { get; set; }&lt;br /&gt;&lt;br /&gt;    public string ShortUrl { get; set; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Any c# .cs code behind page&lt;br /&gt;&lt;br /&gt;  string longurl = "http://www.longurl.com;&lt;br /&gt;                var shortUrl = BitlyApi.ShortenUrl(longurl).ShortUrl;&lt;br /&gt;                bitlyurl = shortUrl.ToString();&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-3236972295174058043?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/3236972295174058043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=3236972295174058043' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3236972295174058043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3236972295174058043'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/08/bitly-api-aspnet-c.html' title='BIt.ly api asp.net c#'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-2637150732062724314</id><published>2010-07-22T12:43:00.001-07:00</published><updated>2010-07-22T12:43:34.133-07:00</updated><title type='text'>unique entries stored procedure</title><content type='html'>IF NOT EXISTS(SELECT @uid,@post_id,@travelerid  FROM web_like_log  WHERE uid=@uid and post_id=@post_id or travelerid=@travelerid)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-2637150732062724314?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/2637150732062724314/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=2637150732062724314' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2637150732062724314'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2637150732062724314'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/07/unique-entries-stored-procedure.html' title='unique entries stored procedure'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-2258583703042710649</id><published>2010-07-02T14:58:00.001-07:00</published><updated>2010-07-02T14:58:14.782-07:00</updated><title type='text'>get you tube thumbnail images</title><content type='html'>http://img.youtube.com/vi/&lt;insert-youtube-video-id-here&gt;/1.jpg&lt;br /&gt;http://img.youtube.com/vi/&lt;insert-youtube-video-id-here&gt;/2.jpg&lt;br /&gt;http://img.youtube.com/vi/&lt;insert-youtube-video-id-here&gt;/3.jpg&lt;br /&gt;http://img.youtube.com/vi/&lt;insert-youtube-video-id-here&gt;/0.jpg&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-2258583703042710649?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/2258583703042710649/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=2258583703042710649' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2258583703042710649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2258583703042710649'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/07/get-you-tube-thumbnail-images.html' title='get you tube thumbnail images'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-5215126729920429297</id><published>2010-06-25T14:42:00.000-07:00</published><updated>2010-06-25T14:42:07.779-07:00</updated><title type='text'>Iphone APN code sample</title><content type='html'>- (void)applicationDidFinishLaunching:(UIApplication *)application {&lt;br /&gt;    // Add the tab bar controller's current view as a subview of the window&lt;br /&gt;    [window addSubview:tabBarController.view];&lt;br /&gt;           NSLog(@"Initiating remoteNoticationssAreActive"); &lt;br /&gt;    [[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound |UIRemoteNotificationTypeAlert)];     &lt;br /&gt;}&lt;br /&gt;- (void)application:(UIApplication *)app didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {          &lt;br /&gt;     NSLog(@"devToken=%@",deviceToken);&lt;br /&gt; }&lt;br /&gt;- (void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError *)err {     &lt;br /&gt;    NSLog(@"Error in registration. Error: %@", err);&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-5215126729920429297?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/5215126729920429297/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=5215126729920429297' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5215126729920429297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5215126729920429297'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/06/iphone-apn-code-sample.html' title='Iphone APN code sample'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-8115228977322471491</id><published>2010-06-09T02:47:00.000-07:00</published><updated>2010-06-09T02:47:56.711-07:00</updated><title type='text'>Twitter like notfication jquery notifier asp.net</title><content type='html'>So was looking at something like twitter uses for notficaiton of events (Tweet sent , something updated , something wrong etc. etc.) Came across jnotify. anyway here is the code ..&lt;br /&gt;&lt;br /&gt;page.cs - Pretend we are using a web service to log the user in&lt;br /&gt;&lt;br /&gt;protected void Button1_Click(object sender, EventArgs e)&lt;br /&gt;    {&lt;br /&gt;        com.webservice.user ulup = new com.webservice.user();&lt;br /&gt;        int username = ulup.Checkuser_mobile(mobile.Text);&lt;br /&gt;        if (username != 0)   //If the login failed you could send back something other than 0 thats just what i am doing .&lt;br /&gt;        {&lt;br /&gt;&lt;br /&gt;            Panel2.Enabled = true;   //This panel is hidden in the .aspx onload&lt;br /&gt;            &lt;br /&gt;&lt;br /&gt;        }&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-8115228977322471491?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/8115228977322471491/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=8115228977322471491' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/8115228977322471491'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/8115228977322471491'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/06/twitter-like-notfication-jquery.html' title='Twitter like notfication jquery notifier asp.net'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-4230957724153909471</id><published>2010-05-21T08:57:00.000-07:00</published><updated>2010-05-21T09:02:08.424-07:00</updated><title type='text'>bind asp.net checkbox to bool</title><content type='html'>Check box asp.net - asp:checkbox id="social_facebook" runat="server" Checked='&lt;%# Bind("True") %&gt; &lt;br /&gt;&lt;br /&gt;Code behind - cmd.Parameters.Add("@p_facebook", SqlDbType.Bit).Value = social_facebook.Checked;&lt;br /&gt;&lt;br /&gt;using a stored procedure with p_facebook as a parameter&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-4230957724153909471?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/4230957724153909471/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=4230957724153909471' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/4230957724153909471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/4230957724153909471'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/05/bind-aspnet-checkbox-to-bool.html' title='bind asp.net checkbox to bool'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-5284489878326527855</id><published>2010-05-18T12:20:00.001-07:00</published><updated>2010-05-18T12:20:42.204-07:00</updated><title type='text'>random number asp.net c#</title><content type='html'>this is true random and unique &lt;br /&gt;&lt;br /&gt;string number = String.Format("{0:d9}", (DateTime.Now.Ticks / 10) % 1000000000);&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-5284489878326527855?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/5284489878326527855/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=5284489878326527855' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5284489878326527855'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5284489878326527855'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/05/random-number-aspnet-c.html' title='random number asp.net c#'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-755963279014817861</id><published>2010-04-30T07:09:00.000-07:00</published><updated>2010-04-30T07:10:30.913-07:00</updated><title type='text'>CODE FB feed</title><content type='html'>&lt;iframe&gt; &lt;br /&gt;&lt;br /&gt;Scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:302px; height:512px"&lt;br /&gt;&lt;br /&gt;FB link specifics &lt;br /&gt;&lt;br /&gt;http://www.facebook.com/plugins/likebox.php?profile=1&amp;id=27698210866&amp;amp;width=302&amp;amp;height=512&amp;amp;connections=10&amp;amp;stream=true&amp;amp;header=false&lt;br /&gt;&lt;br /&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-755963279014817861?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/755963279014817861/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=755963279014817861' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/755963279014817861'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/755963279014817861'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/04/code-fb-feed.html' title='CODE FB feed'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-3444324841276956819</id><published>2010-04-30T07:08:00.001-07:00</published><updated>2010-04-30T07:08:54.217-07:00</updated><title type='text'>FB Feed iframe</title><content type='html'>&lt;pre&gt;&lt;iframe src="http://www.facebook.com/plugins/likebox.php?profile=1&amp;amp;id=27698210866&amp;amp;width=302&amp;amp;height=512&amp;amp;connections=10&amp;amp;stream=true&amp;amp;header=false" scrolling="no" frameborder="0" allowtransparency="true" style="border:none; overflow:hidden; width:302px; height:512px"&gt;&lt;/iframe&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-3444324841276956819?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/3444324841276956819/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=3444324841276956819' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3444324841276956819'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3444324841276956819'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/04/fb-feed-iframe.html' title='FB Feed iframe'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-5740475175805174474</id><published>2010-04-25T11:54:00.000-07:00</published><updated>2010-04-25T12:00:59.557-07:00</updated><title type='text'></title><content type='html'>Flickr API&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1. Get your nsid of the user&lt;/div&gt;&lt;div&gt;&lt;a href="http://www.xflickr.com/fusr/"&gt;http://www.xflickr.com/fusr/&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://www.xflickr.com/fusr/"&gt;&lt;/a&gt;add your api key&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2.http://api.flickr.com/services/rest/?&amp;amp;method=flickr.people.getPublicPhotos&amp;amp;api_key=&amp;amp;user_id=36897512@N03&amp;amp;format=json&amp;amp;per_page=50&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3. make the response json or xml &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;4. get the value of the image id http://www.flickr.com/photos/36897512@N03/image_id_value_here/&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;4. photo set id &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="view-source:http://api.flickr.com/services/rest/?&amp;amp;method=flickr.photosets.getPhotos&amp;amp;photoset_id=72157622425614035&amp;amp;api_key=fdf8d9df9923372830261717d908d84e&amp;amp;user_id=36897512@N03&amp;amp;format=json&amp;amp;per_page=50"&gt;view-source:http://api.flickr.com/services/rest/?&amp;amp;method=flickr.photosets.getPhotos&amp;amp;photoset_id=72157622425614035&amp;amp;api_key=&amp;amp;user_id=36897512@N03&amp;amp;format=json&amp;amp;per_page=50&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-5740475175805174474?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/5740475175805174474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=5740475175805174474' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5740475175805174474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5740475175805174474'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/04/flickr-api-1.html' title=''/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-686866522908556420</id><published>2010-03-21T20:23:00.001-07:00</published><updated>2010-03-21T20:23:53.832-07:00</updated><title type='text'>Create a linux job to delete zip files 3 days old</title><content type='html'>find /var/www/html/*.zip  -mtime +3 -exec rm {} \;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-686866522908556420?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/686866522908556420/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=686866522908556420' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/686866522908556420'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/686866522908556420'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/03/create-linux-job-to-delete-zip-files-3.html' title='Create a linux job to delete zip files 3 days old'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-6851250527277609126</id><published>2010-03-15T10:57:00.001-07:00</published><updated>2010-03-15T10:57:43.821-07:00</updated><title type='text'></title><content type='html'>ignore eclipse project files in git&lt;br /&gt;&lt;br /&gt;place .gitignore in your eclipse project with these parameters&lt;br /&gt;&lt;br /&gt;.settings&lt;br /&gt;.project&lt;br /&gt;.buildpath&lt;br /&gt;.gitignore&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-6851250527277609126?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/6851250527277609126/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=6851250527277609126' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/6851250527277609126'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/6851250527277609126'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/03/ignore-eclipse-project-files-in-git.html' title=''/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-4529139282605093517</id><published>2010-03-03T15:59:00.001-08:00</published><updated>2010-03-03T15:59:34.760-08:00</updated><title type='text'></title><content type='html'>Recursivly copy files linux&lt;br /&gt;&lt;br /&gt;find . -type f -name \*.eps -exec cp \{\} &lt;directory&gt; \;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-4529139282605093517?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/4529139282605093517/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=4529139282605093517' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/4529139282605093517'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/4529139282605093517'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2010/03/recursivly-copy-files-linux-find.html' title=''/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-9038611085728261891</id><published>2009-10-19T13:28:00.000-07:00</published><updated>2009-10-19T13:29:11.543-07:00</updated><title type='text'>Send HTTP post in actionscript</title><content type='html'>var sendInfo:LoadVars = new LoadVars();&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//Load up all the variables you want to POST&lt;br /&gt;sendInfo.username = "";&lt;br /&gt;sendInfo.password = "!";&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;sendInfo.sendAndLoad("http://urlhere",sendInfo,"GET");&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-9038611085728261891?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/9038611085728261891/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=9038611085728261891' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/9038611085728261891'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/9038611085728261891'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/10/send-http-post-in-actionscript.html' title='Send HTTP post in actionscript'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-5363426732537357958</id><published>2009-08-25T09:04:00.000-07:00</published><updated>2009-08-25T09:05:59.492-07:00</updated><title type='text'>Testing Sendmail Linux redhat 5</title><content type='html'>sudo echo "subject:testing send mail new linx servers" | /usr/lib/sendmail -v email@email.com &gt; sendmail.out&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;sends output to sendmail.out file&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-5363426732537357958?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/5363426732537357958/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=5363426732537357958' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5363426732537357958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5363426732537357958'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/08/testing-sendmail-linux-redhat-5.html' title='Testing Sendmail Linux redhat 5'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-596197043384092951</id><published>2009-07-14T11:42:00.001-07:00</published><updated>2009-07-14T11:44:10.367-07:00</updated><title type='text'>Show and hide a div using jquery</title><content type='html'>A friend of mine asked about this so here is the result&lt;br /&gt;&lt;br /&gt;&lt;a href="http://sites.google.com/site/sjehutch/Home/showhide.html.zip?attredirects=0"&gt;Link to source&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-596197043384092951?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/596197043384092951/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=596197043384092951' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/596197043384092951'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/596197043384092951'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/07/show-and-hide-div-using-jquery.html' title='Show and hide a div using jquery'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-2199419315776671526</id><published>2009-06-29T12:40:00.001-07:00</published><updated>2009-06-29T12:40:40.780-07:00</updated><title type='text'></title><content type='html'>&lt;a href="http://ping.fm/zMFkl"&gt;http://ping.fm/zMFkl&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-2199419315776671526?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/2199419315776671526/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=2199419315776671526' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2199419315776671526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2199419315776671526'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/06/httpping.html' title=''/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-7973977499743168128</id><published>2009-06-22T08:08:00.001-07:00</published><updated>2009-06-22T08:10:09.276-07:00</updated><title type='text'>My Microsoft Tag</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ck_cNnWkGwA/Sj-eiAL1AvI/AAAAAAAAHsM/N4RNoCNRJu8/s1600-h/My_tag_200962216451.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 162px; height: 136px;" src="http://3.bp.blogspot.com/_ck_cNnWkGwA/Sj-eiAL1AvI/AAAAAAAAHsM/N4RNoCNRJu8/s400/My_tag_200962216451.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5350169189341790962" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;you can download tag at gettag.mobi&lt;/div&gt;&lt;div&gt;here is my Microsoft tag it dials my number&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-7973977499743168128?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/7973977499743168128/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=7973977499743168128' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7973977499743168128'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7973977499743168128'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/06/my-microsoft-tag.html' title='My Microsoft Tag'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ck_cNnWkGwA/Sj-eiAL1AvI/AAAAAAAAHsM/N4RNoCNRJu8/s72-c/My_tag_200962216451.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-5653222715245743678</id><published>2009-06-11T11:04:00.000-07:00</published><updated>2009-06-29T12:46:02.617-07:00</updated><title type='text'>Saving Skype voice mails to your pc</title><content type='html'>This is on Mac Leapord only -&lt;br /&gt;&lt;br /&gt;Step 1. Install &lt;a href="http://www.pamela-systems.com/products/" target="_blank"&gt;http://www.pamela-systems.com/products/&lt;/a&gt;&lt;br /&gt;Step 2. Play the Skype voice mail&lt;br /&gt;Step 3. The voice mail will be saved as a .mov into your movies folder&lt;br /&gt;Step 4. Install ffmpeg on your mac&lt;br /&gt;Step 5. convert the .mov into an .mp3 or wav using ffmpeg&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;converting mp3 to wav file try to get the file around 800 kb if you can &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: Arial, Helvetica, sans-serif; font-size: 13px; "&gt;&lt;ol id="intelliTxt" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; list-style-type: none; list-style-position: initial; list-style-image: initial; "&gt;&lt;li style="padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; clear: left; "&gt;&lt;div class="stepBg" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 11px; font-family: inherit; vertical-align: baseline; float: left; display: inline; font: normal normal normal 11px/normal Georgia; color: rgb(223, 166, 65); width: 25px; text-align: center; "&gt;Step&lt;span style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 21px; font-family: inherit; vertical-align: baseline; height: 25px; width: 25px; background-image: url(http://i.ehow.com/ui/images/bg/circles.gif); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; color: rgb(255, 255, 255); display: block; background-position: 0% -25px; "&gt;2&lt;/span&gt;&lt;/div&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; "&gt;&lt;a class="iAs" classname="iAs" href="http://www.ehow.com/how_5039268_convert-stereo-mono-mp.html#" target="_blank" itxtdid="9612135" style="padding-top: 0px; padding-right: 0px; padding-bottom: 1px !important; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0.075em !important; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: normal !important; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; text-decoration: underline !important; cursor: pointer; color: rgb(0, 100, 0) !important; border-bottom-color: rgb(0, 100, 0) !important; border-bottom-style: solid !important; background-color: transparent !important; "&gt;Run&lt;/a&gt; Audacity and import the music you want to convert. To do this, click on "File" and select "Open." Then select the file you want to convert to mono. Make sure the file you are converting is already in stereo.&lt;/p&gt;&lt;/li&gt;&lt;li style="padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; clear: left; "&gt;&lt;div class="stepBg" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 11px; font-family: inherit; vertical-align: baseline; float: left; display: inline; font: normal normal normal 11px/normal Georgia; color: rgb(223, 166, 65); width: 25px; text-align: center; "&gt;Step&lt;span style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 21px; font-family: inherit; vertical-align: baseline; height: 25px; width: 25px; background-image: url(http://i.ehow.com/ui/images/bg/circles.gif); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; color: rgb(255, 255, 255); display: block; background-position: 0% -25px; "&gt;3&lt;/span&gt;&lt;/div&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; "&gt;Look at the box that appears after you import your file. You should see blue waveforms. To the left of the waveforms, you will see a bunch of numbers and other settings in a box. In the top left corner of the box, locate the arrow (which is to the left of the 1.0 number).&lt;/p&gt;&lt;/li&gt;&lt;li style="padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; clear: left; "&gt;&lt;div class="stepBg" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 11px; font-family: inherit; vertical-align: baseline; float: left; display: inline; font: normal normal normal 11px/normal Georgia; color: rgb(223, 166, 65); width: 25px; text-align: center; "&gt;Step&lt;span style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 21px; font-family: inherit; vertical-align: baseline; height: 25px; width: 25px; background-image: url(http://i.ehow.com/ui/images/bg/circles.gif); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; color: rgb(255, 255, 255); display: block; background-position: 0% -25px; "&gt;4&lt;/span&gt;&lt;/div&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; "&gt;Click the arrow and select "Split Stereo Track" from the drop-down menu. Now you will notice that track has been split into left and right channels that you can control.&lt;/p&gt;&lt;/li&gt;&lt;li style="padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; clear: left; "&gt;&lt;div class="stepBg" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 11px; font-family: inherit; vertical-align: baseline; float: left; display: inline; font: normal normal normal 11px/normal Georgia; color: rgb(223, 166, 65); width: 25px; text-align: center; "&gt;Step&lt;span style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 21px; font-family: inherit; vertical-align: baseline; height: 25px; width: 25px; background-image: url(http://i.ehow.com/ui/images/bg/circles.gif); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; color: rgb(255, 255, 255); display: block; background-position: 0% -25px; "&gt;5&lt;/span&gt;&lt;/div&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; "&gt;Click the arrow by the top (Left channel) waveform (this will also be to the left of top waveform's 1.0 marking). Select "mono" from the drop-down menu.&lt;/p&gt;&lt;/li&gt;&lt;li style="padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; clear: left; "&gt;&lt;div class="stepBg" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 11px; font-family: inherit; vertical-align: baseline; float: left; display: inline; font: normal normal normal 11px/normal Georgia; color: rgb(223, 166, 65); width: 25px; text-align: center; "&gt;Step&lt;span style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 21px; font-family: inherit; vertical-align: baseline; height: 25px; width: 25px; background-image: url(http://i.ehow.com/ui/images/bg/circles.gif); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; color: rgb(255, 255, 255); display: block; background-position: 0% -25px; "&gt;6&lt;/span&gt;&lt;/div&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; "&gt;Click on the lower (Right channel) arrow. This will be located to the left of the lower waveform's 1.0 marking. Select "mono" from the drop-down menu. At this point, the boxes to the left of the top and bottom waveforms should both say "mono." If either still says "right" or "left," ensure that you followed the above steps and switched each channel to mono in the drop-down menu.&lt;/p&gt;&lt;/li&gt;&lt;li style="padding-top: 10px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; clear: left; "&gt;&lt;div class="stepBg" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 10px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 11px; font-family: inherit; vertical-align: baseline; float: left; display: inline; font: normal normal normal 11px/normal Georgia; color: rgb(223, 166, 65); width: 25px; text-align: center; "&gt;Step&lt;span style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 21px; font-family: inherit; vertical-align: baseline; height: 25px; width: 25px; background-image: url(http://i.ehow.com/ui/images/bg/circles.gif); background-repeat: no-repeat; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: initial; color: rgb(255, 255, 255); display: block; background-position: 0% -25px; "&gt;7&lt;/span&gt;&lt;/div&gt;&lt;p style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; outline-width: 0px; outline-style: initial; outline-color: initial; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; "&gt;Export your now mono song by clicking on the File tab and selecting one of the export options. Choose the directory you want to export the file to and you're done.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/span&gt;&lt;br /&gt;Your done&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-5653222715245743678?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/5653222715245743678/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=5653222715245743678' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5653222715245743678'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5653222715245743678'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/06/saving-skype-voice-mails-to-your-pc.html' title='Saving Skype voice mails to your pc'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-9215352458129558844</id><published>2009-05-12T12:49:00.000-07:00</published><updated>2009-05-12T12:53:15.250-07:00</updated><title type='text'>Consuming XML Iphone SDK</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ck_cNnWkGwA/SgnTW1F1qCI/AAAAAAAAHog/sFtkqRyqFcI/s1600-h/Picture+8.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 215px; height: 400px;" src="http://4.bp.blogspot.com/_ck_cNnWkGwA/SgnTW1F1qCI/AAAAAAAAHog/sFtkqRyqFcI/s400/Picture+8.png" alt="" id="BLOGGER_PHOTO_ID_5335027622759213090" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Below is the project to consume XML in Iphone using the NSXMLParser , i will be updating this regularly. Download it here &lt;a href="http://sites.google.com/site/sjehutch/Home/XML.zip?attredirects=0"&gt;Code&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ck_cNnWkGwA/SgnTObvJBjI/AAAAAAAAHoY/UWGfsBR44a4/s1600-h/Picture+7.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 215px; height: 400px;" src="http://2.bp.blogspot.com/_ck_cNnWkGwA/SgnTObvJBjI/AAAAAAAAHoY/UWGfsBR44a4/s400/Picture+7.png" alt="" id="BLOGGER_PHOTO_ID_5335027478514173490" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-9215352458129558844?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/9215352458129558844/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=9215352458129558844' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/9215352458129558844'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/9215352458129558844'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/05/consuming-xml-iphone-sdk.html' title='Consuming XML Iphone SDK'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ck_cNnWkGwA/SgnTW1F1qCI/AAAAAAAAHog/sFtkqRyqFcI/s72-c/Picture+8.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-7014913895960925794</id><published>2009-04-24T14:23:00.001-07:00</published><updated>2009-04-24T14:23:41.190-07:00</updated><title type='text'>Mail For Exchange Android</title><content type='html'>Finally worked go here http://moonrug.com/android/download.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-7014913895960925794?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/7014913895960925794/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=7014913895960925794' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7014913895960925794'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7014913895960925794'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/04/mail-for-exchange-android.html' title='Mail For Exchange Android'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-2255182710208642779</id><published>2009-04-23T13:48:00.000-07:00</published><updated>2009-05-16T10:34:52.489-07:00</updated><title type='text'>Update twitter status ASP.NET C#</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ck_cNnWkGwA/SfDXN9DtE_I/AAAAAAAAHnk/XyxYMv-o5CI/s1600-h/twitter_logo_header.png"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 155px; height: 36px;" src="http://3.bp.blogspot.com/_ck_cNnWkGwA/SfDXN9DtE_I/AAAAAAAAHnk/XyxYMv-o5CI/s400/twitter_logo_header.png" border="0" alt="" id="BLOGGER_PHOTO_ID_5327994993907667954" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here is a quick and easy way to update twitter via asp.net c#&lt;br /&gt;&lt;br /&gt;1. Download and add this .dll to your bin (asp.net 3.0) &lt;a href="http://code.google.com/p/twitterizer/"&gt;http://code.google.com/p/twitterizer/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2. Here is your code&lt;br /&gt;&lt;br /&gt;&lt;a href="http://sites.google.com/site/sjehutch/Home/twitter_asp.zip?attredirects=0"&gt;Download here &lt;/a&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://sites.google.com/site/sjehutch/Home/twitter_asp.zip?attredirects=0"&gt;twitter_asp.zip&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-2255182710208642779?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/2255182710208642779/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=2255182710208642779' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2255182710208642779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2255182710208642779'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/04/update-twiiter-status-aspnet-c.html' title='Update twitter status ASP.NET C#'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ck_cNnWkGwA/SfDXN9DtE_I/AAAAAAAAHnk/XyxYMv-o5CI/s72-c/twitter_logo_header.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-5681180825245130079</id><published>2009-04-20T13:32:00.000-07:00</published><updated>2009-04-20T13:39:12.398-07:00</updated><title type='text'>Google MAPS iphone UIWEBVIEW</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ck_cNnWkGwA/SezcKAPt85I/AAAAAAAAHnc/6zAxEtSFEIA/s1600-h/Picture+1.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 215px; height: 400px;" src="http://4.bp.blogspot.com/_ck_cNnWkGwA/SezcKAPt85I/AAAAAAAAHnc/6zAxEtSFEIA/s400/Picture+1.png" alt="" id="BLOGGER_PHOTO_ID_5326874523695182738" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I had a task to create a web view based on a zip code input via an iphone app here is the result&lt;br /&gt;&lt;br /&gt;Download it &lt;a href="http://www.mobilegreatness.com/google-maps-iphone.zip"&gt;here&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-5681180825245130079?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/5681180825245130079/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=5681180825245130079' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5681180825245130079'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5681180825245130079'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/04/google-maps-iphone-uiwebview.html' title='Google MAPS iphone UIWEBVIEW'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ck_cNnWkGwA/SezcKAPt85I/AAAAAAAAHnc/6zAxEtSFEIA/s72-c/Picture+1.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-5531113051526048888</id><published>2009-04-16T07:49:00.000-07:00</published><updated>2009-04-16T07:57:24.484-07:00</updated><title type='text'>Replace blank spaces in VI</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ck_cNnWkGwA/SedGFQNUpsI/AAAAAAAAHnI/000I4BwX1cE/s1600-h/Picture+2.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 235px;" src="http://3.bp.blogspot.com/_ck_cNnWkGwA/SedGFQNUpsI/AAAAAAAAHnI/000I4BwX1cE/s400/Picture+2.png" alt="" id="BLOGGER_PHOTO_ID_5325302140453037762" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ck_cNnWkGwA/SedGPzBaXyI/AAAAAAAAHnQ/mKGPRxSmJgc/s1600-h/Picture+3.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 400px; height: 233px;" src="http://3.bp.blogspot.com/_ck_cNnWkGwA/SedGPzBaXyI/AAAAAAAAHnQ/mKGPRxSmJgc/s400/Picture+3.png" alt="" id="BLOGGER_PHOTO_ID_5325302321597013794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is really basic but tons of folks do not know how to do it and it comes in handy for data clean up.&lt;br /&gt;&lt;br /&gt;Use the below command in VI&lt;br /&gt;:%s///g&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-5531113051526048888?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/5531113051526048888/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=5531113051526048888' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5531113051526048888'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/5531113051526048888'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/04/replace-blank-spaces-in-vi.html' title='Replace blank spaces in VI'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ck_cNnWkGwA/SedGFQNUpsI/AAAAAAAAHnI/000I4BwX1cE/s72-c/Picture+2.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-654892819728550478</id><published>2009-04-02T19:06:00.000-07:00</published><updated>2009-04-02T19:06:00.533-07:00</updated><title type='text'>Weekend Project wikipedia mobile</title><content type='html'>Working on wikipedia mobile project&lt;br /&gt;&lt;br /&gt;&lt;a href="http://github.com/hcatlin/wikimedia-mobile/tree/master"&gt;http://github.com/hcatlin/wikimedia-mobile/tree/master&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-654892819728550478?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/654892819728550478/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=654892819728550478' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/654892819728550478'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/654892819728550478'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/04/weekend-project-wikipedia-mobile.html' title='Weekend Project wikipedia mobile'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-3861659867216394776</id><published>2009-03-25T09:49:00.000-07:00</published><updated>2009-03-25T09:56:16.033-07:00</updated><title type='text'>Geo tagging on google maps based on AREA CODE of phone number</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ck_cNnWkGwA/ScpiI-LyqoI/AAAAAAAAHik/N855FFIpxnI/s1600-h/Picture+2.png"&gt;&lt;img style="cursor: pointer; width: 400px; height: 320px;" src="http://2.bp.blogspot.com/_ck_cNnWkGwA/ScpiI-LyqoI/AAAAAAAAHik/N855FFIpxnI/s400/Picture+2.png" alt="" id="BLOGGER_PHOTO_ID_5317170216335223426" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-3861659867216394776?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/3861659867216394776/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=3861659867216394776' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3861659867216394776'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3861659867216394776'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/geo-tagging-on-google-maps-based-on.html' title='Geo tagging on google maps based on AREA CODE of phone number'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ck_cNnWkGwA/ScpiI-LyqoI/AAAAAAAAHik/N855FFIpxnI/s72-c/Picture+2.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-3302700169569595102</id><published>2009-03-23T14:56:00.000-07:00</published><updated>2009-03-23T15:01:51.458-07:00</updated><title type='text'>RSS reader IPHONE SDK 2.1</title><content type='html'>Change&lt;br /&gt;&lt;br /&gt;    &lt;span style="font-size:100%;"&gt;NSString * path = @"http://rss.cnn.com/rss/money_latest.rss";&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;With&lt;br /&gt;&lt;br /&gt;    NSString * path = @"Yours";&lt;br /&gt;&lt;br /&gt;download the zip &lt;a href="http://72.54.20.221:9199/rss.zip"&gt;here&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-3302700169569595102?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/3302700169569595102/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=3302700169569595102' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3302700169569595102'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3302700169569595102'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/rss-reader-iphone-sdk-21.html' title='RSS reader IPHONE SDK 2.1'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-410576024448052513</id><published>2009-03-16T08:40:00.001-07:00</published><updated>2009-03-16T08:46:39.454-07:00</updated><title type='text'>Google charts with visualazation via SVG and VML</title><content type='html'>http://code.google.com/apis/visualization/documentation/gallery/piechart.html&lt;br /&gt;&lt;br /&gt;sample here&lt;br /&gt;&lt;br /&gt;http://www.mobilegreatness.com/charts.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-410576024448052513?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/410576024448052513/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=410576024448052513' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/410576024448052513'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/410576024448052513'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/google-charts-with-visualazation-via.html' title='Google charts with visualazation via SVG and VML'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-9012943980841807298</id><published>2009-03-04T07:36:00.000-08:00</published><updated>2009-03-04T07:42:17.953-08:00</updated><title type='text'>WAP forms Verizon Open wave devices</title><content type='html'>I have found one small issue with some veizon phones when it comes to supporting forms in WAP on some verozin phones in the User profile there is a method called "Forms inside of tables" this value is either true or false. If false your forms will NOT be displayed if they are inside of html (tables , tr etc. etc.) it is good proactice for WAP 2.0 to not have forms inside of html tags this will fix your issue.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-9012943980841807298?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/9012943980841807298/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=9012943980841807298' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/9012943980841807298'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/9012943980841807298'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/wap-forms-verizon-open-wave-devices.html' title='WAP forms Verizon Open wave devices'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-2710744022571735122</id><published>2009-03-03T16:41:00.000-08:00</published><updated>2009-03-03T16:44:11.479-08:00</updated><title type='text'>Ad mobs ads iphone sdk</title><content type='html'>&lt;span style="font-size:100%;"&gt;If you are wondering why after 20 minutes of adding your ad mob ads they dont show up , i have found that it takes around 4-5 hours for your ads to show up even on your emulator so dont worry your code is right something is just taking a long time to propagate.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ck_cNnWkGwA/Sa3OwRqCGCI/AAAAAAAAHiE/MRbQu18Bzo8/s1600-h/Picture+2.png"&gt;&lt;img style="cursor: pointer; width: 215px; height: 400px;" src="http://3.bp.blogspot.com/_ck_cNnWkGwA/Sa3OwRqCGCI/AAAAAAAAHiE/MRbQu18Bzo8/s400/Picture+2.png" alt="" id="BLOGGER_PHOTO_ID_5309126864508426274" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-2710744022571735122?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/2710744022571735122/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=2710744022571735122' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2710744022571735122'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/2710744022571735122'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/ad-mobs-ads-iphone-sdk.html' title='Ad mobs ads iphone sdk'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ck_cNnWkGwA/Sa3OwRqCGCI/AAAAAAAAHiE/MRbQu18Bzo8/s72-c/Picture+2.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-8773358544204446462</id><published>2009-03-03T16:34:00.000-08:00</published><updated>2009-03-03T16:47:43.090-08:00</updated><title type='text'>Google Adsense SMS</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;a.aspx.cs&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;protected void Page_Load(object sender, EventArgs e)&lt;br /&gt; {&lt;br /&gt;     Response.Write("&lt;b&gt;Keep Text Messaging FREE AND SAFE click our ad below.&lt;/b&gt;");&lt;br /&gt;     Response.Write("&lt;br /&gt;");&lt;br /&gt;    // Response.Write("Visit www.mobilegreatness.com From your PC to get your Free SMS widget");&lt;br /&gt;   //  Response.Write("&lt;b&gt;To support us, please click on below google ad&lt;/b&gt;");&lt;br /&gt;     //Response.Write("&lt;br /&gt;");&lt;br /&gt;     string googleScheme = "http://";&lt;br /&gt;     string googleHost = Server.UrlEncode(googleScheme + Request.ServerVariables["HTTP_HOST"]);&lt;br /&gt;     double googleTime = (DateTime.Now - new&lt;br /&gt;DateTime(1970, 1, 1)).TotalSeconds;&lt;br /&gt;     double googleDt = (1000 * googleTime) + Math.Round(1000 * Timer() -&lt;br /&gt;     (int)Timer());&lt;br /&gt;&lt;br /&gt;     string https = Request.ServerVariables["HTTPS"];&lt;br /&gt;     if (https.IndexOf("on") &gt; -1)&lt;br /&gt;     {&lt;br /&gt;         googleScheme = "https://";&lt;br /&gt;     }&lt;br /&gt;&lt;br /&gt;     string googleAdUrl = "http://pagead2.googlesyndication.com/pagead/ads?ad_type=text_image&amp;amp;channel=" +&lt;br /&gt;"&amp;amp;client=ca-mb-pub-3965045331381248" +&lt;br /&gt;"&amp;amp;color_border="+googleColor("555555", googleTime) +&lt;br /&gt;"&amp;amp;color_bg="+ googleColor("EEEEEE", googleTime) +&lt;br /&gt;"&amp;amp;color_link=" + googleColor("400058", googleTime) +&lt;br /&gt;"&amp;amp;color_text=" + googleColor("000000", googleTime) +&lt;br /&gt;"&amp;amp;color_url=" + googleColor("008000", googleTime) +&lt;br /&gt;"&amp;amp;dt=" +googleDt +&lt;br /&gt;"&amp;amp;format=mobile_single" +&lt;br /&gt;"&amp;amp;host="+googleHost +&lt;br /&gt;"&amp;amp;ip=" + Server.UrlEncode(Request.ServerVariables["REMOTE_ADDR"]) +&lt;br /&gt;"&amp;amp;markup=xhtml&amp;amp;oe=utf8&amp;amp;output=xhtml" +&lt;br /&gt;"&amp;amp;ref=" + Server.UrlEncode(Request.ServerVariables["HTTP_REFERER"])&lt;br /&gt;+"&amp;amp;url=" + googleHost +&lt;br /&gt;Server.UrlEncode(Request.ServerVariables["URL"]) +&lt;br /&gt;"&amp;amp;useragent=" +&lt;br /&gt;Server.UrlEncode(Request.ServerVariables["HTTP_USER_AGENT"]) +&lt;br /&gt;googleScreenRes();&lt;br /&gt;&lt;br /&gt;     WebClient wc = new WebClient();&lt;br /&gt;     string googleAdOutput = wc.DownloadString(googleAdUrl);&lt;br /&gt;     Response.Write(googleAdOutput);&lt;br /&gt;     HttpWebRequest req = (HttpWebRequest)&lt;br /&gt;     WebRequest.Create(googleAdUrl);&lt;br /&gt;     HttpWebResponse resp = null;&lt;br /&gt;&lt;br /&gt;     try&lt;br /&gt;     {&lt;br /&gt;&lt;br /&gt;         req.Timeout =&lt;br /&gt;Int32.Parse(ConfigurationManager.AppSettings["Google_Timeout_Msec"]);&lt;br /&gt;         resp = (HttpWebResponse)req.GetResponse();&lt;br /&gt;&lt;br /&gt;         Stream responseStream = resp.GetResponseStream();&lt;br /&gt;         StreamReader streamReader = new StreamReader(responseStream,&lt;br /&gt;Encoding.UTF8);&lt;br /&gt;         googleAdOutput = streamReader.ReadToEnd();&lt;br /&gt;     &lt;br /&gt;     }&lt;br /&gt;     &lt;br /&gt;     catch (HttpException htex)&lt;br /&gt;     {&lt;br /&gt;     }&lt;br /&gt;     catch (Exception exception)&lt;br /&gt;     {&lt;br /&gt;&lt;br /&gt;         googleAdOutput = "";&lt;br /&gt;&lt;br /&gt;     }&lt;br /&gt;     finally&lt;br /&gt;     {&lt;br /&gt;      // According to MS doc. it's only necessary to close either&lt;br /&gt;&lt;br /&gt;      if (resp != null) {&lt;br /&gt;         resp.Close();&lt;br /&gt;      }&lt;br /&gt;   }&lt;br /&gt; }&lt;br /&gt; string googleColor(string value, double random)&lt;br /&gt; {&lt;br /&gt;     string[] colorArray = value.Split(',');&lt;br /&gt;     return colorArray[(int)random % colorArray.Length];&lt;br /&gt;&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; string googleScreenRes()&lt;br /&gt; {&lt;br /&gt;     string screenRes = Request.ServerVariables["HTTP_UA_PIXELS"];&lt;br /&gt;     char delimiter = 'x';&lt;br /&gt;     if (screenRes == null)&lt;br /&gt;     {&lt;br /&gt;         screenRes = Request.ServerVariables["HTTP_X_UP_DEVCAP_SCREENPIXELS"];&lt;br /&gt;         delimiter = ',';&lt;br /&gt;   &lt;br /&gt;&lt;br /&gt;     }&lt;br /&gt;     if (screenRes != null)&lt;br /&gt;     {&lt;br /&gt;         string[] resArray = screenRes.Split(delimiter);&lt;br /&gt;         if (resArray.GetUpperBound(0) + 1 == 2)&lt;br /&gt;         {&lt;br /&gt;             return "&amp;amp;u_w=" + resArray[0] + "&amp;amp;u_h=" + resArray[1];&lt;br /&gt;         }&lt;br /&gt;     }&lt;br /&gt;     return "";&lt;br /&gt;&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; double Timer()&lt;br /&gt; {&lt;br /&gt;     return (DateTime.Now - DateTime.Now.Date).TotalSeconds;&lt;br /&gt;&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt;}&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;a.aspx&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;%@ Import Namespace="System.Xml" %&gt;&lt;br /&gt;&lt;%@ Import Namespace="System.Text" %&gt;&lt;br /&gt;&lt;%@ Import Namespace="System.IO" %&gt;&lt;br /&gt;&lt;%@ Import Namespace="System.Net" %&gt;&lt;br /&gt;&lt;%@ Import Namespace="System.Web" %&gt;&lt;br /&gt;&lt;br /&gt; &lt;script runat="server"&gt;&lt;br /&gt;string googleColor(string value, double random) {&lt;br /&gt;        string[] colorArray = value.Split(',');&lt;br /&gt;        return colorArray[(int)random % colorArray.Length];&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;string googleScreenRes() {&lt;br /&gt;        string screenRes = Request.ServerVariables["HTTP_UA_PIXELS"];&lt;br /&gt;        char delimiter = 'x';&lt;br /&gt;        if ( screenRes == null ) {&lt;br /&gt;                screenRes =&lt;br /&gt;Request.ServerVariables["HTTP_X_UP_DEVCAP_SCREENPIXELS"];&lt;br /&gt;                delimiter = ',';&lt;br /&gt;        }&lt;br /&gt;        if ( screenRes != null ) {&lt;br /&gt;                string[] resArray = screenRes.Split(delimiter);&lt;br /&gt;                if ( resArray.GetUpperBound(0) + 1 == 2 ) {&lt;br /&gt;                        return "&amp;amp;u_w=" + resArray[0] + "&amp;amp;u_h=" + resArray[1];&lt;br /&gt;                }&lt;br /&gt;        }&lt;br /&gt;        return "";&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;double Timer() {&lt;br /&gt;        return (DateTime.Now - DateTime.Now.Date).TotalSeconds;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;%     double googleTime = (DateTime.Now - new DateTime(1970,1,1)).TotalSeconds; double googleDt = (1000 * googleTime) + Math.Round(1000 * Timer() -(int)Timer()); string googleScheme = "http://"; string https = Request.ServerVariables["HTTPS"]; if (https.IndexOf("on") &gt; -1)&lt;br /&gt;{&lt;br /&gt; googleScheme = "https://";&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;string googleHost = Server.UrlEncode(googleScheme +Request.ServerVariables["HTTP_HOST"]);&lt;br /&gt;string googleAdOutput = "";&lt;br /&gt;string googleAdUrl = "http://pagead2.googlesyndication.com/pagead/ads?" +&lt;br /&gt;"ad_type=text_image" +&lt;br /&gt;"&amp;amp;channel=" +&lt;br /&gt;"&amp;amp;client=ca-mb-pub-3965045331381248" +&lt;br /&gt;"&amp;amp;color_border=" + googleColor("555555", googleTime) +&lt;br /&gt;"&amp;amp;color_bg=" + googleColor("EEEEEE", googleTime) +&lt;br /&gt;"&amp;amp;color_link=" + googleColor("400058", googleTime) +&lt;br /&gt;"&amp;amp;color_text=" + googleColor("000000", googleTime) +&lt;br /&gt;"&amp;amp;color_url=" + googleColor("008000", googleTime) +&lt;br /&gt;"&amp;amp;dt=" + googleDt +&lt;br /&gt;"&amp;amp;format=mobile_single" +&lt;br /&gt;"&amp;amp;host=" + googleHost +&lt;br /&gt;"&amp;amp;ip=" + Server.UrlEncode(Request.ServerVariables["REMOTE_ADDR"]) +&lt;br /&gt;"&amp;amp;markup=xhtml" +&lt;br /&gt;"&amp;amp;oe=utf8" +&lt;br /&gt;"&amp;amp;output=xhtml" +&lt;br /&gt;"&amp;amp;ref=" + Server.UrlEncode(Request.ServerVariables["HTTP_REFERER"]) +&lt;br /&gt;&lt;br /&gt;"&amp;amp;url=" + googleHost +&lt;br /&gt;Server.UrlEncode(Request.ServerVariables["URL"]) +&lt;br /&gt;"&amp;amp;useragent=" +&lt;br /&gt;Server.UrlEncode(Request.ServerVariables["HTTP_USER_AGENT"]) +&lt;br /&gt;googleScreenRes();&lt;br /&gt;&lt;br /&gt;HttpWebRequest req = (HttpWebRequest)&lt;br /&gt;WebRequest.Create(googleAdUrl);&lt;br /&gt;   HttpWebResponse resp;&lt;br /&gt;&lt;br /&gt;   try {&lt;br /&gt; &lt;br /&gt;      req.Timeout =&lt;br /&gt;Int32.Parse(ConfigurationManager.AppSettings["Google_Timeout_Msec"]);&lt;br /&gt;      resp = (HttpWebResponse)req.GetResponse();&lt;br /&gt;&lt;br /&gt;      Stream responseStream = resp.GetResponseStream();&lt;br /&gt;      StreamReader streamReader = new StreamReader(responseStream,Encoding.UTF8);&lt;br /&gt;      googleAdOutput = streamReader.ReadToEnd();&lt;br /&gt;      resp.Close();&lt;br /&gt;&lt;br /&gt;   } catch (Exception exception) {&lt;br /&gt;      // Something went wrong.  This is a good place to log theexception.&lt;br /&gt;      googleAdOutput = "";&lt;br /&gt;   }&lt;br /&gt;%&gt; --&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-8773358544204446462?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/8773358544204446462/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=8773358544204446462' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/8773358544204446462'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/8773358544204446462'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/google-adsense-sms.html' title='Google Adsense SMS'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-6234172378321621803</id><published>2009-03-03T16:29:00.000-08:00</published><updated>2009-03-03T16:48:42.524-08:00</updated><title type='text'>SPOOF SMS Enjoy</title><content type='html'>http://www.mobilegreatness.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-6234172378321621803?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/6234172378321621803/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=6234172378321621803' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/6234172378321621803'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/6234172378321621803'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/spoof-sms-enjoy-httpwww.html' title='SPOOF SMS Enjoy'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-1726740683910180966</id><published>2009-03-03T16:23:00.000-08:00</published><updated>2009-03-03T16:46:11.289-08:00</updated><title type='text'>AJAX Timer asp.net Datagrid</title><content type='html'>&lt;span style="font-weight: bold;"&gt;ajax.aspx.cs&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;   {&lt;br /&gt;       GridData.DataSource = getData();&lt;br /&gt;       GridData.DataBind();&lt;br /&gt;       Page.DataBind();&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   protected void Timer1_Tick(object sender, EventArgs e)&lt;br /&gt;   {&lt;br /&gt;       //Label1.Text = "Total Messages of  " + DateTime.Now.ToLongTimeString();&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;   public static DataTable getData()&lt;br /&gt;   {&lt;br /&gt;       DataSet ds = new DataSet();&lt;br /&gt;       try&lt;br /&gt;       {&lt;br /&gt;           OdbcConnection conn = new OdbcConnection(ConfigurationManager.ConnectionStrings["connection_string"].ConnectionString);&lt;br /&gt;           string query = String.Format("Stored Procedure");&lt;br /&gt;           OdbcDataAdapter adap = new OdbcDataAdapter(query, conn);&lt;br /&gt;&lt;br /&gt;           adap.Fill(ds);&lt;br /&gt;&lt;br /&gt;       }&lt;br /&gt;       catch (Exception ex)&lt;br /&gt;       {&lt;br /&gt;&lt;br /&gt;       }&lt;br /&gt;       return ds.Tables[0];&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;ajax.aspx&lt;br /&gt;&lt;br /&gt;&lt;asp:scriptmanager id="ScriptManager1" runat="server"&gt;&lt;asp:updatepanel id="UpdatePanel1" updatemode="Conditional" runat="server"&gt;&lt;triggers&gt;    &lt;/triggers&gt;&lt;/asp:updatepanel&gt;&lt;/asp:scriptmanager&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-1726740683910180966?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/1726740683910180966/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=1726740683910180966' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/1726740683910180966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/1726740683910180966'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/ajax-timer-asp.html' title='AJAX Timer asp.net Datagrid'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-7403494813232274230</id><published>2009-03-03T16:18:00.000-08:00</published><updated>2009-03-03T16:49:07.169-08:00</updated><title type='text'>Delete ALL mail out of queue SENDMAIL</title><content type='html'>run this as a cron&lt;br /&gt;&lt;br /&gt;0,15,30,45 * * * * find /var/spool/mqueue -type f -print0 | xargs -0 rm -rf&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;as you can see it will do it every 15 minutes works perfect fedora sendmail&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-7403494813232274230?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/7403494813232274230/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=7403494813232274230' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7403494813232274230'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7403494813232274230'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/delete-all-mail-out-of-queue-sendmail.html' title='Delete ALL mail out of queue SENDMAIL'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-6177942048403771923</id><published>2009-03-03T16:15:00.000-08:00</published><updated>2009-03-03T16:48:16.435-08:00</updated><title type='text'>CURL post from asp.net to php</title><content type='html'>curlpost.aspx.cs&lt;br /&gt;&lt;br /&gt;public string HttpPost(string uri, string parameters)&lt;br /&gt;  {&lt;br /&gt;      WebRequest webRequest = WebRequest.Create(uri);&lt;br /&gt;      webRequest.ContentType = "application/x-www-form-urlencoded";&lt;br /&gt;      webRequest.Method = "POST";&lt;br /&gt;      byte[] bytes = Encoding.ASCII.GetBytes(parameters);&lt;br /&gt;      Stream os = null;&lt;br /&gt;      try&lt;br /&gt;      {&lt;br /&gt;          webRequest.ContentLength = bytes.Length;&lt;br /&gt;          os = webRequest.GetRequestStream();&lt;br /&gt;          os.Write(bytes, 0, bytes.Length);&lt;br /&gt;      }&lt;br /&gt;      catch (WebException ex)&lt;br /&gt;      {&lt;br /&gt;&lt;br /&gt;      }&lt;br /&gt;      finally&lt;br /&gt;      {&lt;br /&gt;          if (os != null)&lt;br /&gt;              os.Close();&lt;br /&gt;      }&lt;br /&gt;&lt;br /&gt;      try&lt;br /&gt;      {&lt;br /&gt;          WebResponse webResponse = webRequest.GetResponse();&lt;br /&gt;          if (webResponse == null)&lt;br /&gt;          { return null; }&lt;br /&gt;          StreamReader sr = new StreamReader(webResponse.GetResponseStream());&lt;br /&gt;          return sr.ReadToEnd().Trim();&lt;br /&gt;      }&lt;br /&gt;      catch (WebException ex)&lt;br /&gt;      {&lt;br /&gt;&lt;br /&gt;      }&lt;br /&gt;      return null;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;objmm.HttpPost("http://phppaghere", "from_number=" + dtVot.Rows[0]["fromphonenumber"].ToString() + "&amp;amp;to_number=" + phonenumber);&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-6177942048403771923?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/6177942048403771923/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=6177942048403771923' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/6177942048403771923'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/6177942048403771923'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/curl-post-from-asp.html' title='CURL post from asp.net to php'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-610727074741694072</id><published>2009-03-03T16:03:00.000-08:00</published><updated>2009-03-03T16:21:35.044-08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Consuming SOAP service (asmx) in php&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;$this-&gt;key,&lt;br /&gt;                       'phonenumber' =&gt; $member_phone_number,&lt;br /&gt;                       'memberid' =&gt; $member_id,&lt;br /&gt;                       'programid' =&gt; $program_id,&lt;br /&gt;                       'shortcode' =&gt; "something_here"              &lt;br /&gt;               );&lt;br /&gt;               try {&lt;br /&gt;                   logger('info', "Error Message");&lt;br /&gt;                   $client = new SoapClient($this-&gt;WSDL);&lt;br /&gt;                   $client-&gt;SOAPMETHODHERE($params);&lt;br /&gt;               } catch (SoapFault $exception) {&lt;br /&gt;                      mailer('err', "EXCEPTION IN Calling : " . $exception);&lt;br /&gt;               }  &lt;br /&gt;             &lt;br /&gt;               $this-&gt;sendMessage($member_id, $this-&gt;confirmMsgID);&lt;br /&gt;           }&lt;br /&gt;       }&lt;br /&gt;     &lt;br /&gt;       //ELSE NUM_ROWS &lt;= 0         //DONT DO ANYTHING, THIS PHONE IS NEVER SEEN BEFORE         //SOMEONE JUST SENDING  OUT OF THE BLUE         logger('info', " DOING NOTHING");     }          private function sendMessage($member_id, $message_id){           logger('info', "SEND MESSAGE function::Sending msg ID=" . $message_id . " To memmberid=" . $member_id);          class_exists('Outgoing_Message_Queue') || require('classes/outgoing_message_queue.php');         $outgoing_message_obj = new Outgoing_Message_Queue($message_id);         $outgoing_message_obj-&gt;sendToMember($member_id);&lt;br /&gt;    }&lt;br /&gt; &lt;br /&gt;}&lt;br /&gt;?&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-610727074741694072?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/610727074741694072/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=610727074741694072' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/610727074741694072'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/610727074741694072'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/consuming-soap-service-asmx-in-php.html' title=''/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-3544148642433297112</id><published>2009-03-03T15:51:00.000-08:00</published><updated>2009-03-03T16:22:36.965-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ck_cNnWkGwA/Sa3Jv9rvv2I/AAAAAAAAHh8/GkgjBCrlqaM/s1600-h/Picture+1.png"&gt;&lt;img style="cursor: pointer; width: 285px; height: 400px;" src="http://2.bp.blogspot.com/_ck_cNnWkGwA/Sa3Jv9rvv2I/AAAAAAAAHh8/GkgjBCrlqaM/s400/Picture+1.png" alt="" id="BLOGGER_PHOTO_ID_5309121361588764514" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Consuming a web SOAP web service (asmx) with iphone (sdk)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;here i go&lt;br /&gt;&lt;br /&gt;View controller&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;//  Hello_SOAPAppDelegate.m&lt;br /&gt;//  Hello_SOAP&lt;br /&gt;//&lt;br /&gt;//  Created by Dave McAnall on 11/2/08.&lt;br /&gt;//  Copyright __MyCompanyName__ 2008. All rights reserved.&lt;br /&gt;//&lt;br /&gt;&lt;br /&gt;#import "Hello_SOAPViewController.h"&lt;br /&gt;&lt;br /&gt;@implementation Hello_SOAPViewController&lt;br /&gt;&lt;br /&gt;@synthesize greeting, tonumber,fromnumber,nameInput, webData, soapResults, xmlParser;&lt;br /&gt;&lt;br /&gt;-(IBAction)buttonClick:(id)sender&lt;br /&gt;{&lt;br /&gt; recordResults = FALSE;&lt;br /&gt;&lt;br /&gt; NSString *soapMessage = [NSString stringWithFormat:&lt;br /&gt; @"\n"&lt;br /&gt; "&lt;soap:envelope xsi="\&amp;quot;http://www.w3.org/2001/XMLSchema-instance\&amp;quot;" xsd="\&amp;quot;http://www.w3.org/2001/XMLSchema\&amp;quot;" soap="\&amp;quot;http://schemas.xmlsoap.org/soap/envelope/\&amp;quot;"&gt;\n"&lt;br /&gt; "&lt;soap:body&gt;\n"&lt;br /&gt; "&lt;sendtexttofriend xmlns="\&amp;quot;http://tempuri.org/\&amp;quot;"&gt;\n"&lt;br /&gt; "&lt;tophonenumber&gt;%@&lt;/tophonenumber&gt;\n"&lt;br /&gt; "&lt;fromphonenumber&gt;%@&lt;/fromphonenumber&gt;\n"&lt;br /&gt; "&lt;username&gt;%@&lt;/username&gt;\n"&lt;br /&gt; "&lt;licensekey&gt;keys .net ones&lt;/licensekey&gt;\n"&lt;br /&gt; "&lt;/sendtexttofriend&gt;\n"&lt;br /&gt; "&lt;/soap:body&gt;\n"&lt;br /&gt; "&lt;/soap:envelope&gt;\n", tonumber.text,fromnumber.text,nameInput.text,"key"&lt;br /&gt; ];&lt;br /&gt; NSLog(soapMessage);&lt;br /&gt;&lt;br /&gt; NSURL *url = [NSURL URLWithString:@"http://yourasmx.asmx"];&lt;br /&gt; NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];&lt;br /&gt; NSString *msgLength = [NSString stringWithFormat:@"%d", [soapMessage length]];&lt;br /&gt;&lt;br /&gt; [theRequest addValue: @"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];&lt;br /&gt; [theRequest addValue: @"http://tempuri.org/SendTextToFriend" forHTTPHeaderField:@"SOAPAction"];&lt;br /&gt; [theRequest addValue: msgLength forHTTPHeaderField:@"Content-Length"];&lt;br /&gt; [theRequest setHTTPMethod:@"POST"];&lt;br /&gt; [theRequest setHTTPBody: [soapMessage dataUsingEncoding:NSUTF8StringEncoding]];&lt;br /&gt;&lt;br /&gt; NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];&lt;br /&gt;&lt;br /&gt; if( theConnection )&lt;br /&gt; {&lt;br /&gt;     webData = [[NSMutableData data] retain];&lt;br /&gt; }&lt;br /&gt; else&lt;br /&gt; {&lt;br /&gt;     NSLog(@"theConnection is NULL");&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; [nameInput resignFirstResponder];&lt;br /&gt; [fromnumber resignFirstResponder];&lt;br /&gt; [tonumber resignFirstResponder];&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response&lt;br /&gt;{&lt;br /&gt; [webData setLength: 0];&lt;br /&gt;}&lt;br /&gt;-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data&lt;br /&gt;{&lt;br /&gt; [webData appendData:data];&lt;br /&gt;}&lt;br /&gt;-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error&lt;br /&gt;{&lt;br /&gt; NSLog(@"ERROR with theConenction");&lt;br /&gt; [connection release];&lt;br /&gt; [webData release];&lt;br /&gt;}&lt;br /&gt;-(void)connectionDidFinishLoading:(NSURLConnection *)connection&lt;br /&gt;{&lt;br /&gt; NSLog(@"DONE. Received Bytes: %d", [webData length]);&lt;br /&gt; NSString *theXML = [[NSString alloc] initWithBytes: [webData mutableBytes] length:[webData length] encoding:NSUTF8StringEncoding];&lt;br /&gt; NSLog(theXML);&lt;br /&gt; [theXML release];&lt;br /&gt;&lt;br /&gt; if( xmlParser )&lt;br /&gt; {&lt;br /&gt;     [xmlParser release];&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; xmlParser = [[NSXMLParser alloc] initWithData: webData];&lt;br /&gt; [xmlParser setDelegate: self];&lt;br /&gt; [xmlParser setShouldResolveExternalEntities: YES];&lt;br /&gt; [xmlParser parse];&lt;br /&gt;&lt;br /&gt; [connection release];&lt;br /&gt; [webData release];&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *) namespaceURI qualifiedName:(NSString *)qName&lt;br /&gt;attributes: (NSDictionary *)attributeDict&lt;br /&gt;{&lt;br /&gt; if( [elementName isEqualToString:@"SendTextToFriendResult"])&lt;br /&gt; {&lt;br /&gt;     if(!soapResults)&lt;br /&gt;     {&lt;br /&gt;         soapResults = [[NSMutableString alloc] init];&lt;br /&gt;     }&lt;br /&gt;     recordResults = TRUE;&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;-(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string&lt;br /&gt;{&lt;br /&gt; if( recordResults )&lt;br /&gt; {&lt;br /&gt;     [soapResults appendString: string];&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;-(void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName&lt;br /&gt;{&lt;br /&gt; if( [elementName isEqualToString:@"SendTextToFriendResult"])&lt;br /&gt; {&lt;br /&gt;     recordResults = FALSE;&lt;br /&gt;     greeting.text = soapResults;&lt;br /&gt;     [soapResults release];&lt;br /&gt;     soapResults = nil;&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;Implement loadView if you want to create a view hierarchy programmatically&lt;br /&gt;- (void)loadView {&lt;br /&gt;}&lt;br /&gt;*/&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;Implement viewDidLoad if you need to do additional setup after loading the view.&lt;br /&gt;- (void)viewDidLoad {&lt;br /&gt; [super viewDidLoad];&lt;br /&gt;}&lt;br /&gt;*/&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {&lt;br /&gt; // Return YES for supported orientations&lt;br /&gt; return (interfaceOrientation == UIInterfaceOrientationPortrait);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;- (void)didReceiveMemoryWarning {&lt;br /&gt; [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview&lt;br /&gt; // Release anything that's not essential, such as cached data&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;- (void)dealloc&lt;br /&gt;{&lt;br /&gt; [xmlParser release];&lt;br /&gt; [super dealloc];&lt;br /&gt;}&lt;br /&gt;@end&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Header&lt;br /&gt;&lt;br /&gt;//&lt;br /&gt;//  Hello_SOAPViewController.h&lt;br /&gt;//  Hello_SOAP&lt;br /&gt;//&lt;br /&gt;//  Created by Dave McAnall on 11/2/08.&lt;br /&gt;//  Copyright __MyCompanyName__ 2008. All rights reserved.&lt;br /&gt;//&lt;br /&gt;&lt;br /&gt;#import &lt;uikit h=""&gt;&lt;br /&gt;&lt;br /&gt;@interface Hello_SOAPViewController : UIViewController&lt;br /&gt;{&lt;br /&gt; IBOutlet UITextField *nameInput;&lt;br /&gt; IBOutlet UITextField *tonumber;&lt;br /&gt; IBOutlet UITextField *fromnumber;&lt;br /&gt; IBOutlet UILabel *greeting;&lt;br /&gt; NSMutableData *webData;&lt;br /&gt; NSMutableString *soapResults;&lt;br /&gt; NSXMLParser *xmlParser;&lt;br /&gt; BOOL *recordResults;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;@property(nonatomic, retain) IBOutlet UITextField *nameInput;&lt;br /&gt;@property(nonatomic, retain) IBOutlet UITextField *tonumber;&lt;br /&gt;@property(nonatomic, retain) IBOutlet UITextField *fromnumber;&lt;br /&gt;@property(nonatomic, retain) IBOutlet UILabel *greeting;&lt;br /&gt;@property(nonatomic, retain) NSMutableData *webData;&lt;br /&gt;@property(nonatomic, retain) NSMutableString *soapResults;&lt;br /&gt;@property(nonatomic, retain) NSXMLParser *xmlParser;&lt;br /&gt;&lt;br /&gt;-(IBAction)buttonClick: (id) sender;&lt;br /&gt;&lt;br /&gt;@end&lt;br /&gt;&lt;br /&gt;XIB&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/uikit&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-3544148642433297112?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/3544148642433297112/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=3544148642433297112' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3544148642433297112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/3544148642433297112'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2009/03/consuming-web-soap-web-service-asmx.html' title=''/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ck_cNnWkGwA/Sa3Jv9rvv2I/AAAAAAAAHh8/GkgjBCrlqaM/s72-c/Picture+1.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-7290056421282045397</id><published>2008-08-05T09:12:00.000-07:00</published><updated>2008-08-05T09:29:55.140-07:00</updated><title type='text'>Using a web service in flash 9</title><content type='html'>Here is how to use a webservice SOAP push in flash 9 enjoy&lt;br /&gt;&lt;br /&gt;Action script&lt;br /&gt;&lt;br /&gt;import mx.services.WebService;&lt;br /&gt;import mx.services.PendingCall;&lt;br /&gt;/*&lt;br /&gt;for testing puposes outside of a webserving ENV, use the following security parameter&lt;br /&gt;*/&lt;br /&gt;&lt;br /&gt;System.security.allowDomain("http://yourdomainhere");&lt;br /&gt;var toNumberDial:String = "";&lt;br /&gt;&lt;br /&gt;var ServiceResponse:String = "Ready Response";&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;&lt;br /&gt;for final production server, set the above to the production path and uncomment the below and be sure to place the&lt;br /&gt;path to the cross domain policy xml&lt;br /&gt;*/&lt;br /&gt;//System.security.loadPolicyFile("http://path-to/crossdomain.xml");&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/*this set up is using the rare method but very effective webservice class of flash&lt;br /&gt;the set up is very simple, at it inheirits netconnection and xml class for the soap exchange by default&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;In this example the webservice gateway is established with two lines of code&lt;br /&gt;*/&lt;br /&gt;var sWSDURL:String = "http://yourwebservicehere";&lt;br /&gt;var WebServiceGateway:WebService = new WebService(sWSDURL);&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;A function is placed to send the values inputed in by user to establish the call;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;    as a means of reporting the results, we assign the value of the response node to the DynamicText box variable&lt;br /&gt;    **this is also a means of telling the flash code with a swith modifier to play the action sequence when it is a success&lt;br /&gt;&lt;br /&gt;*/&lt;br /&gt;    pcResponse.onResult = function(nResponse):Void {&lt;br /&gt;    _root.ServiceResponse = nResponse;&lt;br /&gt;    trace(nResponse);&lt;br /&gt;    };&lt;br /&gt;&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-7290056421282045397?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/7290056421282045397/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=7290056421282045397' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7290056421282045397'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/7290056421282045397'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2008/08/using-web-service-in-flash-9.html' title='Using a web service in flash 9'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7615026743333586447.post-903907436526528904</id><published>2008-05-31T07:11:00.000-07:00</published><updated>2008-07-28T15:02:35.268-07:00</updated><title type='text'>Mobile Development Code samples</title><content type='html'>&lt;ol  style="font-family:verdana;"&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://picasaweb.google.com/sjehutch/AndroidMP3"&gt;Andorid QR code samples&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://picasaweb.google.com/sjehutch/BlackberryShortcuts"&gt;Blackberry JDE code samples&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://picasaweb.google.com/sjehutch/Android"&gt;Android streaming mp3 code samples&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;a href="http://wurfl.mango2go.mobi:8080/"&gt;User Agent profile lookup&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;hr /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The Pirate BAY WAP RSS READER&lt;/span&gt;&lt;br /&gt;File - &lt;a href="http://216.133.155.201:8080/mg/jsp/rss/rss.jsp.txt"&gt;rss.jsp&lt;/a&gt;&lt;br /&gt;File - &lt;a href="http://216.133.155.201:8080/mg/jsp/rss/rss_detail.jsp.txt"&gt;rss_detail.jsp&lt;/a&gt;&lt;br /&gt;File - &lt;a href="http://216.133.155.201:8080/mg/rssutils.tld"&gt;rssutils.tld&lt;/a&gt;&lt;br /&gt;File -&lt;a href="http://216.133.155.201:8080/demo/rssutils.jar"&gt; rssut&lt;/a&gt;&lt;a href="http://216.133.155.201:8080/demo/rssutils.jar"&gt;ils.jar&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://216.133.155.201:8080/mg/jsp/rss/rss.jsp"&gt;Working Sample&lt;/a&gt;&lt;rss:foreachitem feedid="example2"&gt;&lt;/rss:foreachitem&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;br /&gt;Microsoft MAPS asp.net c# code example&lt;br /&gt;&lt;a href="http://216.133.155.195:8095/ymp.aspx"&gt;&lt;br /&gt;Click here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;Google Spreadsheet as data source asp.net&lt;br /&gt;&lt;br /&gt;using Google.GData.Client;&lt;br /&gt;using Google.GData.Extensions;&lt;br /&gt;using Google.GData.Spreadsheets;&lt;br /&gt;using System.Globalization;&lt;br /&gt;&lt;br /&gt;public partial class redeem : System.Web.UI.Page&lt;br /&gt;{&lt;br /&gt;   protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;   {&lt;br /&gt;&lt;br /&gt;   }&lt;br /&gt;   protected void OnCode_Change(object sender, EventArgs e)&lt;br /&gt;   {&lt;br /&gt;       string visit = "0";&lt;br /&gt;       CultureInfo culture = new CultureInfo("en-US");&lt;br /&gt;       if (txtcode.Text.Contains("&lt;"))         {             lblerror.Text = "Invalid Scan. Please try again";             lblerror.Visible = true;             txtcode.Text = "";         }         else         {              SpreadsheetsService service = new SpreadsheetsService("Sample Spreadsheet");             service.setUserCredentials("gmailuserid", "password");              SpreadsheetQuery query = new SpreadsheetQuery();             query.Title = "title of spreadsheet";             SpreadsheetFeed feed = service.Query(query);              if (feed.Entries.Count != 1) return;              AtomLink link = feed.Entries[0].Links.FindService(GDataSpreadsheetsNameTable.WorksheetRel, null);             WorksheetQuery worksheetQuery = new WorksheetQuery(link.HRef.ToString());             worksheetQuery.Title = "Sheet1";             WorksheetFeed worksheetFeed = service.Query(worksheetQuery);              if (worksheetFeed.Entries.Count != 1) return;              WorksheetEntry worksheet = (WorksheetEntry)worksheetFeed.Entries[0];               AtomLink listFeedLink = worksheet.Links.FindService(GDataSpreadsheetsNameTable.ListRel, null);              ListQuery listQuery = new ListQuery(listFeedLink.HRef.ToString());             ListFeed listFeed = service.Query(listQuery);              foreach (ListEntry worksheetRow in listFeed.Entries)             {                 string scanData = worksheetRow.Elements[0].Value.ToString();                 string[] arSD = new string[100];                  char[] splitterFilemSD = { ',' };                 arSD = scanData.Split(splitterFilemSD);                  if (arSD.Length &gt; 0)&lt;br /&gt;               {&lt;br /&gt;                   string codess = arSD[0].ToString();&lt;br /&gt;                   if (codess == txtcode.Text.ToString())&lt;br /&gt;                   {&lt;br /&gt;                       string ddtt = arSD[1].ToString();&lt;br /&gt;                       string[] arUAm = new string[30];&lt;br /&gt;&lt;br /&gt;                       char[] splitterFilem = { ' ' };&lt;br /&gt;                       arUAm = ddtt.Split(splitterFilem);&lt;br /&gt;&lt;br /&gt;                       if (arUAm.Length &gt; 0)&lt;br /&gt;                       {&lt;br /&gt;                         &lt;br /&gt;                        &lt;br /&gt;                           ddtt = arUAm[1].ToString() + " " + arUAm[0].ToString()+".000";&lt;br /&gt;                       }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;                       DataAccess.InsertRedeem(txtcode.Text, arSD[2].ToString(), ddtt);&lt;br /&gt;                   }&lt;br /&gt;               }&lt;br /&gt;             &lt;br /&gt;&lt;br /&gt;           }&lt;br /&gt;           lblerror.Visible = false;&lt;br /&gt;         &lt;br /&gt;           Session["WC"] = txtcode.Text.ToString();&lt;br /&gt;           DataTable dtCnt = DataAccess.GetStationCount(txtcode.Text);&lt;br /&gt;           if (dtCnt.Rows.Count &gt; 0)&lt;br /&gt;           {&lt;br /&gt;               visit = dtCnt.Rows.Count.ToString();&lt;br /&gt;           }&lt;br /&gt;           DataAccess.InsertRedeem(txtcode.Text, "Redemption", DateTime.Now.ToString());&lt;br /&gt;           Response.Redirect("passfail.aspx?vs="+visit);&lt;br /&gt;       }&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;Google Gadget to send FREE SMS (I built it )&lt;br /&gt;&lt;a href="http://techno.mango2go.com/gadgets/MangoMobileSMS/MangoMobileSMS.gg"&gt;&lt;br /&gt;Download here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;WAP Icon Launcher Blackberry Java Code-&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;launcher.java&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;import net.rim.device.api.system&lt;/span&gt;.&lt;span style="color: rgb(153, 153, 153);"&gt;ApplicationDescriptor;&lt;/span&gt;&lt;br /&gt;&lt;div style="color: rgb(102, 102, 102);" id="1euu" class="ArwC7c ckChnd"&gt; import net.rim.device.api.system&lt;wbr&gt;.ApplicationManager;&lt;br /&gt;import net.rim.device.api.system&lt;wbr&gt;.ApplicationManagerException;&lt;br /&gt;import net.rim.device.api.system&lt;wbr&gt;.CodeModuleManager;&lt;br /&gt;import net.rim.device.api.ui.UiApplic&lt;wbr&gt;ation;&lt;br /&gt;&lt;br /&gt;public class launcher extends UiApplication {&lt;br /&gt;public static void main(String[] args){&lt;br /&gt;launcher instance = new launcher();&lt;br /&gt;instance.enterEventDispatcher(&lt;wbr&gt;);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public launcher() {&lt;br /&gt;boolean retval = true;&lt;br /&gt;int handle = CodeModuleManager.getModuleHan&lt;wbr&gt;dle("net_rim_bb_browser_daemon&lt;wbr&gt;");&lt;br /&gt;if (handle &lt;=0 ){ System.exit(0); }else{ ApplicationDescriptor[] browserDescriptors = CodeModuleManager.getApplicati&lt;wbr&gt;onDescriptors(handle);&lt;br /&gt;if (browserDescriptors == null ){&lt;br /&gt;System.exit(0);&lt;br /&gt;}else{&lt;br /&gt;if ( browserDescriptors.length &lt;=0 ){ System.exit(0); }else{ String[] args = {"url", "&lt;a href="http://wap.nick.com/" target="_blank"&gt;http://wap.url.com&lt;/a&gt;"};&lt;br /&gt;ApplicationDescriptor descriptor = new&lt;br /&gt;ApplicationDescriptor(browserD&lt;wbr&gt;escriptors[0],"url invocation",&lt;br /&gt;args,null, -1, null, -1,ApplicationDescriptor.FLAG&lt;wbr&gt;_SYSTEM);&lt;br /&gt;try{&lt;br /&gt;ApplicationManager.getApplicat&lt;wbr&gt;ionManager().runApplication&lt;wbr&gt;(descriptor);&lt;br /&gt;}catch(ApplicationManagerExcep&lt;wbr&gt;tion e){&lt;br /&gt;System.exit(0);&lt;br /&gt;}&lt;br /&gt;System.exit(0);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;a href="http://picasaweb.google.com/sjehutch/BlackberryShortcuts/"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Working Sample&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;span style="font-weight: bold;font-family:verdana;" &gt;&lt;hr /&gt;&lt;br /&gt;WA&lt;/span&gt;&lt;span style="font-weight: bold;font-family:verdana;" &gt;P Support Blackberry Verizon 8830 &lt;/span&gt;-&lt;span style="text-decoration: underline;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In trouble shooting WAP CSS style sheet not rendering for a Blackberry 8830 world phone 2 conclusions were reached .&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_ck_cNnWkGwA/SERS50amAGI/AAAAAAAAEOY/cT0ZAjUiyEo/s1600-h/unt.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp3.blogger.com/_ck_cNnWkGwA/SERS50amAGI/AAAAAAAAEOY/cT0ZAjUiyEo/s400/unt.jpg" alt="" id="BLOGGER_PHOTO_ID_5207378222423343202" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;1. By default this phone ships with style sheets turned off (you can instruct the user to enable them) .&lt;br /&gt;&lt;br /&gt;2. you need to embed the style in the tag ex. NOT TO USE table class="class name here" YOU SHOULD USE table style="style definition here".&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;Android QR Code Screen Shots/Code Sample-&lt;/span&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;Click here&lt;br /&gt;&lt;br /&gt;&lt;hr /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://wurfl.mango2go.mobi:8080/"&gt;WURFL Tomcat working &lt;/a&gt;&lt;span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:verdana;font-size:85%;" class="artTitle"  &gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;hr /&gt;&lt;/span&gt;&lt;/span&gt;&lt;p  style="font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;WAP Definition -&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style=";font-family:verdana;font-size:85%;"  &gt;Take for example the mobile device Blackberry 8300 (curve) User Agent of blackberry8300_ver1 . In the UA Profile of the user agent the XHTML &lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-size:inherit;color:black;"  &gt;leve&lt;/span&gt;l support is xhtml_support_&lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-size:inherit;color:black;"  &gt;leve&lt;/span&gt;l    3 as you can see below would support a nice looking WAP site.&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;table style="table-layout: fixed; border-collapse: collapse;" border="1" cellpadding="5" width="600"&gt;&lt;tbody&gt;&lt;tr  style="font-family:verdana;"&gt;&lt;td bg="" style="color: rgb(221, 221, 221);" align="left" width="200"&gt;&lt;span style="font-size:85%;"&gt;&lt;i&gt;Capability Name&lt;/i&gt;&lt;/span&gt;&lt;/td&gt;   &lt;td bg="" style="color: rgb(221, 221, 221);" align="left" width="150"&gt;&lt;span style="font-size:85%;"&gt;Type&lt;/span&gt;&lt;/td&gt;   &lt;td bg="" style="color: rgb(221, 221, 221);" align="left" width="320"&gt;&lt;span style="font-size:85%;"&gt;Description&lt;/span&gt;&lt;/td&gt; &lt;/tr&gt;  &lt;tr&gt;    &lt;td  valign="top" style="font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;xhtml_support_&lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-size:inherit;color:black;"  &gt;leve&lt;/span&gt;l&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;td  valign="top" style="font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;[-1 |..| 4]&lt;/span&gt;&lt;/td&gt;&lt;td valign="top"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:verdana;"&gt;Assuming  the device supports some form of XHTML, this capability measures how reliably certain common designer features are supported, according to the following description: &lt;/span&gt;&lt;/span&gt;&lt;pre  style="font-size:85%;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:verdana;"&gt;- &lt;/span&gt;&lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-family:verdana;font-size:inherit;color:black;"   &gt;leve&lt;/span&gt;&lt;span style="font-family:verdana;"&gt;l "-1":&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;no XHTML support of any kind.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Possible WML support&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Nokia 7110, 7210 as well as&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;all UP.Browser 4 and 5 devices.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;- &lt;/span&gt;&lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-family:verdana;font-size:inherit;color:black;"   &gt;leve&lt;/span&gt;&lt;span style="font-family:verdana;"&gt;l "0" :&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;basic XHTML Support.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Minimum screen-width: 100 pixel&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;No (or very unreliable) CSS support.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Poor table support or none at all.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Basic forms: text field, select-option,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;submit button.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;May not be able to support input&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;mask on fields.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Ex Device: SonyEricsson T610/T616&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;- &lt;/span&gt;&lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-family:verdana;font-size:inherit;color:black;"   &gt;leve&lt;/span&gt;&lt;span style="font-family:verdana;"&gt;l "1" :&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;XHTML with some CSS support.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Minimum sceen-width: 120 pixels.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Hyperlinks may not be collorable by CSS.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Basic table support: 2x2 or more.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Colspan and rowspan may not be supported.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;"width" expressed as percentage may be&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;unreliable.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Ex Device: Sharp GX 10, Nokia 3650&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;- &lt;/span&gt;&lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-family:verdana;font-size:inherit;color:black;"   &gt;leve&lt;/span&gt;&lt;span style="font-family:verdana;"&gt;l "2" :&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Assume same capabilities as&lt;/span&gt;&lt;br /&gt;&lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-family:verdana;font-size:inherit;color:black;"   &gt;leve&lt;/span&gt;&lt;span style="font-family:verdana;"&gt;l "1", but may vary in the future.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Ex Device: Nokia6600,Nokia5300&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;- &lt;/span&gt;&lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-family:verdana;font-size:inherit;color:black;"   &gt;leve&lt;/span&gt;&lt;span style="font-family:verdana;"&gt;l "3" :&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Excellent CSS support.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Padding, border and margin are correctly&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;applied.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Can reliable apply colors to links,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;text and background.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;CSS graphic effects are pixel perfect&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Minimum sceen-width: 164 pixels.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Can support complex tables (but not&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;necessarily nested tables) up to&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;4 cells in a row.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Not setting "font-size" produces&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;a readable font.        &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Supports background images also&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;when applied through CSS.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Generally running on 3G devices.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Ex: Nokia Series 60 DP 3,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Browsers: Openwave Mobile Browser 7,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;MS Mobile Explorer,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;recent BlackBerrys. Netfront 3.2,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Safari (including iPhone), Sony PSP...&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;(assuming high-bandwidth, Edge/UMTS/...)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;         &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;- &lt;/span&gt;&lt;span id="__firefox-findbar-search-id" style="padding: 0pt; background-color: yellow; display: inline;font-family:verdana;font-size:inherit;color:black;"   &gt;leve&lt;/span&gt;&lt;span style="font-family:verdana;"&gt;l "4" :&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Level 3 + Ajax support.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Toggle display property.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;XMLHTTPRequest(). InnerHTML()&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7615026743333586447-903907436526528904?l=mobilecodesamples.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mobilecodesamples.blogspot.com/feeds/903907436526528904/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7615026743333586447&amp;postID=903907436526528904' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/903907436526528904'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7615026743333586447/posts/default/903907436526528904'/><link rel='alternate' type='text/html' href='http://mobilecodesamples.blogspot.com/2008/05/mobile-development-code-samples.html' title='Mobile Development Code samples'/><author><name>jdbholmes</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_ck_cNnWkGwA/SERS50amAGI/AAAAAAAAEOY/cT0ZAjUiyEo/s72-c/unt.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
