i keep getting a ': is reserved for anonymous node' notice

I've setup my isaviz with the latest *.jar files (2006-12-05 aplpha 3  
version). Opening and navigating works fine, but when adding a new  
resource in the graph, i get the error ': is reserved for anonymous node'.
To reproduce:

1: 'Create new resource' option in the 'main' isaviz RDF editor window,

2: Mouseclick in graph

(following sample below: i want to add a new resource for a cd)
3: Add a uri: for example: 'http://www.recshop.fake/cd/KateBush'

4: press the Ok utton

5: an message is shown: ': is reserved for anonymous node'

6: so i can't create any resource

I've tried multiple vales for my Base URI, thinking i hadn't set my  
project up correctly, but alas.

Any tips?

greetz
Aliza

Using a w3school sample rdf (see below)
---- start sample ---
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cd="http://www.recshop.fake/cd#">
<rdf:Description
  rdf:about="http://www.recshop.fake/cd/Empire Burlesque">
   <cd:artist>Bob Dylan</cd:artist>
   <cd:country>USA</cd:country>
   <cd:company>Columbia</cd:company>
   <cd:price>10.90</cd:price>
   <cd:year>1985</cd:year>
</rdf:Description>
<rdf:Description
  rdf:about="http://www.recshop.fake/cd/Hide your heart">
   <cd:artist>Bonnie Tyler</cd:artist>
   <cd:country>UK</cd:country>
   <cd:company>CBS Records</cd:company>
   <cd:price>9.90</cd:price>
   <cd:year>1988</cd:year>
</rdf:Description>
</rdf:RDF>
---- end sample ----

Received on Friday, 8 December 2006 08:28:56 UTC