<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for MacOSCoders</title>
	<atom:link href="http://www.macoscoders.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.macoscoders.com</link>
	<description>My blog to talk on iPhone, Mac OS, Adobe Flex, AIR...</description>
	<lastBuildDate>Mon, 26 Mar 2012 18:57:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Add Background Image To UIView by amulya</title>
		<link>http://www.macoscoders.com/2009/06/11/add-background-image-to-uiview/comment-page-1/#comment-765</link>
		<dc:creator>amulya</dc:creator>
		<pubDate>Mon, 26 Mar 2012 18:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=262#comment-765</guid>
		<description>In app delegate i have


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    
    
	
     
   backgroundPortrait = [[UIImage imageNamed:@&quot;bg.png&quot;] retain];
    
	
#if IPAD_VERSION
	[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
	backgroundLandscape = [[UIImage imageNamed:@&quot;bg-land.png&quot;] release];
#endif
	
    // Override point for customization after app launch    
    //[window addSubview:viewController.view];
      
    navigationController=[[UINavigationController alloc]initWithRootViewController:viewController];
    //To hide navigation controller
    [navigationController setNavigationBarHidden:YES];
    self.window.rootViewController = self.navigationController;
    [window makeKeyAndVisible];
    appOptions = [[OptionPack alloc] init];
	[appOptions loadOptions];
	
	geoPack = [[GeoPack alloc] init];
	[geoPack loadGeoAnswerJumblers];
		
	[SoundManager initManager];
	return YES;
}


IN GAMEVIEW CONTROLLER I HAVE:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {
        // Custom initialization
#if IPAD_VERSION
		[self switchToInterfaceOrientation:[UIDevice currentDevice].orientation duration:0.0];
#else
		GeoBeesAppDelegate * app = [[UIApplication sharedApplication] delegate];
		
       
        self.view.backgroundColor = [UIColor colorWithPatternImage:app.backgroundPortrait];
       
       
    #endif
		
    }
    return self;
}

the problem is i am getting 100% leak at
   self.view.backgroundColor = [UIColor colorWithPatternImage:app.backgroundPortrait];
       (in game viewcontroller) 
not able to release this leak.</description>
		<content:encoded><![CDATA[<p>In app delegate i have</p>
<p>- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    </p>
<p>   backgroundPortrait = [[UIImage imageNamed:@"bg.png"] retain];</p>
<p>#if IPAD_VERSION<br />
	[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];<br />
	backgroundLandscape = [[UIImage imageNamed:@"bg-land.png"] release];<br />
#endif</p>
<p>    // Override point for customization after app launch<br />
    //[window addSubview:viewController.view];</p>
<p>    navigationController=[[UINavigationController alloc]initWithRootViewController:viewController];<br />
    //To hide navigation controller<br />
    [navigationController setNavigationBarHidden:YES];<br />
    self.window.rootViewController = self.navigationController;<br />
    [window makeKeyAndVisible];<br />
    appOptions = [[OptionPack alloc] init];<br />
	[appOptions loadOptions];</p>
<p>	geoPack = [[GeoPack alloc] init];<br />
	[geoPack loadGeoAnswerJumblers];</p>
<p>	[SoundManager initManager];<br />
	return YES;<br />
}</p>
<p>IN GAMEVIEW CONTROLLER I HAVE:<br />
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {<br />
    if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {<br />
        // Custom initialization<br />
#if IPAD_VERSION<br />
		[self switchToInterfaceOrientation:[UIDevice currentDevice].orientation duration:0.0];<br />
#else<br />
		GeoBeesAppDelegate * app = [[UIApplication sharedApplication] delegate];</p>
<p>        self.view.backgroundColor = [UIColor colorWithPatternImage:app.backgroundPortrait];</p>
<p>    #endif</p>
<p>    }<br />
    return self;<br />
}</p>
<p>the problem is i am getting 100% leak at<br />
   self.view.backgroundColor = [UIColor colorWithPatternImage:app.backgroundPortrait];<br />
       (in game viewcontroller)<br />
not able to release this leak.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by Ashok Solanki</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-764</link>
		<dc:creator>Ashok Solanki</dc:creator>
		<pubDate>Thu, 19 Jan 2012 12:35:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-764</guid>
		<description>hi,

I am able to send my message on apple server but not getting on device.

please help.</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>I am able to send my message on apple server but not getting on device.</p>
<p>please help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by Ashish Joshi</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-763</link>
		<dc:creator>Ashish Joshi</dc:creator>
		<pubDate>Mon, 02 Jan 2012 06:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-763</guid>
		<description>hi ..
i have used APNS in my project.it is working fine with sandbox account .i can receive or send the messages. but when the app gone live we are unable to send or receive the messages.we are using the PHP script and AWS .
Please help me out .

Thanks.</description>
		<content:encoded><![CDATA[<p>hi ..<br />
i have used APNS in my project.it is working fine with sandbox account .i can receive or send the messages. but when the app gone live we are unable to send or receive the messages.we are using the PHP script and AWS .<br />
Please help me out .</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by saravana</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-762</link>
		<dc:creator>saravana</dc:creator>
		<pubDate>Tue, 27 Dec 2011 13:01:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-762</guid>
		<description>am also facing same problem........do you have any solution for this?</description>
		<content:encoded><![CDATA[<p>am also facing same problem&#8230;&#8230;..do you have any solution for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by mokra</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-760</link>
		<dc:creator>mokra</dc:creator>
		<pubDate>Fri, 16 Sep 2011 05:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-760</guid>
		<description>I &#039;am not understand this article post . very complicated to explain</description>
		<content:encoded><![CDATA[<p>I &#8216;am not understand this article post . very complicated to explain</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In-App SMS in iPhone OS 4.0 by inot</title>
		<link>http://www.macoscoders.com/2010/08/12/in-app-sms-in-iphone-os-4-0/comment-page-1/#comment-759</link>
		<dc:creator>inot</dc:creator>
		<pubDate>Mon, 15 Aug 2011 16:06:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=433#comment-759</guid>
		<description>Hi, can I mask the phone number of recipients with recipients name like Messages App?</description>
		<content:encoded><![CDATA[<p>Hi, can I mask the phone number of recipients with recipients name like Messages App?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by Sujay</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-756</link>
		<dc:creator>Sujay</dc:creator>
		<pubDate>Tue, 05 Jul 2011 09:27:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-756</guid>
		<description>When i test Push Notification with apn_development_cer, it works with the loaded app on the iPhone device from Xcode.

But, when i am downloading the same application from App Store or with the Ad Hoc Distribution on the same iPhone device from Xcode, it just stops sending Push Notification with apn_production_cer.

For the sandbox environment, we are using gateway.sandbox.push.apple.com where is works perfectly. However, for production environment, we are using gateway.push.apple.com, port 2195. We have also made sure port 2195 is not blocked by firewall

Thanks in advance!</description>
		<content:encoded><![CDATA[<p>When i test Push Notification with apn_development_cer, it works with the loaded app on the iPhone device from Xcode.</p>
<p>But, when i am downloading the same application from App Store or with the Ad Hoc Distribution on the same iPhone device from Xcode, it just stops sending Push Notification with apn_production_cer.</p>
<p>For the sandbox environment, we are using gateway.sandbox.push.apple.com where is works perfectly. However, for production environment, we are using gateway.push.apple.com, port 2195. We have also made sure port 2195 is not blocked by firewall</p>
<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by Jarnail</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-755</link>
		<dc:creator>Jarnail</dc:creator>
		<pubDate>Fri, 24 Jun 2011 06:49:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-755</guid>
		<description>Hi
 I have SSL installed on site and it is displaying error :
 Failed to connect 0

SSL installed, ports 2195, 2196 is also opened on the server. but getting the same error. Please guide me if some one has fixed the problem.

Thanks in advance.
- Jarnail</description>
		<content:encoded><![CDATA[<p>Hi<br />
 I have SSL installed on site and it is displaying error :<br />
 Failed to connect 0</p>
<p>SSL installed, ports 2195, 2196 is also opened on the server. but getting the same error. Please guide me if some one has fixed the problem.</p>
<p>Thanks in advance.<br />
- Jarnail</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Terminal Error : &#8220;Could not determine audit condition&#8221; by Sindhu VK</title>
		<link>http://www.macoscoders.com/2010/12/16/terminal-error-could-not-determine-audit-condition/comment-page-1/#comment-754</link>
		<dc:creator>Sindhu VK</dc:creator>
		<pubDate>Thu, 09 Jun 2011 13:00:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=444#comment-754</guid>
		<description>I want to export a rich text editor component data to powerpoint ,
i tried to take a snapshot using imagesnapshot and export it as a bytearray to java, but when there is more data, scroll bars appear due to which i get only visible data on the screen.



 private function takeSnapshot(source:IBitmapDrawable):void {
                var imageSnap:ImageSnapshot = ImageSnapshot.captureImage(source);


where is source is datagrid
I cannot pass datagrid full data as byte array to java.

required immediately</description>
		<content:encoded><![CDATA[<p>I want to export a rich text editor component data to powerpoint ,<br />
i tried to take a snapshot using imagesnapshot and export it as a bytearray to java, but when there is more data, scroll bars appear due to which i get only visible data on the screen.</p>
<p> private function takeSnapshot(source:IBitmapDrawable):void {<br />
                var imageSnap:ImageSnapshot = ImageSnapshot.captureImage(source);</p>
<p>where is source is datagrid<br />
I cannot pass datagrid full data as byte array to java.</p>
<p>required immediately</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by wangjing</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-753</link>
		<dc:creator>wangjing</dc:creator>
		<pubDate>Mon, 09 May 2011 02:05:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-753</guid>
		<description>Hi:
i could not connect gateway.sandbox.push.apple.com 2195 on both windows and mac os, the info appears that connection timed out. and the codes is down from Cocoa China forum.
Is there any thing wrong with my network? how can i deal with it ?</description>
		<content:encoded><![CDATA[<p>Hi:<br />
i could not connect gateway.sandbox.push.apple.com 2195 on both windows and mac os, the info appears that connection timed out. and the codes is down from Cocoa China forum.<br />
Is there any thing wrong with my network? how can i deal with it ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Add Background Image To UIView by John James</title>
		<link>http://www.macoscoders.com/2009/06/11/add-background-image-to-uiview/comment-page-1/#comment-752</link>
		<dc:creator>John James</dc:creator>
		<pubDate>Sun, 01 May 2011 14:00:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=262#comment-752</guid>
		<description>Actually none of these work for more than the first view when trying to make a background for image selected from a table list.</description>
		<content:encoded><![CDATA[<p>Actually none of these work for more than the first view when trying to make a background for image selected from a table list.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enable HTTPS On Apache Running On A Leopard by KommyKT</title>
		<link>http://www.macoscoders.com/2009/07/22/enable-https-on-apache-running-on-a-leopard/comment-page-1/#comment-751</link>
		<dc:creator>KommyKT</dc:creator>
		<pubDate>Tue, 26 Apr 2011 15:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=298#comment-751</guid>
		<description>Hi!

Can you help my, to create certificate for Apple push notification service. I use Easy APNS, and in this article the first command i do not run &quot;/System/Library/OpenSSL/misc/CA.pl -newca&quot; because i do not access it. Another way to do this command?</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>Can you help my, to create certificate for Apple push notification service. I use Easy APNS, and in this article the first command i do not run &#8220;/System/Library/OpenSSL/misc/CA.pl -newca&#8221; because i do not access it. Another way to do this command?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by Akshay Shah</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-750</link>
		<dc:creator>Akshay Shah</dc:creator>
		<pubDate>Mon, 21 Mar 2011 08:49:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-750</guid>
		<description>Hi,

Any updates on notifications not received during call on iPhone?

Thanks,
Akshay</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Any updates on notifications not received during call on iPhone?</p>
<p>Thanks,<br />
Akshay</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by Vaibhav</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-749</link>
		<dc:creator>Vaibhav</dc:creator>
		<pubDate>Wed, 23 Feb 2011 10:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-749</guid>
		<description>Hello,

This is a very nice article. Just one problem i am facing. this script works fine if i use this manually from web-browser and it sends all the notifications for a same time. but when request comes via an iPhone for location wise notifications it only sends 2 notifications if there are more than two notifications for the same time.

any idea; why it is happening?</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>This is a very nice article. Just one problem i am facing. this script works fine if i use this manually from web-browser and it sends all the notifications for a same time. but when request comes via an iPhone for location wise notifications it only sends 2 notifications if there are more than two notifications for the same time.</p>
<p>any idea; why it is happening?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Error: The executable was signed with invalid entitlements by Paresh</title>
		<link>http://www.macoscoders.com/2009/06/08/error-the-executable-was-signed-with-invalid-entitlements/comment-page-1/#comment-748</link>
		<dc:creator>Paresh</dc:creator>
		<pubDate>Mon, 24 Jan 2011 15:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=243#comment-748</guid>
		<description>Hi,

I have just started iPhone development. I have development account in Apple site and also have valid provisioning profile which I have added in one of our projects and working fine. When I tried to run the testing application given at http://teachyourselfiphone.com/ , it gives me error saying &quot;A signed resource has been added, modified, or deleted&quot;. Can you tell me how to get rid of this error. Its really annoying since past few hours, I am not getting around it.

Thanks,
Paresh</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have just started iPhone development. I have development account in Apple site and also have valid provisioning profile which I have added in one of our projects and working fine. When I tried to run the testing application given at <a href="http://teachyourselfiphone.com/" rel="nofollow">http://teachyourselfiphone.com/</a> , it gives me error saying &#8220;A signed resource has been added, modified, or deleted&#8221;. Can you tell me how to get rid of this error. Its really annoying since past few hours, I am not getting around it.</p>
<p>Thanks,<br />
Paresh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by Gabriel</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-746</link>
		<dc:creator>Gabriel</dc:creator>
		<pubDate>Sat, 04 Dec 2010 11:12:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-746</guid>
		<description>Very nice article.. thanks for the info.
Are there any differences from today&#039;s push?</description>
		<content:encoded><![CDATA[<p>Very nice article.. thanks for the info.<br />
Are there any differences from today&#8217;s push?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by Anish Kumar</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-745</link>
		<dc:creator>Anish Kumar</dc:creator>
		<pubDate>Fri, 03 Dec 2010 09:55:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-745</guid>
		<description>check this post on my blog which also talks about how to create a certificate for linux or on mac thru command line...
http://www.macoscoders.com/2009/07/22/enable-https-on-apache-running-on-a-leopard/

hope it helps u,
-Anish</description>
		<content:encoded><![CDATA[<p>check this post on my blog which also talks about how to create a certificate for linux or on mac thru command line&#8230;<br />
<a href="http://www.macoscoders.com/2009/07/22/enable-https-on-apache-running-on-a-leopard/" rel="nofollow">http://www.macoscoders.com/2009/07/22/enable-https-on-apache-running-on-a-leopard/</a></p>
<p>hope it helps u,<br />
-Anish</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by Dinesh</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-744</link>
		<dc:creator>Dinesh</dc:creator>
		<pubDate>Fri, 03 Dec 2010 09:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-744</guid>
		<description>Hi Anish,

I came across your blog and it awesome.

While executing the apns.php in the local server, it works fine and i got push notification to device with sound. But when i try to execute the same php file with certificate in the client server, it gives the following error.

Warning: stream_socket_client() [function.stream-socket-client]: Unable to set local cert chain file `apns-dev.pem&#039;; Check that your cafile/capath settings include details of your certificate and its issuer in /var/www/pushv2/apns.php on line 26

Warning: stream_socket_client() [function.stream-socket-client]: failed to create an SSL handle in /var/www/pushv2/apns.php on line 26

Warning: stream_socket_client() [function.stream-socket-client]: Failed to enable crypto in /var/www/pushv2/apns.php on line 26

Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.push.apple.com:2195 (Unknown error) in /var/www/pushv2/apns.php on line 26
Failed to connect 0 

In the above comments, it says that

&quot;We need to generate the separate certificate for linux server. &quot;

So how can i generate the certificate from the server. explain in steps or give some reference link.Looking forward for your reply soon.

Please advice me on this.</description>
		<content:encoded><![CDATA[<p>Hi Anish,</p>
<p>I came across your blog and it awesome.</p>
<p>While executing the apns.php in the local server, it works fine and i got push notification to device with sound. But when i try to execute the same php file with certificate in the client server, it gives the following error.</p>
<p>Warning: stream_socket_client() [function.stream-socket-client]: Unable to set local cert chain file `apns-dev.pem&#8217;; Check that your cafile/capath settings include details of your certificate and its issuer in /var/www/pushv2/apns.php on line 26</p>
<p>Warning: stream_socket_client() [function.stream-socket-client]: failed to create an SSL handle in /var/www/pushv2/apns.php on line 26</p>
<p>Warning: stream_socket_client() [function.stream-socket-client]: Failed to enable crypto in /var/www/pushv2/apns.php on line 26</p>
<p>Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.push.apple.com:2195 (Unknown error) in /var/www/pushv2/apns.php on line 26<br />
Failed to connect 0 </p>
<p>In the above comments, it says that</p>
<p>&#8220;We need to generate the separate certificate for linux server. &#8221;</p>
<p>So how can i generate the certificate from the server. explain in steps or give some reference link.Looking forward for your reply soon.</p>
<p>Please advice me on this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone Apple Push Notification Service (APNS) by yaxita shah</title>
		<link>http://www.macoscoders.com/2009/05/17/iphone-apple-push-notification-service-apns/comment-page-1/#comment-743</link>
		<dc:creator>yaxita shah</dc:creator>
		<pubDate>Sat, 30 Oct 2010 12:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=191#comment-743</guid>
		<description>hi, 
     i am working for apns. i hv opened d port 2195, hv checked for ssl configuration also. and my certificate is generated on d same server on which my php scripts are. when i am running my code it is showing no errors.....n shows connection ok..... but am not able to get notification in iphone device........

         i dnt know whr i am wrong......please help me. ....thanks in advance..............

yaxita</description>
		<content:encoded><![CDATA[<p>hi,<br />
     i am working for apns. i hv opened d port 2195, hv checked for ssl configuration also. and my certificate is generated on d same server on which my php scripts are. when i am running my code it is showing no errors&#8230;..n shows connection ok&#8230;.. but am not able to get notification in iphone device&#8230;&#8230;..</p>
<p>         i dnt know whr i am wrong&#8230;&#8230;please help me. &#8230;.thanks in advance&#8230;&#8230;&#8230;&#8230;..</p>
<p>yaxita</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on In-App SMS in iPhone OS 4.0 by Ramkumar</title>
		<link>http://www.macoscoders.com/2010/08/12/in-app-sms-in-iphone-os-4-0/comment-page-1/#comment-742</link>
		<dc:creator>Ramkumar</dc:creator>
		<pubDate>Wed, 27 Oct 2010 07:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.macoscoders.com/?p=433#comment-742</guid>
		<description>Thank you very much Anish..... Can i know which webservice will support this</description>
		<content:encoded><![CDATA[<p>Thank you very much Anish&#8230;.. Can i know which webservice will support this</p>
]]></content:encoded>
	</item>
</channel>
</rss>
array(0) {
}

