<?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/"
	>

<channel>
	<title>BugCollect</title>
	<atom:link href="http://bugcollect.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://bugcollect.com/blog</link>
	<description>New ways to capture your Exceptions</description>
	<lastBuildDate>Mon, 16 Nov 2009 07:56:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>On Amazon EC2</title>
		<link>http://bugcollect.com/blog/2009/11/on-amazon-ec2/</link>
		<comments>http://bugcollect.com/blog/2009/11/on-amazon-ec2/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 07:55:59 +0000</pubDate>
		<dc:creator>Remus</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://bugcollect.com/blog/?p=53</guid>
		<description><![CDATA[bugcollect.com is now running in the Amazon EC2 cloud. It was a smooth transition and we&#8217;re all happy how it turned out.
We started our service on a shared hosting provider with BlueHost.com but the time had come to grow up. We now have the capacity to accommodate some of the planned features that required more [...]]]></description>
			<content:encoded><![CDATA[<p>bugcollect.com is now running in the Amazon EC2 cloud. It was a smooth transition and we&#8217;re all happy how it turned out.</p>
<p>We started our service on a shared hosting provider with <a href="bluehost.com" target="_blank">BlueHost.com</a> but the time had come to grow up. We now have the capacity to accommodate some of the planned features that required more storage and bandwith.</p>
]]></content:encoded>
			<wfw:commentRss>http://bugcollect.com/blog/2009/11/on-amazon-ec2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java and log4j components available.</title>
		<link>http://bugcollect.com/blog/2009/10/java-and-log4j-components-available/</link>
		<comments>http://bugcollect.com/blog/2009/10/java-and-log4j-components-available/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 21:58:19 +0000</pubDate>
		<dc:creator>Bugcollect</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[client library]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[log4j]]></category>

		<guid isPermaLink="false">http://bugcollect.com/blog/?p=24</guid>
		<description><![CDATA[The BUGCOLLECT.COM Java Client Library and the log4j Appender are available in the downloads section.
To submit reports from Java simply create an instance of the ReportingManager and use the Submit method:
ReportingManager reportingManager = new ReportingManager(
applicationName, applicationPassword);
try
{
...
}
catch(Exception ex)
{
reportingManager.Submit("Exception when trying to ...", ex);
}
applicationName and applicationPassword must be the name and password of an application credential added [...]]]></description>
			<content:encoded><![CDATA[<p>The BUGCOLLECT.COM Java Client Library and the log4j Appender are available in the <a href="/downloads">downloads</a> section.</p>
<p>To submit reports from Java simply create an instance of the <a href="/Help/javadoc/com.bugcollect/com/bugcollect/ReportingManager.html">ReportingManager</a> and use the Submit method:</p>
<pre>ReportingManager reportingManager = new ReportingManager(
applicationName, applicationPassword);
try
{
...
}
catch(Exception ex)
{
reportingManager.Submit("Exception when trying to ...", ex);
}</pre>
<p>applicationName and applicationPassword must be the name and password of an application credential added to your account.</p>
<h2>log4j</h2>
<p>For those using <a href="http://logging.apache.org/log4j/1.2/index.html" target="_blank">Apache log4j</a> the bugcollect log4j <a href="/Help/javadoc/com.bugcollect.log4j/com/bugcollect/log4j/Appender.html">Appender</a> allows the easiest integration. Simply add an appender in your log4j configuration file:</p>
<pre>log4j.appender.A1 = com.bugcollect.log4j.Appender
log4j.appender.A1.applicationName = name
log4j.appender.A1.applicationPassword = password
log4j.rootLogger=ERROR, A1</pre>
<p>where name and password must be a valid application credential added to your account with bugcollect.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://bugcollect.com/blog/2009/10/java-and-log4j-components-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BugCollect Blog</title>
		<link>http://bugcollect.com/blog/2009/10/bugcollect-blog/</link>
		<comments>http://bugcollect.com/blog/2009/10/bugcollect-blog/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 05:24:32 +0000</pubDate>
		<dc:creator>Remus</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://bugcollect.com/blog/?p=15</guid>
		<description><![CDATA[Hello and welcome to the BugCollect blog.
It sure is an exciting time here at BugCollect. Our service is gearing up and gaining more traction.
Our RESTful API interface is up and running and we released the .Net and log4net client libraries that are using the REST interface for report submission. We&#8217;ll soon extend the .Net family [...]]]></description>
			<content:encoded><![CDATA[<p>Hello and welcome to the BugCollect blog.</p>
<p>It sure is an exciting time here at BugCollect. Our service is gearing up and gaining more traction.</p>
<p>Our <a href="/api">RESTful API</a> interface is up and running and we released the .Net and log4net client libraries that are using the REST interface for report submission. We&#8217;ll soon extend the .Net family of clients with a dedicated ASP.Net HTTP module for error handling. We are also working on the Java and log4j client libraries.</p>
<p>We appreciate all the feedback and encouragement we got from all of you so far.</p>
<p>Please subscribe to our <a href="http://bugcollect.com/blog/feed">RSS feed</a> as we&#8217;ll be posting here announcements and news here.</p>
]]></content:encoded>
			<wfw:commentRss>http://bugcollect.com/blog/2009/10/bugcollect-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

