<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jeremy Smith&#039;s Blog</title>
	<atom:link href="http://jeremysmith1967.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeremysmith1967.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 14 Oct 2009 06:40:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jeremysmith1967.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Jeremy Smith&#039;s Blog</title>
		<link>http://jeremysmith1967.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jeremysmith1967.wordpress.com/osd.xml" title="Jeremy Smith&#039;s Blog" />
	<atom:link rel='hub' href='http://jeremysmith1967.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Editing HTML in .NET Application with WebBrowser controls</title>
		<link>http://jeremysmith1967.wordpress.com/2009/10/14/editing-html-in-net-application-with-webbrowser-controls/</link>
		<comments>http://jeremysmith1967.wordpress.com/2009/10/14/editing-html-in-net-application-with-webbrowser-controls/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 06:37:49 +0000</pubDate>
		<dc:creator>jeremysmith1967</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Editing HTML]]></category>
		<category><![CDATA[WebBrowser]]></category>

		<guid isPermaLink="false">http://jeremysmith1967.wordpress.com/?p=13</guid>
		<description><![CDATA[I had a requirement to be able to edit HTML from within my .NET (C#) application. After browsing many third-party controls, both free and payed for, I found that the current WebBrowser control can be used to edit HTML in a WYSIWYG fashion. I wrapped up the control into its own class, which enables seamless [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=13&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had a requirement to be able to edit HTML from within my .NET (C#) application. After browsing many third-party controls, both free and payed for, I found that the current WebBrowser control can be used to edit HTML in a WYSIWYG fashion. I wrapped up the control into its own class, which enables seamless editing. The class I created was a User control, which contains a single web browser control. This can then replace the standard webBrowser controls available in VS.</p>
<p>The code that was required was:<br />
<code><br />
public EditableWebControl()<br />
{<br />
    InitializeComponents();</p>
<p>    webBrowser1.DocumentText = ""; // used to init the doc<br />
    ((IHTMLDocument2)webBrowser1.Document.DomDocument).designMode = "On";<br />
}</p>
<p>public String Html<br />
{<br />
    get<br />
    {<br />
        return webBrowser1.DocumentText;<br />
    }</p>
<p>    set<br />
    {<br />
        webBrowser1.Document.OpenNew(true);<br />
        webBrowser1.Document.Write(value);<br />
    }<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeremysmith1967.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeremysmith1967.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeremysmith1967.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeremysmith1967.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeremysmith1967.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeremysmith1967.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeremysmith1967.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeremysmith1967.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeremysmith1967.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeremysmith1967.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeremysmith1967.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeremysmith1967.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeremysmith1967.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeremysmith1967.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=13&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeremysmith1967.wordpress.com/2009/10/14/editing-html-in-net-application-with-webbrowser-controls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02d1477c39d404ab639f90b25da29740?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeremysmith1967</media:title>
		</media:content>
	</item>
		<item>
		<title>Evaluating OGNL expressions in struts portlets in Websphere Portal Server 6.1</title>
		<link>http://jeremysmith1967.wordpress.com/2009/09/14/evaluating-ognl-expressions-in-struts-portals-in-websphere-portal-6-1/</link>
		<comments>http://jeremysmith1967.wordpress.com/2009/09/14/evaluating-ognl-expressions-in-struts-portals-in-websphere-portal-6-1/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 03:48:04 +0000</pubDate>
		<dc:creator>jeremysmith1967</dc:creator>
				<category><![CDATA[Websphere]]></category>

		<guid isPermaLink="false">http://jeremysmith1967.wordpress.com/?p=9</guid>
		<description><![CDATA[I had a problem with a struts application being ported to Websphere Portal 6.1 where the OGNL expressions were not being evaluated. for example: &#60;c:out value=&#8221;${MyBean.propertyName}&#8221; /&#62; would display the string ${MyBean.propertyName} rather than evaluate the property on the bean. The correct evaluation occurred when the following was added to the JSP: &#60;%@ page isELIgnored=&#8221;false&#8221;%&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=9&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had a problem with a struts application being ported to Websphere Portal 6.1 where the OGNL expressions were not being evaluated.</p>
<p>for example:</p>
<p>&lt;c:out value=&#8221;${MyBean.propertyName}&#8221; /&gt;</p>
<p>would display the string</p>
<p>${MyBean.propertyName}</p>
<p>rather than evaluate the property on the bean.</p>
<p>The correct evaluation occurred when the following was added to the JSP:</p>
<p>&lt;%@ page isELIgnored=&#8221;false&#8221;%&gt;</p>
<p align="left"><em> </em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeremysmith1967.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeremysmith1967.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeremysmith1967.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeremysmith1967.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeremysmith1967.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeremysmith1967.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeremysmith1967.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeremysmith1967.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeremysmith1967.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeremysmith1967.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeremysmith1967.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeremysmith1967.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeremysmith1967.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeremysmith1967.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=9&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeremysmith1967.wordpress.com/2009/09/14/evaluating-ognl-expressions-in-struts-portals-in-websphere-portal-6-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02d1477c39d404ab639f90b25da29740?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeremysmith1967</media:title>
		</media:content>
	</item>
		<item>
		<title>Create Struts App with Websphere/RAD 7.5</title>
		<link>http://jeremysmith1967.wordpress.com/2009/08/20/create-struts-app-with-websphererad-7-5/</link>
		<comments>http://jeremysmith1967.wordpress.com/2009/08/20/create-struts-app-with-websphererad-7-5/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 04:12:30 +0000</pubDate>
		<dc:creator>jeremysmith1967</dc:creator>
				<category><![CDATA[Websphere]]></category>

		<guid isPermaLink="false">http://jeremysmith1967.wordpress.com/?p=6</guid>
		<description><![CDATA[Within RAD 7.5, the option to include the struts framework/tools in a new dynamic web application was not visible during the creation of the application. To add struts support to a non-struts application: - Open properties of the project - Select Project Facets - Check the version of struts support from the list of available [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=6&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Within RAD 7.5, the option to include the struts framework/tools in a new dynamic web application was not visible during the creation of the application.</p>
<p>To add struts support to a non-struts application:</p>
<p>- Open properties of the project</p>
<p>- Select Project Facets</p>
<p>- Check the version of struts support from the list of available variations/versions</p>
<p> </p>
<p>Take a look at <a href="http://www-01.ibm.com/support/docview.wss?rs=688&amp;context=SSHRKX&amp;dc=DB560&amp;dc=DB520&amp;uid=swg21368363&amp;loc=en_US&amp;cs=UTF-8&amp;lang=en&amp;rss=ct688websphere">http://www-01.ibm.com/support/docview.wss?rs=688&amp;context=SSHRKX&amp;dc=DB560&amp;dc=DB520&amp;uid=swg21368363&amp;loc=en_US&amp;cs=UTF-8&amp;lang=en&amp;rss=ct688websphere</a></p>
<p>This shows an error with RAD 7.5 working with Struts and Portal Server 6.1.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeremysmith1967.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeremysmith1967.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeremysmith1967.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeremysmith1967.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeremysmith1967.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeremysmith1967.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeremysmith1967.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeremysmith1967.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeremysmith1967.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeremysmith1967.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeremysmith1967.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeremysmith1967.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeremysmith1967.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeremysmith1967.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=6&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeremysmith1967.wordpress.com/2009/08/20/create-struts-app-with-websphererad-7-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02d1477c39d404ab639f90b25da29740?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeremysmith1967</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing on Windows 7 &#8211; &#8220;you do not have access to make the required system configuration modifications. Please rerun the installation from an administrators account&#8221;</title>
		<link>http://jeremysmith1967.wordpress.com/2009/08/18/installing-on-windows-7-you-do-not-have-access-to-make-the-required-system-configuration-modifications-please-rerun-the-installation-from-an-administrators-account/</link>
		<comments>http://jeremysmith1967.wordpress.com/2009/08/18/installing-on-windows-7-you-do-not-have-access-to-make-the-required-system-configuration-modifications-please-rerun-the-installation-from-an-administrators-account/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 00:47:14 +0000</pubDate>
		<dc:creator>jeremysmith1967</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[adminitrators account]]></category>
		<category><![CDATA[failed install]]></category>
		<category><![CDATA[windows install]]></category>

		<guid isPermaLink="false">http://jeremysmith1967.wordpress.com/?p=4</guid>
		<description><![CDATA[When attempting to install a program in Windows 7 RTM x64 is was receiving the error &#8220;you do not have access to make the required system configuration modifications. Please rerun the installation from an administrators account&#8221;. To get around this, - Open a command prompt, make sure you use &#8220;Run As Administrator&#8221;. - In the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=4&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When attempting to install a program in Windows 7 RTM x64 is was receiving the error &#8220;you do not have access to make the required system configuration modifications. Please rerun the installation from an administrators account&#8221;.</p>
<p>To get around this,</p>
<p>- Open a command prompt, make sure you use &#8220;Run As Administrator&#8221;.<br />
- In the command prompt, locate and run the appropriate installation file.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeremysmith1967.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeremysmith1967.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeremysmith1967.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeremysmith1967.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeremysmith1967.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeremysmith1967.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeremysmith1967.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeremysmith1967.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeremysmith1967.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeremysmith1967.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeremysmith1967.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeremysmith1967.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeremysmith1967.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeremysmith1967.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=4&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeremysmith1967.wordpress.com/2009/08/18/installing-on-windows-7-you-do-not-have-access-to-make-the-required-system-configuration-modifications-please-rerun-the-installation-from-an-administrators-account/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02d1477c39d404ab639f90b25da29740?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeremysmith1967</media:title>
		</media:content>
	</item>
		<item>
		<title>Test</title>
		<link>http://jeremysmith1967.wordpress.com/2009/08/14/test/</link>
		<comments>http://jeremysmith1967.wordpress.com/2009/08/14/test/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 07:47:56 +0000</pubDate>
		<dc:creator>jeremysmith1967</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jeremysmith1967.wordpress.com/2009/08/14/test/</guid>
		<description><![CDATA[This is a test<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=3&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a test</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeremysmith1967.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeremysmith1967.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeremysmith1967.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeremysmith1967.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jeremysmith1967.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jeremysmith1967.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jeremysmith1967.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jeremysmith1967.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeremysmith1967.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeremysmith1967.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeremysmith1967.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeremysmith1967.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeremysmith1967.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeremysmith1967.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeremysmith1967.wordpress.com&amp;blog=9004033&amp;post=3&amp;subd=jeremysmith1967&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jeremysmith1967.wordpress.com/2009/08/14/test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/02d1477c39d404ab639f90b25da29740?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jeremysmith1967</media:title>
		</media:content>
	</item>
	</channel>
</rss>
