12-27-06 06:11 PM
On Thu, Dec 21, 2006 at 12:25:52PM -0500, Alex Karasulu wrote:
[...]
[vbcol=seagreen]
> First thing just take a look at the Partition interface in the partition
> package. You'll have to implement this for your EIS application.
>
> Best thing to do might be to first stub out all the methods and set
> things up so you can just read a simple entry after installing the
> partition into the server. Then you can move on to start building up
> your solution.
I've come so far to have an ApacheDS running with to partitions:
ou=system and o=community4you.de, the latter being backed (kind of ;))
by open-EIS. To ease testing, I'd like to access my own partition via
JNDI. After everything is set up, I start the server using this code
snippet:
Hashtable<String, Object> _environment = new Hashtable<String, Object>();
_environment.put ("java.naming.security.authentication", "simple");
_environment.put ("java.naming.security.principal", "uid=admin,ou=system");
_environment.put ("java.naming.security.credentials", "secret");
_environment.put ("java.naming.provider.url", "ou=system");
_environment.put ("java.naming.factory.initial", "org.apache.directory.serve
r.jndi.ServerContextFactory");
_environment.put ("org.apache.directory.server.core.configuration.Configurat
ion", _serverconfig);
// this actually starts up the server
InitialDirContext _idc = new InitialDirContext (_environment);
Attributes _testattrs = _idc.getAttributes("uid=admin");
System.out.println ("initialized: uid="+_testattrs.get("uid"));
But how do I get access to my o=community4you.de partition? I suppose,
creating another InitialDirCotext is not the way to go (I'd have to
provide all the internal stuff, object classes, attriute types etc
myself, I suppose), but everything I can do with that context I created,
is relative to it, so I can't actually access my own partition.
Any advice on this?
Thanks,
Tino.
--
www.quantenfeuerwerk.de
www.spiritualdesign-chemnitz.de
www.lebensraum11.de
[ Post a follow-up to this message ]
|