<?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 JasonSamuel.com</title>
	<atom:link href="http://www.jasonsamuel.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jasonsamuel.com</link>
	<description>Cool stuff I see in the IT world</description>
	<lastBuildDate>Mon, 22 Feb 2010 17:31:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Creating a custom event log under Event Viewer to log server events by AA</title>
		<link>http://www.jasonsamuel.com/2010/01/08/creating-a-custom-event-log-under-event-viewer-to-log-server-events/comment-page-1/#comment-76</link>
		<dc:creator>AA</dc:creator>
		<pubDate>Mon, 22 Feb 2010 17:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=321#comment-76</guid>
		<description>This worked wonderfully. I used my own custom log and created a test log with the event create statement. one change is that it did not needed source (/so) parameter.</description>
		<content:encoded><![CDATA[<p>This worked wonderfully. I used my own custom log and created a test log with the event create statement. one change is that it did not needed source (/so) parameter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Log Parser to query huge log files and only display the results you need by Patrick</title>
		<link>http://www.jasonsamuel.com/2010/01/12/using-log-parser-to-query-huge-log-files-and-only-display-the-results-you-need/comment-page-1/#comment-59</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Tue, 09 Feb 2010 17:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=332#comment-59</guid>
		<description>Thanks for good pointers in this article. There is also another script that you can resource for parsing web server log files - http://www.biterscripting.com/SS_WebLogParser.html . Check it out when you get a chance. I have had good experience with it.</description>
		<content:encoded><![CDATA[<p>Thanks for good pointers in this article. There is also another script that you can resource for parsing web server log files &#8211; <a href="http://www.biterscripting.com/SS_WebLogParser.html" rel="nofollow">http://www.biterscripting.com/SS_WebLogParser.html</a> . Check it out when you get a chance. I have had good experience with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to convert an SSL cert to a .pem for installation on Citrix and Cisco appliances by robert langdon</title>
		<link>http://www.jasonsamuel.com/2010/01/07/how-to-convert-an-ssl-cert-to-a-pem-for-installation-on-citrix-and-cisco-appliances/comment-page-1/#comment-55</link>
		<dc:creator>robert langdon</dc:creator>
		<pubDate>Thu, 04 Feb 2010 14:15:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=302#comment-55</guid>
		<description>Hello all,
I get the folowing results when I execute a curl command attempting to
access a secure site:

D:\cURL\ssl&gt;curl -v --cacert mycert.pem -o test.txt
&quot;https://mydomain.mycompany.com/DWNLD.asp?id=128&quot;
* About to connect() to mydomain.mycompany.com:443
* Connected to mydomain.mycompany.com (vvv.xxx.yyy.zzz) port 443
* SSL: error:00000000:lib(0):func(0):reason(0)
* Closing connection #0
curl: (35) SSL: error:00000000:lib(0):func(0):reason(0)

D:\cURL\ssl&gt;

I am using curl-7.10.3 ssl version under Win32.

Here is how I generate mycert.pem from SSL certificate of web site
https://mydomain.mycompany.com:
(a) Open up https://mydomain.mycompany.com using MSIE 5.5
(b) Double click on the lock sign on MSIE status bar
(c) Click on Details tab
(d) Click on &quot;Copy to File&quot; button
(e) Click on Next on Certificate Export Wizard window
(f) Select &quot;Base-64 encoded X.509 (.CER)&quot; and then click on Next
(g) Enter d:\mycert.cer into file name input area
(h) Press Finish button to complete exporting certificate
(i) and finally use openssl to generte mycert.pem file
    openssl x509 -in mycert.cer -outform PEM -out mycert.pem

What am I doing wrong here? Can anybody tell me how to get .pem file
from IIS or the secure site itself?

By the way, when I turn off cURL&#039;s certificate verification
(by using -k option instead of --cacert), the above cURL command
runs with no errors.

Thanks a lot,</description>
		<content:encoded><![CDATA[<p>Hello all,<br />
I get the folowing results when I execute a curl command attempting to<br />
access a secure site:</p>
<p>D:\cURL\ssl&gt;curl -v &#8211;cacert mycert.pem -o test.txt<br />
&#8220;https://mydomain.mycompany.com/DWNLD.asp?id=128&#8243;<br />
* About to connect() to mydomain.mycompany.com:443<br />
* Connected to mydomain.mycompany.com (vvv.xxx.yyy.zzz) port 443<br />
* SSL: error:00000000:lib(0):func(0):reason(0)<br />
* Closing connection #0<br />
curl: (35) SSL: error:00000000:lib(0):func(0):reason(0)</p>
<p>D:\cURL\ssl&gt;</p>
<p>I am using curl-7.10.3 ssl version under Win32.</p>
<p>Here is how I generate mycert.pem from SSL certificate of web site<br />
<a href="https://mydomain.mycompany.com" rel="nofollow">https://mydomain.mycompany.com</a>:<br />
(a) Open up <a href="https://mydomain.mycompany.com" rel="nofollow">https://mydomain.mycompany.com</a> using MSIE 5.5<br />
(b) Double click on the lock sign on MSIE status bar<br />
(c) Click on Details tab<br />
(d) Click on &#8220;Copy to File&#8221; button<br />
(e) Click on Next on Certificate Export Wizard window<br />
(f) Select &#8220;Base-64 encoded X.509 (.CER)&#8221; and then click on Next<br />
(g) Enter d:\mycert.cer into file name input area<br />
(h) Press Finish button to complete exporting certificate<br />
(i) and finally use openssl to generte mycert.pem file<br />
    openssl x509 -in mycert.cer -outform PEM -out mycert.pem</p>
<p>What am I doing wrong here? Can anybody tell me how to get .pem file<br />
from IIS or the secure site itself?</p>
<p>By the way, when I turn off cURL&#8217;s certificate verification<br />
(by using -k option instead of &#8211;cacert), the above cURL command<br />
runs with no errors.</p>
<p>Thanks a lot,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VMware vSphere PowerCLI scripts to make your ESX Admin life easier by Alan Renouf</title>
		<link>http://www.jasonsamuel.com/2009/11/06/vmware-vsphere-powercli-scripts-to-make-your-esx-admin-life-easier/comment-page-1/#comment-34</link>
		<dc:creator>Alan Renouf</dc:creator>
		<pubDate>Wed, 20 Jan 2010 08:57:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=156#comment-34</guid>
		<description>Thanks for the post, Im always looking for ways to improve my scripts so if you have anything you would like to see please just leave a comment on the blog !</description>
		<content:encoded><![CDATA[<p>Thanks for the post, Im always looking for ways to improve my scripts so if you have anything you would like to see please just leave a comment on the blog !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jason&#8217;s BlackBerry Enterprise Server (BES) Setup Guide by Jason</title>
		<link>http://www.jasonsamuel.com/2009/01/09/jason-s-blackberry-enterprise-server-bes-setup-guide/comment-page-1/#comment-5</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 05 Nov 2009 21:14:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=27#comment-5</guid>
		<description>Excellent. This is not related to the SRP or ISA at all then. This is because the BESAdmin account does not have the correct permissions to the user’s mailbox you are trying to add. You are correct, a validation email will be sent to the user from the BESAdmin email account. But this all takes please on the Exchange server and nothing ever goes out and back in through your ISA server. If it isn’t working, it is because of permissions. Look at the Blackberry server logs and you can verify this.

Here is a test you can do. Go to “https://localhost/exchange” and log into OWA using the BESAdmin account. Then in the address bar, change the URL to “https://localhost/exchange/nameofuser” and press enter. You should now be viewing the user’s mailbox that you are trying to add to the BES server. If you get an error, then this means you do not have Read privilges to the mailbox. 

Remember, the BESAdmin needs to have access in Exchange &amp; AD in 3 places:

1. To the root (see #5 in the guide)
2. To the information store (see #6 in the guide)
3. To the user or OU (see #7 in the guide)

Also please verify that the user you are trying to add is not a Domain Admin or Power User. If they are, you are going to have to apply the permissions to the AdminSDholder in the bottom part of the guide.

Jason</description>
		<content:encoded><![CDATA[<p>Excellent. This is not related to the SRP or ISA at all then. This is because the BESAdmin account does not have the correct permissions to the user’s mailbox you are trying to add. You are correct, a validation email will be sent to the user from the BESAdmin email account. But this all takes please on the Exchange server and nothing ever goes out and back in through your ISA server. If it isn’t working, it is because of permissions. Look at the Blackberry server logs and you can verify this.</p>
<p>Here is a test you can do. Go to “https://localhost/exchange” and log into OWA using the BESAdmin account. Then in the address bar, change the URL to “https://localhost/exchange/nameofuser” and press enter. You should now be viewing the user’s mailbox that you are trying to add to the BES server. If you get an error, then this means you do not have Read privilges to the mailbox. </p>
<p>Remember, the BESAdmin needs to have access in Exchange &#038; AD in 3 places:</p>
<p>1. To the root (see #5 in the guide)<br />
2. To the information store (see #6 in the guide)<br />
3. To the user or OU (see #7 in the guide)</p>
<p>Also please verify that the user you are trying to add is not a Domain Admin or Power User. If they are, you are going to have to apply the permissions to the AdminSDholder in the bottom part of the guide.</p>
<p>Jason</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jason&#8217;s BlackBerry Enterprise Server (BES) Setup Guide by Fabio</title>
		<link>http://www.jasonsamuel.com/2009/01/09/jason-s-blackberry-enterprise-server-bes-setup-guide/comment-page-1/#comment-4</link>
		<dc:creator>Fabio</dc:creator>
		<pubDate>Thu, 05 Nov 2009 20:21:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=27#comment-4</guid>
		<description>&lt;a href=&quot;#comment-3&quot; rel=&quot;nofollow&quot;&gt;@Jason  &lt;/a&gt; 

Hi 

Many Thanks For the prompt reply 

I have checked the following previously, my apologies for not adding it to the initial question.

SRP status is Connected
Port 3101 is enabled through ISA
Bbsrptest works 100% 

From what I understand the validation process is a mail that is sent back to the server?
Its almost as if the blackberry device cannot get the mail to the server or doesn’t recognise it</description>
		<content:encoded><![CDATA[<p><a href="#comment-3" rel="nofollow">@Jason  </a> </p>
<p>Hi </p>
<p>Many Thanks For the prompt reply </p>
<p>I have checked the following previously, my apologies for not adding it to the initial question.</p>
<p>SRP status is Connected<br />
Port 3101 is enabled through ISA<br />
Bbsrptest works 100% </p>
<p>From what I understand the validation process is a mail that is sent back to the server?<br />
Its almost as if the blackberry device cannot get the mail to the server or doesn’t recognise it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jason&#8217;s BlackBerry Enterprise Server (BES) Setup Guide by Jason</title>
		<link>http://www.jasonsamuel.com/2009/01/09/jason-s-blackberry-enterprise-server-bes-setup-guide/comment-page-1/#comment-3</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 05 Nov 2009 19:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=27#comment-3</guid>
		<description>Hi Fabio,

First verify that you have a good connection to the SRP (just go the main page and verify it says “Connected”). Then make sure port 3101 is allowed outbound on the ISA server. You must create a new outbound TCP rule on the ISA from the BES server IP to all external. Also verify there are no other firewalls in your organization that may be between the two that could possibly be blocking outbound on this port.

Have you tried telneting to the SRP like I show above? You can also use the bbsrptest tool to check connectivity. It is located in your install path at “C:\Program Files\Research In Motion\BlackBerry Enterprise Server\Utility”.

Let me know if this works for you.

Jason</description>
		<content:encoded><![CDATA[<p>Hi Fabio,</p>
<p>First verify that you have a good connection to the SRP (just go the main page and verify it says “Connected”). Then make sure port 3101 is allowed outbound on the ISA server. You must create a new outbound TCP rule on the ISA from the BES server IP to all external. Also verify there are no other firewalls in your organization that may be between the two that could possibly be blocking outbound on this port.</p>
<p>Have you tried telneting to the SRP like I show above? You can also use the bbsrptest tool to check connectivity. It is located in your install path at “C:\Program Files\Research In Motion\BlackBerry Enterprise Server\Utility”.</p>
<p>Let me know if this works for you.</p>
<p>Jason</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jason&#8217;s BlackBerry Enterprise Server (BES) Setup Guide by Fabio</title>
		<link>http://www.jasonsamuel.com/2009/01/09/jason-s-blackberry-enterprise-server-bes-setup-guide/comment-page-1/#comment-2</link>
		<dc:creator>Fabio</dc:creator>
		<pubDate>Thu, 05 Nov 2009 18:34:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=27#comment-2</guid>
		<description>Hi 

Thank you for the info above 

I have a SBS 2003 server with ISA 2004 and exchange 2003 loaded. I have installed BPS on it everything seems to work correctly except for the activation part I send the activation mail to the device 8310 click on the setup wizard to create a new email account, select Enterprise install – insert the email address and the key that was generated. It tells me that its activating but does nothing. I run the monitor on isa to see if any traffic comes from the device and nothing. What port is it supposed to come in on?

I would really appreciate some insight 

Thanking you in advance</description>
		<content:encoded><![CDATA[<p>Hi </p>
<p>Thank you for the info above </p>
<p>I have a SBS 2003 server with ISA 2004 and exchange 2003 loaded. I have installed BPS on it everything seems to work correctly except for the activation part I send the activation mail to the device 8310 click on the setup wizard to create a new email account, select Enterprise install – insert the email address and the key that was generated. It tells me that its activating but does nothing. I run the monitor on isa to see if any traffic comes from the device and nothing. What port is it supposed to come in on?</p>
<p>I would really appreciate some insight </p>
<p>Thanking you in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exchange 2003 spam filtering made easy by Blake</title>
		<link>http://www.jasonsamuel.com/2008/12/04/exchange-2003-spam-filtering-made-easy/comment-page-1/#comment-9</link>
		<dc:creator>Blake</dc:creator>
		<pubDate>Fri, 27 Feb 2009 18:23:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=73#comment-9</guid>
		<description>Being able to point my more technically savvy clients to this extremely informative plain english example and explaination helps me to help my clients to help themselves.
I love your work!</description>
		<content:encoded><![CDATA[<p>Being able to point my more technically savvy clients to this extremely informative plain english example and explaination helps me to help my clients to help themselves.<br />
I love your work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jason&#8217;s BlackBerry Enterprise Server (BES) Setup Guide by Vernon Maxwell</title>
		<link>http://www.jasonsamuel.com/2009/01/09/jason-s-blackberry-enterprise-server-bes-setup-guide/comment-page-1/#comment-6</link>
		<dc:creator>Vernon Maxwell</dc:creator>
		<pubDate>Sat, 21 Feb 2009 22:40:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.jasonsamuel.com/?p=27#comment-6</guid>
		<description>Nice posting, good read</description>
		<content:encoded><![CDATA[<p>Nice posting, good read</p>
]]></content:encoded>
	</item>
</channel>
</rss>
