<div>Hi guys,</div>
<div>I met the same problem as Peter wrote in the following link: <a href="http://lists.tdwg.org/pipermail/tdwg-guid/2006-September/000496.html">http://lists.tdwg.org/pipermail/tdwg-guid/2006-September/000496.html</a>. Unfortunately, I didn&#39;t get the&nbsp;final solution&nbsp;in it.
</div>
<div>&nbsp;</div>
<div>I&#39;m not sure Peter, Ben and Steve are still in this mail group or not. Anyway, can anybody help me solve this problem? Thanks a lot.</div>
<div>&nbsp;</div>
<div>My code is attached as well. What I want is outputing my vocabulary &quot;Manifest&quot; instead of &quot;rdf:Description&quot;.</div>
<div>&nbsp;&nbsp;&nbsp; Map&lt;String, String&gt; ns = new HashMap&lt;String, String&gt;();<br>&nbsp;&nbsp;&nbsp; ns.put(&quot;&quot;, &quot;<a href="http://www.test.com/2007/08/test-vocabulary">http://www.test.com/2007/08/test-vocabulary</a>#&quot;);
<br>&nbsp;&nbsp;&nbsp; ns.put(&quot;rdfs&quot;, &quot;<a href="http://www.w3.org/2000/01/rdf-schema">http://www.w3.org/2000/01/rdf-schema</a>#&quot;);<br>&nbsp;&nbsp;&nbsp; ns.put(&quot;rdf&quot;, &quot;<a href="http://www.w3.org/1999/02/22-rdf-syntax-ns">
http://www.w3.org/1999/02/22-rdf-syntax-ns</a>#&quot;);<br>&nbsp;&nbsp;&nbsp; Model model = ModelFactory.createDefaultModel();<br>&nbsp;&nbsp;&nbsp; model.setNsPrefixes(ns);<br>&nbsp;&nbsp;&nbsp; Resource r = model.createResource(&quot;<a href="http://www.test.com/2007/08/test_config#MyNodeID&quot;).addProperty(model.createProperty(&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#type">
http://www.test.com/2007/08/test_config#MyNodeID&quot;).addProperty(model.createProperty(&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a>&quot;), &quot;<a href="http://www.test.com/2007/08/test-vocabulary#Manifest">
http://www.test.com/2007/08/test-vocabulary#Manifest</a>&quot;);<br>&nbsp;&nbsp;&nbsp; Property p = model.createProperty(&quot;<a href="http://www.test.com/2007/08/test-vocabulary#created_by">http://www.test.com/2007/08/test-vocabulary#created_by
</a>&quot;);<br>&nbsp;&nbsp;&nbsp; Statement s = model.createStatement(r, p, &quot;Chaohong&quot;);<br>&nbsp;&nbsp;&nbsp; model.add(s);<br>&nbsp;&nbsp;&nbsp; RDFWriter w = model.getWriter(&quot;RDF/XML-ABBREV&quot;);<br>&nbsp;&nbsp;&nbsp; w.setProperty(&quot;showXMLDeclaration&quot;, &quot;true&quot;);
<br>&nbsp;&nbsp;&nbsp; w.setProperty(&quot;tab&quot;, &quot;2&quot;);<br>&nbsp;&nbsp;&nbsp; w.setProperty(&quot;xmlbase&quot;, &quot;<a href="http://www.test.com/2007/08/test_config">http://www.test.com/2007/08/test_config</a>#&quot;);<br>&nbsp;&nbsp;&nbsp; w.write(model, 
System.out, &quot;<a href="http://www.test.com/2007/08/test-vocabulary">http://www.test.com/2007/08/test-vocabulary</a>#&quot;);</div>
<div>&nbsp;</div>
<div>Chaohong</div>