<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>J-Matrix</title>
	<link>http://www.thejmatrix.com</link>
	<description>Technology and stuff</description>
	<lastBuildDate>Thu, 22 Dec 2011 23:48:19 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>Teambox email setup &#8211; rails 3 &#8211; OpenSSL::SSL::SSLError (hostname was not match with the server certificate)</title>
		<description><![CDATA[add bypass_ssl_verification_for_open_uri.rb to config/initializers. Make sure the file has right owner/mod setup &#8211; I spent about couple of hours and later realize it was owner by root. You need to setup (under ubuntu &#8211; chown nobody:www-data bypass_ssl_verification_for_open_uri.rb). Contents of bypass_ssl_verification_for_open_uri.rb OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE My configuration for email settings address: mail.mydomain.com port: 26 authentication: plain user_name: [...]]]></description>
		<link>http://www.thejmatrix.com/news/teambox-email-setup-rails-3-opensslsslsslerror-hostname-was-not-match-with-the-server-certificate</link>
			</item>
	<item>
		<title>Spring Transaction in Java main method</title>
		<description><![CDATA[In standalone java project (main method) if you insert / update database it will not work. It is because you need to add the transaction management. You need to do programmatic transaction management. Here is the code you need to add in your main method. PlatformTransactionManager transactionManager = (PlatformTransactionManager) context.getBean("transactionManager"); DefaultTransactionDefinition transDef = new DefaultTransactionDefinition(); [...]]]></description>
		<link>http://www.thejmatrix.com/java/spring-transaction-in-java-main-method</link>
			</item>
	<item>
		<title>Managing Java Memory – heap size, max perm size, GC collection etc.,</title>
		<description><![CDATA[1. –Xms512m and –Xmx2048m Define the minimum and maximum heap space. 2. –XX:MaxPermSize=128M Java object and java classes are stored in separate memory areas. Objects are stored in the heap space and classes are stored in the permanent generation defined by MaxPermSize. More information &#8211; http://blogs.oracle.com/jonthecollector/entry/presenting_the_permanent_generation 3. –XX:+UseParallelGC One thread per CPU to perform the [...]]]></description>
		<link>http://www.thejmatrix.com/java/managing-java-memory-%e2%80%93-heap-size-max-perm-size-gc-collection-etc</link>
			</item>
	<item>
		<title>Windows 7 change COM Port &#8211; serial connected through USB</title>
		<description><![CDATA[Set up: Serial interface device connected to Windows 7 64 bit using serial to usb connector. Step 1: Open device manager from control panel, if you see unrecognized usb device the you need a device driver. Otherwise skip to step 2. The best way to get the driver is right click on the device and [...]]]></description>
		<link>http://www.thejmatrix.com/net/windows-7-change-com-port-serial-connected-through-usb</link>
			</item>
	<item>
		<title>WebTest using https &#8211; javax.net.ssl.SSLHandshakeException</title>
		<description><![CDATA[Add to the webtest &#60;config useInsecureSSL=&#34;true&#34; /&#62;]]></description>
		<link>http://www.thejmatrix.com/java/webtest-using-https-javax-net-ssl-sslhandshakeexception</link>
			</item>
	<item>
		<title>SEO friendly URL’s in Java</title>
		<description><![CDATA[If the application is open to all general Internet users, then it is almost mandatory to generate SEO friendly URLs, not just for e.g., the product URL but also the search results page in your application. Using the RequestMapping annotation is one simple approach to generate seo friendly url: For e.g., 1. @RequestMapping(method=RequestMethod.POST, value="/addAccount", headers="Accept=application/xml, [...]]]></description>
		<link>http://www.thejmatrix.com/java/seo-friendly-url%e2%80%99s-in-java</link>
			</item>
	<item>
		<title>Java &#8211; Logging in high volume transactions</title>
		<description><![CDATA[Logging involves disk IO. I have run tests and in some cases logging affected the response time and in some cases I did not. However this is not about how logging affects response time. If you choose to do extensive logging in your application – there are few common options to choose 1. Set up [...]]]></description>
		<link>http://www.thejmatrix.com/java/java-logging-in-high-volume-transactions</link>
			</item>
	<item>
		<title>SAXParserFactoryImpl not found Error</title>
		<description><![CDATA[Problem: [java] 2010-10-08 11:29:36.273:WARN::FAILED HandlerCollection@79a2e7: javax.xml.parsers.FactoryConfigurationError: Provider o rg.apache.xerces.jaxp.SAXParserFactoryImpl not found [java] 2010-10-08 11:29:36.273:WARN::Error starting handlers [java] javax.xml.parsers.FactoryConfigurationError: Provider org.apache.xerces.jaxp.SAXParserFactoryImpl not found [java]     at javax.xml.parsers.SAXParserFactory.newInstance(SAXParserFactory.java:113) [java]     at org.eclipse.jetty.xml.XmlParser.&#60;init&#62;(XmlParser.java:68) [java]     at org.eclipse.jetty.webapp.WebXmlProcessor.webXmlParser(WebXmlProcessor.java:209) [java]     at org.eclipse.jetty.webapp.WebXmlProcessor.&#60;init&#62;(WebXmlProcessor.java:290) [java]     at org.eclipse.jetty.webapp.WebXmlConfiguration.preConfigure(WebXmlConfiguration.java:57) [java]     at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:378) [java]     at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55) [java]     at org.eclipse.jetty.server.handler.HandlerCollection.doStart(HandlerCollection.java:165) [java]     at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:55) [java]     at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:92) [java]     at org.eclipse.jetty.server.Server.doStart(Server.java:242) [...]]]></description>
		<link>http://www.thejmatrix.com/java/javax-xml-parsers-factoryconfigurationerror-provider-org-apache-xerces-jaxp-saxparserfactoryimpl-not-found</link>
			</item>
	<item>
		<title>Generate environment specific properties file using ant replace</title>
		<description><![CDATA[If you want create your config file specific to each environment, then you could take the following approach. Assuming your environment specific properties are kept in folder structure as in the image.  The template config properties file which will contain all the properties. Each of the property that needs to be replaced by environment specific [...]]]></description>
		<link>http://www.thejmatrix.com/java/generate-environment-specific-properties-file-using-ant-replace</link>
			</item>
	<item>
		<title>Adobe Photoshop trial download CS5</title>
		<description><![CDATA[If you are  having hard time to find the download link for photoshop cs5 dowlonad link , here it is. Please leave a comment if you find it useful. https://www.adobe.com/cfusion/tdrc/index.cfm?ref=sup&#38;product=photoshop]]></description>
		<link>http://www.thejmatrix.com/other-tech-stuff/adobe-photoshop-trial-download-cs5</link>
			</item>
</channel>
</rss>

