<?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 Stuff and Nothing</title>
	<atom:link href="http://stuffandnothing.com/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://stuffandnothing.com</link>
	<description></description>
	<lastBuildDate>Sun, 26 Jun 2011 19:17:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Accessing remote Alfresco web services by Luis Aveiga</title>
		<link>http://stuffandnothing.com/index.php/2009/04/08/accessing-remote-alfresco-web-services/#comment-57</link>
		<dc:creator>Luis Aveiga</dc:creator>
		<pubDate>Sun, 26 Jun 2011 19:17:15 +0000</pubDate>
		<guid isPermaLink="false">http://sheilapollard.wordpress.com/?p=280#comment-57</guid>
		<description>Hi Sheila! Thanks for the post... I think I&#039;m having a related issue...

I&#039;m trying to connect with Drupal to Alfresco, using the &quot;Alfresco Share&quot; try version of 1day.

Does this demo version of &quot;Alfresco Share&quot; has the possibility to connect remotely? Where is it&#039;s WSDL? (i&#039;m trying to connect using soap)

I&#039;ve been trying many thing to connect, but I think that the Drupal Module can&#039;t find the WSDL file.

Alfresco.com gives me these access credentials and URL:
    URL: http://ed7b82b4.amazonaws.alfresco.com
    Username: clouduser
    Password: cloudtrial


BTW, I already make the connection locally, but I&#039;m having problems remotely. That&#039;s why i&#039;m asking you...

Please help :)</description>
		<content:encoded><![CDATA[<p>Hi Sheila! Thanks for the post&#8230; I think I&#8217;m having a related issue&#8230;</p>
<p>I&#8217;m trying to connect with Drupal to Alfresco, using the &#8220;Alfresco Share&#8221; try version of 1day.</p>
<p>Does this demo version of &#8220;Alfresco Share&#8221; has the possibility to connect remotely? Where is it&#8217;s WSDL? (i&#8217;m trying to connect using soap)</p>
<p>I&#8217;ve been trying many thing to connect, but I think that the Drupal Module can&#8217;t find the WSDL file.</p>
<p>Alfresco.com gives me these access credentials and URL:<br />
    URL: <a href="http://ed7b82b4.amazonaws.alfresco.com" rel="nofollow">http://ed7b82b4.amazonaws.alfresco.com</a><br />
    Username: clouduser<br />
    Password: cloudtrial</p>
<p>BTW, I already make the connection locally, but I&#8217;m having problems remotely. That&#8217;s why i&#8217;m asking you&#8230;</p>
<p>Please help <img src='http://stuffandnothing.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Alfresco Part Three &#8211; Create a new workspace using a web service call by Narasimha</title>
		<link>http://stuffandnothing.com/index.php/2009/03/19/alfresco-part-three-create-a-new-workspace-using-a-web-service-call/#comment-36</link>
		<dc:creator>Narasimha</dc:creator>
		<pubDate>Wed, 01 Jun 2011 09:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://sheilapollard.wordpress.com/?p=114#comment-36</guid>
		<description>its good ,im new to alfresco , please help how to create folder inside multple documents .

im getting exception please check , posting code


package com.r2k;

import java.io.FileInputStream;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.alfresco.util.ISO9075;

import org.alfresco.webservice.content.ContentServiceSoapBindingStub;
import org.alfresco.webservice.repository.QueryResult;
import org.alfresco.webservice.repository.RepositoryServiceSoapBindingStub;
import org.alfresco.webservice.repository.UpdateResult;
import org.alfresco.webservice.types.CML;
import org.alfresco.webservice.types.CMLAddAspect;
import org.alfresco.webservice.types.CMLCreate;
import org.alfresco.webservice.types.CMLDelete;
import org.alfresco.webservice.types.ContentFormat;
import org.alfresco.webservice.types.NamedValue;
import org.alfresco.webservice.types.ParentReference;
import org.alfresco.webservice.types.Predicate;
import org.alfresco.webservice.types.Query;
import org.alfresco.webservice.types.Reference;
import org.alfresco.webservice.types.ResultSet;
import org.alfresco.webservice.types.ResultSetRow;
import org.alfresco.webservice.types.Store;
import org.alfresco.webservice.util.AuthenticationUtils;
import org.alfresco.webservice.util.Constants;
import org.alfresco.webservice.util.ContentUtils;
import org.alfresco.webservice.util.Utils;
import org.alfresco.webservice.util.WebServiceFactory;

public class SampleTest extends HttpServlet {

	private static final long serialVersionUID = 1L;
	protected static final Store STORE = new Store(Constants.WORKSPACE_STORE, &quot;SpacesStore&quot;);
	protected static final Reference SAMPLE_FOLDER = new Reference(STORE, null, &quot;/app:company_home/cm:sample_folder&quot;);

	protected void doPost(HttpServletRequest request,
			HttpServletResponse response) throws ServletException, IOException {

		String msg = &quot;&quot;;
		try {
			System.out.println(&quot;inside try&quot;);

			String title = (String) request.getParameter(&quot;title&quot;).trim();
			System.out.println(&quot;title::::::&quot; + title);

			String description = request.getParameter(&quot;description&quot;).trim();
			System.out.println(&quot;description ::::&quot; + description);
			String path = request.getParameter(&quot;file&quot;);
			System.out.println(&quot;file name:::: &quot; + path);

			path = path.replaceAll(&quot;\\\\&quot;, &quot;/&quot;);
			String fileName = path.substring(path.lastIndexOf(&#039;/&#039;) + 1, path
					.length());
			System.out.println(&quot;file name:::: &quot; + fileName);

			String ext = fileName.substring(fileName.lastIndexOf(&#039;.&#039;) + 1,
					fileName.length());
			System.out.println(&quot;ext name:::: &quot; + ext);
			String contType = &quot;&quot;;

			if (ext.equals(&quot;txt&quot;))
				contType = &quot;text/plain&quot;;
			else if (ext.equals(&quot;xls&quot;))
				contType = &quot;application/vnd.ms-excel&quot;;
			else if (ext.equals(&quot;doc&quot;))
				contType = &quot;application/msword&quot;;
			else if (ext.equals(&quot;html&quot;) &#124;&#124; ext.equals(&quot;htm&quot;))
				contType = &quot;text/html&quot;;
			else if (ext.equals(&quot;jpg&quot;) &#124;&#124; ext.equals(&quot;jpeg&quot;))
				contType = &quot;image/jpeg&quot;;
			else if (ext.equals(&quot;bmp&quot;))
				contType = &quot;image/bmp&quot;;
			else if (ext.equals(&quot;pdf&quot;))
				contType = &quot;application/pdf&quot;;
			else if (ext.equals(&quot;ppt&quot;))
				contType = &quot;application/vnd.ms-powerpoint&quot;;
			else if (ext.equals(&quot;xml&quot;))
				contType = &quot;text/xml&quot;;
			else if (ext.equals(&quot;zip&quot;))
				contType = &quot;application/vnd.ms-zip&quot;;
			else {
				System.out.println(&quot;inside alfresco part:::::::::&quot;);
				WebServiceFactory
						.setEndpointAddress(&quot;http://192.168.4.137:8080/alfresco/api&quot;);

				AuthenticationUtils.startSession(&quot;admin&quot;, &quot;Password&quot;);

				System.out.println(&quot;after login&quot;);

				        try
				        {
				            // Check to see if the sample folder has already
							// been created or not
				            WebServiceFactory.getRepositoryService().get(new Predicate(new Reference[]{SAMPLE_FOLDER}, STORE, null));
				        }
				        catch (Exception exception)
				        {
				            // Create parent reference to company home
				            ParentReference parentReference = new ParentReference(
				                    STORE,
				                    null,
				                    &quot;/app:company_home&quot;,
				                    Constants.ASSOC_CONTAINS,
				                    Constants.createQNameString(Constants.NAMESPACE_CONTENT_MODEL, &quot;sample_folder&quot;));

				            // Create folder
				            NamedValue[] properties = new NamedValue[]{Utils.createNamedValue(Constants.PROP_NAME, &quot;Web Service Sample Folder&quot;)};
				            CMLCreate create = new CMLCreate(&quot;1&quot;, parentReference, null, null, null, Constants.TYPE_FOLDER, properties);
				            CML cml = new CML();
				            cml.setCreate(new CMLCreate[]{create});
				            UpdateResult[] results = WebServiceFactory.getRepositoryService().update(cml);

				            // Create parent reference to sample folder
				            String sampleFolder = results[0].getDestination().getUuid();

				            System.out.println(&quot;sample folder&quot;+sampleFolder);

				            ParentReference parentReference2 = new ParentReference(
				                    STORE,
				                    sampleFolder,
				                    null,
				                    Constants.ASSOC_CONTAINS,
				                    Constants.createQNameString(Constants.NAMESPACE_CONTENT_MODEL, &quot;sample_content&quot;));

				            // Create content
				            NamedValue[] properties2 = new NamedValue[]{Utils.createNamedValue(Constants.PROP_NAME, fileName)};
				            CMLCreate create2 = new CMLCreate(&quot;1&quot;, parentReference2, null, null, null, Constants.TYPE_CONTENT, properties2);
				            CML cml2 = new CML();
				            cml2.setCreate(new CMLCreate[]{create2});
				            UpdateResult[] results2 = WebServiceFactory.getRepositoryService().update(cml2);

				            // Set content
				            ContentFormat format = new ContentFormat(Constants.MIMETYPE_TEXT_PLAIN, &quot;UTF-8&quot;);
				            byte[] content = &quot;The Alfresco development team!&quot;.getBytes();
				            WebServiceFactory.getContentService().write(results2[0].getDestination(), Constants.PROP_CONTENT, content, format);

				        }
				    }

		}



			catch (Throwable e)
			{
		 	msg = &quot;Error uploading file&quot;;
			System.out.println(msg);
			e.printStackTrace();

		} finally {

			AuthenticationUtils.endSession();

		}
		request.setAttribute(&quot;msg&quot;, msg);
		RequestDispatcher rd = request
				.getRequestDispatcher(&quot;StatusMessage.jsp&quot;);
		rd.forward(request, response);
	}
}</description>
		<content:encoded><![CDATA[<p>its good ,im new to alfresco , please help how to create folder inside multple documents .</p>
<p>im getting exception please check , posting code</p>
<p>package com.r2k;</p>
<p>import java.io.FileInputStream;<br />
import java.io.IOException;<br />
import javax.servlet.RequestDispatcher;<br />
import javax.servlet.ServletException;<br />
import javax.servlet.http.HttpServlet;<br />
import javax.servlet.http.HttpServletRequest;<br />
import javax.servlet.http.HttpServletResponse;</p>
<p>import org.alfresco.util.ISO9075;</p>
<p>import org.alfresco.webservice.content.ContentServiceSoapBindingStub;<br />
import org.alfresco.webservice.repository.QueryResult;<br />
import org.alfresco.webservice.repository.RepositoryServiceSoapBindingStub;<br />
import org.alfresco.webservice.repository.UpdateResult;<br />
import org.alfresco.webservice.types.CML;<br />
import org.alfresco.webservice.types.CMLAddAspect;<br />
import org.alfresco.webservice.types.CMLCreate;<br />
import org.alfresco.webservice.types.CMLDelete;<br />
import org.alfresco.webservice.types.ContentFormat;<br />
import org.alfresco.webservice.types.NamedValue;<br />
import org.alfresco.webservice.types.ParentReference;<br />
import org.alfresco.webservice.types.Predicate;<br />
import org.alfresco.webservice.types.Query;<br />
import org.alfresco.webservice.types.Reference;<br />
import org.alfresco.webservice.types.ResultSet;<br />
import org.alfresco.webservice.types.ResultSetRow;<br />
import org.alfresco.webservice.types.Store;<br />
import org.alfresco.webservice.util.AuthenticationUtils;<br />
import org.alfresco.webservice.util.Constants;<br />
import org.alfresco.webservice.util.ContentUtils;<br />
import org.alfresco.webservice.util.Utils;<br />
import org.alfresco.webservice.util.WebServiceFactory;</p>
<p>public class SampleTest extends HttpServlet {</p>
<p>	private static final long serialVersionUID = 1L;<br />
	protected static final Store STORE = new Store(Constants.WORKSPACE_STORE, &#8220;SpacesStore&#8221;);<br />
	protected static final Reference SAMPLE_FOLDER = new Reference(STORE, null, &#8220;/app:company_home/cm:sample_folder&#8221;);</p>
<p>	protected void doPost(HttpServletRequest request,<br />
			HttpServletResponse response) throws ServletException, IOException {</p>
<p>		String msg = &#8220;&#8221;;<br />
		try {<br />
			System.out.println(&#8220;inside try&#8221;);</p>
<p>			String title = (String) request.getParameter(&#8220;title&#8221;).trim();<br />
			System.out.println(&#8220;title::::::&#8221; + title);</p>
<p>			String description = request.getParameter(&#8220;description&#8221;).trim();<br />
			System.out.println(&#8220;description ::::&#8221; + description);<br />
			String path = request.getParameter(&#8220;file&#8221;);<br />
			System.out.println(&#8220;file name:::: &#8221; + path);</p>
<p>			path = path.replaceAll(&#8220;\\\\&#8221;, &#8220;/&#8221;);<br />
			String fileName = path.substring(path.lastIndexOf(&#8216;/&#8217;) + 1, path<br />
					.length());<br />
			System.out.println(&#8220;file name:::: &#8221; + fileName);</p>
<p>			String ext = fileName.substring(fileName.lastIndexOf(&#8216;.&#8217;) + 1,<br />
					fileName.length());<br />
			System.out.println(&#8220;ext name:::: &#8221; + ext);<br />
			String contType = &#8220;&#8221;;</p>
<p>			if (ext.equals(&#8220;txt&#8221;))<br />
				contType = &#8220;text/plain&#8221;;<br />
			else if (ext.equals(&#8220;xls&#8221;))<br />
				contType = &#8220;application/vnd.ms-excel&#8221;;<br />
			else if (ext.equals(&#8220;doc&#8221;))<br />
				contType = &#8220;application/msword&#8221;;<br />
			else if (ext.equals(&#8220;html&#8221;) || ext.equals(&#8220;htm&#8221;))<br />
				contType = &#8220;text/html&#8221;;<br />
			else if (ext.equals(&#8220;jpg&#8221;) || ext.equals(&#8220;jpeg&#8221;))<br />
				contType = &#8220;image/jpeg&#8221;;<br />
			else if (ext.equals(&#8220;bmp&#8221;))<br />
				contType = &#8220;image/bmp&#8221;;<br />
			else if (ext.equals(&#8220;pdf&#8221;))<br />
				contType = &#8220;application/pdf&#8221;;<br />
			else if (ext.equals(&#8220;ppt&#8221;))<br />
				contType = &#8220;application/vnd.ms-powerpoint&#8221;;<br />
			else if (ext.equals(&#8220;xml&#8221;))<br />
				contType = &#8220;text/xml&#8221;;<br />
			else if (ext.equals(&#8220;zip&#8221;))<br />
				contType = &#8220;application/vnd.ms-zip&#8221;;<br />
			else {<br />
				System.out.println(&#8220;inside alfresco part:::::::::&#8221;);<br />
				WebServiceFactory<br />
						.setEndpointAddress(&#8220;http://192.168.4.137:8080/alfresco/api&#8221;);</p>
<p>				AuthenticationUtils.startSession(&#8220;admin&#8221;, &#8220;Password&#8221;);</p>
<p>				System.out.println(&#8220;after login&#8221;);</p>
<p>				        try<br />
				        {<br />
				            // Check to see if the sample folder has already<br />
							// been created or not<br />
				            WebServiceFactory.getRepositoryService().get(new Predicate(new Reference[]{SAMPLE_FOLDER}, STORE, null));<br />
				        }<br />
				        catch (Exception exception)<br />
				        {<br />
				            // Create parent reference to company home<br />
				            ParentReference parentReference = new ParentReference(<br />
				                    STORE,<br />
				                    null,<br />
				                    &#8220;/app:company_home&#8221;,<br />
				                    Constants.ASSOC_CONTAINS,<br />
				                    Constants.createQNameString(Constants.NAMESPACE_CONTENT_MODEL, &#8220;sample_folder&#8221;));</p>
<p>				            // Create folder<br />
				            NamedValue[] properties = new NamedValue[]{Utils.createNamedValue(Constants.PROP_NAME, &#8220;Web Service Sample Folder&#8221;)};<br />
				            CMLCreate create = new CMLCreate(&#8220;1&#8243;, parentReference, null, null, null, Constants.TYPE_FOLDER, properties);<br />
				            CML cml = new CML();<br />
				            cml.setCreate(new CMLCreate[]{create});<br />
				            UpdateResult[] results = WebServiceFactory.getRepositoryService().update(cml);</p>
<p>				            // Create parent reference to sample folder<br />
				            String sampleFolder = results[0].getDestination().getUuid();</p>
<p>				            System.out.println(&#8220;sample folder&#8221;+sampleFolder);</p>
<p>				            ParentReference parentReference2 = new ParentReference(<br />
				                    STORE,<br />
				                    sampleFolder,<br />
				                    null,<br />
				                    Constants.ASSOC_CONTAINS,<br />
				                    Constants.createQNameString(Constants.NAMESPACE_CONTENT_MODEL, &#8220;sample_content&#8221;));</p>
<p>				            // Create content<br />
				            NamedValue[] properties2 = new NamedValue[]{Utils.createNamedValue(Constants.PROP_NAME, fileName)};<br />
				            CMLCreate create2 = new CMLCreate(&#8220;1&#8243;, parentReference2, null, null, null, Constants.TYPE_CONTENT, properties2);<br />
				            CML cml2 = new CML();<br />
				            cml2.setCreate(new CMLCreate[]{create2});<br />
				            UpdateResult[] results2 = WebServiceFactory.getRepositoryService().update(cml2);</p>
<p>				            // Set content<br />
				            ContentFormat format = new ContentFormat(Constants.MIMETYPE_TEXT_PLAIN, &#8220;UTF-8&#8243;);<br />
				            byte[] content = &#8220;The Alfresco development team!&#8221;.getBytes();<br />
				            WebServiceFactory.getContentService().write(results2[0].getDestination(), Constants.PROP_CONTENT, content, format);</p>
<p>				        }<br />
				    }</p>
<p>		}</p>
<p>			catch (Throwable e)<br />
			{<br />
		 	msg = &#8220;Error uploading file&#8221;;<br />
			System.out.println(msg);<br />
			e.printStackTrace();</p>
<p>		} finally {</p>
<p>			AuthenticationUtils.endSession();</p>
<p>		}<br />
		request.setAttribute(&#8220;msg&#8221;, msg);<br />
		RequestDispatcher rd = request<br />
				.getRequestDispatcher(&#8220;StatusMessage.jsp&#8221;);<br />
		rd.forward(request, response);<br />
	}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Plitvice Lakes by Sheila</title>
		<link>http://stuffandnothing.com/index.php/2010/10/09/plitvice-lakes/#comment-21</link>
		<dc:creator>Sheila</dc:creator>
		<pubDate>Mon, 30 May 2011 20:14:22 +0000</pubDate>
		<guid isPermaLink="false">http://stuffandnothing.com/?p=945#comment-21</guid>
		<description>Hi Lili,
Thanks for the comment.  Yes, your place was very nice and comfortable to stay in while we visited the lakes.  And the salmon is definitely highly recommended :)</description>
		<content:encoded><![CDATA[<p>Hi Lili,<br />
Thanks for the comment.  Yes, your place was very nice and comfortable to stay in while we visited the lakes.  And the salmon is definitely highly recommended <img src='http://stuffandnothing.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Plitvice Lakes by Lili</title>
		<link>http://stuffandnothing.com/index.php/2010/10/09/plitvice-lakes/#comment-20</link>
		<dc:creator>Lili</dc:creator>
		<pubDate>Mon, 30 May 2011 14:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://stuffandnothing.com/?p=945#comment-20</guid>
		<description>:))) As I can read, you had a nice time at our place a t Plitvice. Hope you will come back some day, so we can prepare that Salmon again for you ;)

Greetings from Plitvice lakes</description>
		<content:encoded><![CDATA[<p> <img src='http://stuffandnothing.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )) As I can read, you had a nice time at our place a t Plitvice. Hope you will come back some day, so we can prepare that Salmon again for you <img src='http://stuffandnothing.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Greetings from Plitvice lakes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Plitvice Lakes by Lili</title>
		<link>http://stuffandnothing.com/index.php/2010/10/09/plitvice-lakes/#comment-19</link>
		<dc:creator>Lili</dc:creator>
		<pubDate>Mon, 30 May 2011 14:38:02 +0000</pubDate>
		<guid isPermaLink="false">http://stuffandnothing.com/?p=945#comment-19</guid>
		<description>:))))  As I can read, you had a nice time at our place at Plitvice....Hope you will come back some day again. Me and my family would be delighted to welcome you  and prepare that Salmon again ;)

Greetings from Plitvice lakes</description>
		<content:encoded><![CDATA[<p> <img src='http://stuffandnothing.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )))  As I can read, you had a nice time at our place at Plitvice&#8230;.Hope you will come back some day again. Me and my family would be delighted to welcome you  and prepare that Salmon again <img src='http://stuffandnothing.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Greetings from Plitvice lakes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Alfresco &#8211; Create User by PSA</title>
		<link>http://stuffandnothing.com/index.php/2009/04/06/alfresco-create-user/#comment-53</link>
		<dc:creator>PSA</dc:creator>
		<pubDate>Thu, 28 Apr 2011 09:47:49 +0000</pubDate>
		<guid isPermaLink="false">http://sheilapollard.wordpress.com/?p=264#comment-53</guid>
		<description>Works ok!!!

Thanks alot!</description>
		<content:encoded><![CDATA[<p>Works ok!!!</p>
<p>Thanks alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Configuring Icefaces and Seam PDF by Plauclics</title>
		<link>http://stuffandnothing.com/index.php/2009/08/17/configuring-icefaces-and-seam-pdf/#comment-81</link>
		<dc:creator>Plauclics</dc:creator>
		<pubDate>Sat, 02 Apr 2011 02:03:27 +0000</pubDate>
		<guid isPermaLink="false">http://sheilapollard.wordpress.com/?p=455#comment-81</guid>
		<description>Content help me to frame pool</description>
		<content:encoded><![CDATA[<p>Content help me to frame pool</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Alfresco Part Three &#8211; Create a new workspace using a web service call by raja</title>
		<link>http://stuffandnothing.com/index.php/2009/03/19/alfresco-part-three-create-a-new-workspace-using-a-web-service-call/#comment-35</link>
		<dc:creator>raja</dc:creator>
		<pubDate>Wed, 19 Jan 2011 22:40:50 +0000</pubDate>
		<guid isPermaLink="false">http://sheilapollard.wordpress.com/?p=114#comment-35</guid>
		<description>Thanks for your post . I was some how missing &quot;Constants.createQNameString(Constants.NAMESPACE_CONTENT_MODEL, “sample_folder”));&quot;

Your blog helped me right to the spot.

Thanks,
Raja</description>
		<content:encoded><![CDATA[<p>Thanks for your post . I was some how missing &#8220;Constants.createQNameString(Constants.NAMESPACE_CONTENT_MODEL, “sample_folder”));&#8221;</p>
<p>Your blog helped me right to the spot.</p>
<p>Thanks,<br />
Raja</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Configuring Seam and Spring Batch by Ann Collett</title>
		<link>http://stuffandnothing.com/index.php/2010/02/04/configuring-seam-and-spring-batch/#comment-243</link>
		<dc:creator>Ann Collett</dc:creator>
		<pubDate>Tue, 23 Nov 2010 22:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://sheilapollard.com/?p=529#comment-243</guid>
		<description>When I follow your above example, the header row with column names becomes my first instance of UploadedPerson. I went back to see if you were skipping the first line (the line with title,firstname,surname,dateOfBirth,country ) but you are not. How do you get the reader to not try to use your first row as instance of UpLoadedPerson ?</description>
		<content:encoded><![CDATA[<p>When I follow your above example, the header row with column names becomes my first instance of UploadedPerson. I went back to see if you were skipping the first line (the line with title,firstname,surname,dateOfBirth,country ) but you are not. How do you get the reader to not try to use your first row as instance of UpLoadedPerson ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Chainsaw to tail your JBoss server log by KDawg</title>
		<link>http://stuffandnothing.com/index.php/2009/04/07/using-chainsaw-to-tail-your-jboss-server-log/#comment-54</link>
		<dc:creator>KDawg</dc:creator>
		<pubDate>Wed, 17 Nov 2010 17:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://sheilapollard.wordpress.com/?p=271#comment-54</guid>
		<description>DONT USE CHAINSAW! - If you run Chainsaw on a client and point JBoss at it, if the Chainsaw client locks up[ (which it does if left to run for a day or so) it will crash your JBoss Server because of a bug in the logging technology.</description>
		<content:encoded><![CDATA[<p>DONT USE CHAINSAW! &#8211; If you run Chainsaw on a client and point JBoss at it, if the Chainsaw client locks up[ (which it does if left to run for a day or so) it will crash your JBoss Server because of a bug in the logging technology.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

