Re: [Neo4j] Propertiy keys with slashes and spaces in REST server

2011-07-21 Thread Javier de la Rosa
On Wed, Jul 20, 2011 at 22:06, Michael Hunger michael.hun...@neotechnology.com wrote: what is the concrete error that happens if you send over that space + slash encoded property? Returned by HTTP console on Neo4j server (but the behaviour is the same in my Python client): - Regular property

Re: [Neo4j] Propertiy keys with slashes and spaces in REST server

2011-07-21 Thread Michael Hunger
Javier, I quickly tried it with curl, escaping the space to %20 and the forward slash to %2F worked just fine. Please note, that in your examples the forward slash was never escaped: my example is a/b c for both key and value. ADD: curl -i -H Content-Type:application/json -X POST -d

Re: [Neo4j] Propertiy keys with slashes and spaces in REST server

2011-07-21 Thread Javier de la Rosa
I'm so sorry. The problem was a default value in a Python library for URL encoding. Thank you. On Thu, Jul 21, 2011 at 17:41, Michael Hunger michael.hun...@neotechnology.com wrote: Javier, I quickly tried it with curl, escaping the space to %20 and the forward slash to %2F worked just fine.

[Neo4j] Propertiy keys with slashes and spaces in REST server

2011-07-20 Thread Javier de la Rosa
Hi all, I'm trying to implement full support for unicode in my neo4j Python REST client, but I'm finding some dificulties: - I send a property key such as p r öp€rtŷ, and I'm able to get everything working using a URL encoding, that converts that string into

Re: [Neo4j] Propertiy keys with slashes and spaces in REST server

2011-07-20 Thread Peter Neubauer
Javier, do you have the curl command for this? We can just add a test case and fix it. Thanks! Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://www.linkedin.com/in/neubauer Twitter      http://twitter.com/peterneubauer

Re: [Neo4j] Propertiy keys with slashes and spaces in REST server

2011-07-20 Thread Javier de la Rosa
Hi, Peter On Wed, Jul 20, 2011 at 18:32, Peter Neubauer peter.neuba...@neotechnology.com wrote: Javier, do you have the curl command for this? We can just add a test case and fix it. Thanks! The server works great, but the problem is, in practice, it's not possible to set property keys with

Re: [Neo4j] Propertiy keys with slashes and spaces in REST server

2011-07-20 Thread Michael Hunger
Javier, what is the concrete error that happens if you send over that space + slash encoded property? Cheers Michael Am 21.07.2011 um 01:15 schrieb Javier de la Rosa: Hi, Peter On Wed, Jul 20, 2011 at 18:32, Peter Neubauer peter.neuba...@neotechnology.com wrote: Javier, do you have