Hi there,
I am running the demo OSIAM database, now.
I am putting my application against it, which wants to read users
from the resource serves.
Looks nice so far:
I was not able to use the python connector library since the
requests module, that is used does not like being called from within
a web application.
I realized that it is only one request I need, so I used httplib2
myself.
Now, when I construct such a URL to issue my get request
http://localhost:8080/osiam-resource-server/Users?filter%3DuserName%20eq%20marissa
-> 505 error
http://localhost:8080/osiam-resource-server/Users?filter=userName+eq+marissa
-> 409 error
Calling /Users without the filter parameter works fine.
In the catalino log I see such things:
WARN [org.osiam.security.helper.SSLRequestLoggingFilter] -
<SSL/TLS should be used>
line 1:12 mismatched input 'marissa' expecting VALUE
Mai 23, 2014 12:21:08 PM
org.osiam.resources.exceptions.OsiamExceptionHandler handleConflict
Warnung: An exception occurred
java.lang.IllegalArgumentException: mismatched input 'marissa'
expecting VALUE
Hm, has the filtering language changed?
Any ideas?
THanks a lot and kind regards
Cornelius