Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF » [CDO] CDO server hacking, where to start?
[CDO] CDO server hacking, where to start? [message #554927] Tue, 24 August 2010 18:46 Go to next message
Karel Gardas is currently offline Karel GardasFriend
Messages: 33
Registered: July 2009
Member
Hello,
I'm working on a research project funded by EU/EC and part of it also deals with CDO. My scope will probably be to enhance CDO server to provide more fine-grained security. My obvious question is: where to start such hacking? Generally speaking I need to hook into any possible operation (remote invocation) on the CDO server and have some kind of exception which will be thrown back to the CDO client in case access control code denies requested access. So far what I've seen is kind of generic CDO server layer and underneath specific storage mechanisms layers. My problem is that from the generic CDO server I've just seen just interfaces and not actual implementation so far (I have to admit I've just spent few minutes into overlooking various sources so far). Also I've not found any way how to signal any failures to the remote side. I'm currently focused on remotely operated/RDBMS-based CDO server, but I hope my security support might be done in a generic way to also support local DBs and in memory DBs.
Any advice where to start, what guidelines to use etc, is highly appreciated here.

Thanks,
Karel
Re: [CDO] CDO server hacking, where to start? [message #554934 is a reply to message #554927] Tue, 24 August 2010 19:21 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
Hi,

I only want to mention that CDO already has a possibility to plug into
the Read/WriteHandlers who restrict access.

My old quite old EMF-CDO-Databinding example shows this in action:
http://github.com/tomsontom/emf-databinding-example/blob/mas ter/org.eclipse.emf.example.library.cdo.server/src/org/eclip se/emf/example/library/cdo/server/LibraryServerApplication.j ava

Tom

Am 24.08.10 20:46, schrieb Karel Gardas:
> Hello,
> I'm working on a research project funded by EU/EC and part of it also
> deals with CDO. My scope will probably be to enhance CDO server to
> provide more fine-grained security. My obvious question is: where to
> start such hacking? Generally speaking I need to hook into any possible
> operation (remote invocation) on the CDO server and have some kind of
> exception which will be thrown back to the CDO client in case access
> control code denies requested access. So far what I've seen is kind of
> generic CDO server layer and underneath specific storage mechanisms
> layers. My problem is that from the generic CDO server I've just seen
> just interfaces and not actual implementation so far (I have to admit
> I've just spent few minutes into overlooking various sources so far).
> Also I've not found any way how to signal any failures to the remote
> side. I'm currently focused on remotely operated/RDBMS-based CDO server,
> but I hope my security support might be done in a generic way to also
> support local DBs and in memory DBs.
> Any advice where to start, what guidelines to use etc, is highly
> appreciated here.
>
> Thanks,
> Karel
Re: [CDO] CDO server hacking, where to start? [message #554936 is a reply to message #554934] Tue, 24 August 2010 19:32 Go to previous messageGo to next message
Karel Gardas is currently offline Karel GardasFriend
Messages: 33
Registered: July 2009
Member

Hi Tom,

that's great to know. It's always better to integrate with architecture which is basically security ready for integration. I'll have a look at your example and also on the API you mention to see if this is what we need or if we need something more. Certainly this is great to know for the first step(s).

Thanks!
Karel

Tom Schindl wrote on Tue, 24 August 2010 15:21
Hi,

I only want to mention that CDO already has a possibility to plug into
the Read/WriteHandlers who restrict access.

My old quite old EMF-CDO-Databinding example shows this in action:
http://github.com/tomsontom/emf-databinding-example/blob/mas ter/org.eclipse.emf.example.library.cdo.server/src/org/eclip se/emf/example/library/cdo/server/LibraryServerApplication.j ava

Tom

Re: [CDO] CDO server hacking, where to start? [message #555043 is a reply to message #554927] Wed, 25 August 2010 09:28 Go to previous messageGo to next message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6682
Registered: July 2009
Senior Member
This is a multi-part message in MIME format.
--------------060703080907020904000507
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: quoted-printable

Hi Karel,

Authentication on CDOSession level is configured like this:

| CDOSessionConfiguration configuration =3D ...;
configuration.getAuthenticator().setCredentialsProvider(...) ;|


On the server side you must inject an IUserManager into the ISessionManag=
er of the IRepository.

These are the authorization hooks you're interested in:

org.eclipse.emf.cdo.server.IRepository.Handler
org.eclipse.emf.cdo.server.IRepository.ReadAccessHandler
org.eclipse.emf.cdo.server.IRepository.WriteAccessHandler

Here's an example:

| getRepository().addHandler(*new *CDOServerUtil.RepositoryReadAccessVali=
dator()
{
EPackage model1Package =3D getRepository().getPackageRegistry().getEPacka=
ge(getModel1Package().getNsURI());

EClass customerClass =3D (EClass)model1Package.getEClassifier("Customer")=
;

EStructuralFeature nameFeature =3D customerClass.getEStructuralFeature("n=
ame");

@Override
*protected *String validate(ISession session, CDORevision revision)
{
EClass eClass =3D revision.getEClass();
EPackage ePackage =3D eClass.getEPackage();
assertNotSame("Revision has dynamic package: " + ePackage.getName(), EPac=
kageImpl.*class*.getName(), ePackage
=2EgetClass().getName());

*if *(eClass =3D=3D customerClass)
{
String name =3D (String)revision.data().get(nameFeature, 0);
*if *("Admin".equals(name))
{
*return *"Confidential!";
}
}

*return null*;
}
});|


You may find these bugzillas interesting, too:

277075: Access Control system in CDO
https://bugs.eclipse.org/bugs/show_bug.cgi?id=3D277075

276063: Elevated write privilege as part of Access Control system
https://bugs.eclipse.org/bugs/show_bug.cgi?id=3D276063

319485: [Dawn] Provide access control for GMF based editors
https://bugs.eclipse.org/bugs/show_bug.cgi?id=3D319485

319487: [Dawn] Provide web-based access to GMF Diagrams
https://bugs.eclipse.org/bugs/show_bug.cgi?id=3D319487

Cheers
/Eike

Contact: http://www.esc-net.de Blogger <http://thegordian.blogspot.com>Tw=
itter <http://twitter.com/eikestepper>Linkedin <http://de.linkedin.com/in=
/eikestepper>Xing <http://www.xing.com/profile/Eike_Stepper>
Article: What exactly is inside that p2 repository? <http://thegordian.bl=
ogspot.com/2010/05/what-exactly-is-inside-that-p2.html>

I'm going to Eclipse Summit Europe 2010 <http://www.eclipsesummit.org/>



Am 24.08.2010 20:46, schrieb Karel Gardas:
> Hello,
> I'm working on a research project funded by EU/EC and part of it also d=
eals with CDO. My scope will probably be to enhance CDO server to provide=
more fine-grained security. My obvious question is: where to start such =
hacking? Generally speaking I need to hook into any possible operation (r=
emote invocation) on the CDO server and have some kind of exception which=
will be thrown back to the CDO client in case access control code denies=
requested access. So far what I've seen is kind of generic CDO server la=
yer and underneath specific storage mechanisms layers. My problem is that=
from the generic CDO server I've just seen just interfaces and not actua=
l implementation so far (I have to admit I've just spent few minutes into=
overlooking various sources so far). Also I've not found any way how to =
signal any failures to the remote side. I'm currently focused on remotely=
operated/RDBMS-based CDO server, but I hope my security support might be=
done in a generic way to also support=20
> local DBs and in memory DBs.
> Any advice where to start, what guidelines to use etc, is highly apprec=
iated here.
>
> Thanks,
> Karel=20

--------------060703080907020904000507
Content-Type: multipart/related;
boundary="------------060703050606090600070900"


--------------060703050606090600070900
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 8bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
Hi Karel,<br>
<br>
Authentication on CDOSession level is configured like this:<br>
<br>
<title></title>
<style type="text/css">
<!--code { font-family: Courier New, Courier; font-size: 10pt; margin: 0px; }-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- ======================================================== -->
<!-- = Java Sourcecode to HTML automatically converted code = -->
<!-- = Java2Html Converter 5.0 [2006-02-26] by Markus Gebhard markus@jave.de = -->
<!-- = Further information: http://www.java2html.de = -->
<div class="java" align="left">
<table bgcolor="#ffffff" border="0" cellpadding="3"
cellspacing="0">
<tbody>
<tr>
<!-- start source code --> <td nowrap="nowrap" align="left"
valign="top"> <code>
<font color="#ffffff">    </font><font color="#000000">CDOSessionConfiguration configuration =
...</font><font color="#000000"></font><font
color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">configuration.getAuthenticator</font><font
color="#000000">()</font><font color="#000000">.setCredentialsProvider</font><font
color="#000000">(...</font><font color="#000000">)</font><font
color="#000000">;</font></code> </td>
<!-- end source code --> </tr>
</tbody>
</table>
</div>
<!-- = END of automatically generated HTML code = -->
<!-- ======================================================== -->
<br>
On the server side you must inject an IUserManager into the
ISessionManager of the IRepository.<br>
<br>
These are the authorization hooks you're interested in:<br>
<blockquote>org.eclipse.emf.cdo.server.IRepository.Handler<br >
org.eclipse.emf.cdo.server.IRepository.ReadAccessHandler<br >
org.eclipse.emf.cdo.server.IRepository.WriteAccessHandler<br >
</blockquote>
Here's an example:<br>
<br>
<title></title>
<style type="text/css">
<!--code { font-family: Courier New, Courier; font-size: 10pt; margin: 0px; }-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- ======================================================== -->
<!-- = Java Sourcecode to HTML automatically converted code = -->
<!-- = Java2Html Converter 5.0 [2006-02-26] by Markus Gebhard markus@jave.de = -->
<!-- = Further information: http://www.java2html.de = -->
<div class="java" align="left">
<table bgcolor="#ffffff" border="0" cellpadding="3"
cellspacing="0">
<tbody>
<tr>
<!-- start source code --> <td nowrap="nowrap" align="left"
valign="top"> <code>
<font color="#ffffff">    </font><font color="#000000">getRepository</font><font
color="#000000">()</font><font color="#000000">.addHandler</font><font
color="#000000">(</font><font color="#7f0055"><b>new </b></font><font
color="#000000">CDOServerUtil.RepositoryReadAccessValidator </font><font
color="#000000">()</font><br>
<font color="#ffffff">    </font><font color="#000000">{</font><br>
<font color="#ffffff">      </font><font color="#000000">EPackage model1Package = getRepository</font ><font
color="#000000">()</font><font color="#000000">.getPackageRegistry</font><font
color="#000000">()</font><font color="#000000">.getEPackage</font><font
color="#000000">(</font><font color="#000000">getModel1Package</font><font
color="#000000">()</font><font color="#000000">.getNsURI</font><font
color="#000000">())</font><font color="#000000">;</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">      </font><font color="#000000">EClass customerClass = </font><font
color="#000000">(</font><font color="#000000">EClass</font><font
color="#000000">)</font><font color="#000000">model1Package.getEClassifier</font><font
color="#000000">(</font><font color="#2a00ff">"Customer"</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">      </font><font color="#000000"> EStructuralFeature nameFeature = customerClass.getEStruct uralFeature </font><font
color="#000000">(</font><font color="#2a00ff">"name"</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">      </font><font color="#646464">@Override</font><br>
<font color="#ffffff">      </font><font color="#7f0055"><b>protected </b></font><font
color="#000000">String validate</font><font
color="#000000">(</font><font color="#000000">ISession session, CDORevision revision</font ><font
color="#000000">)</font><br>
<font color="#ffffff">      </font><font color="#000000">{</font><br>
<font color="#ffffff">        </font><font
color="#000000">EClass eClass = revision.getEClass</font ><font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">        </font><font
color="#000000">EPackage ePackage = eClass.getEPackage</font ><font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">        </font><font
color="#000000">assertNotSame</font><font
color="#000000">(</font><font color="#2a00ff">"Revision has dynamic package: " </font ><font
color="#000000">+ ePackage.getName</font><font
color="#000000">()</font><font color="#000000">, EPackageImpl.</font><font
color="#7f0055"><b>class</b></font><font
color="#000000">.getName</font><font color="#000000">()</font><font
color="#000000">, ePackage</font><br>
<font color="#ffffff">            </font><font
color="#000000">.getClass</font><font color="#000000">()</font><font
color="#000000">.getName</font><font color="#000000">())</font><font
color="#000000">;</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">        </font><font
color="#7f0055"><b>if </b></font><font color="#000000">(</font><font
color="#000000">eClass == customerClass</font><font
color="#000000">)</font><br>
<font color="#ffffff">        </font><font
color="#000000">{</font><br>
<font color="#ffffff">          </font><font
color="#000000">String name = </font><font
color="#000000">(</font><font color="#000000">String</font><font
color="#000000">)</font><font color="#000000">revision.data</font><font
color="#000000">()</font><font color="#000000">.get</font><font
color="#000000">(</font><font color="#000000">nameFeature, </font><font
color="#990000">0</font><font color="#000000">)</font><font
color="#000000">;</font><br>
<font color="#ffffff">          </font><font
color="#7f0055"><b>if </b></font><font color="#000000">(</font><font
color="#2a00ff">"Admin"</font><font color="#000000">.equals</font><font
color="#000000">(</font><font color="#000000">name</font><font
color="#000000">))</font><br>
<font color="#ffffff">          </font><font
color="#000000">{</font><br>
<font color="#ffffff">            </font><font
color="#7f0055"><b>return </b></font><font
color="#2a00ff">"Confidential!"</font><font
color="#000000">;</font><br>
<font color="#ffffff">          </font><font
color="#000000">}</font><br>
<font color="#ffffff">        </font><font
color="#000000">}</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">        </font><font
color="#7f0055"><b>return null</b></font><font
color="#000000">;</font><br>
<font color="#ffffff">      </font><font color="#000000">}</font><br>
<font color="#ffffff">    </font><font color="#000000">})</font><font
color="#000000">;</font></code> </td>
<!-- end source code --> </tr>
</tbody>
</table>
</div>
<!-- = END of automatically generated HTML code = -->
<!-- ======================================================== -->
<br>
You may find these bugzillas interesting, too:<br>
<blockquote>277075: Access Control system in CDO<br>
<a class="moz-txt-link-freetext" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=277075">https://bugs.eclipse.org/bugs/show_bug.cgi?id=277075</a><br>
<br>
276063: Elevated write privilege as part of Access Control system<br>
<a class="moz-txt-link-freetext" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=276063">https://bugs.eclipse.org/bugs/show_bug.cgi?id=276063</a><br>
<br>
319485: [Dawn] Provide access control for GMF based editors<br>
<a class="moz-txt-link-freetext" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=319485">https://bugs.eclipse.org/bugs/show_bug.cgi?id=319485</a><br>
<br>
319487: [Dawn] Provide web-based access to GMF Diagrams<br>
<a class="moz-txt-link-freetext" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=319487">https://bugs.eclipse.org/bugs/show_bug.cgi?id=319487</a><br>
<!--WISESTAMP_SIG_60480_START--></blockquote>
<span style="color: black;">
<div dir="ltr">
<div>Cheers<br>
/Eike<br>
<br>
</div>
<div style="padding: 5px 0pt; font-family: arial,sans-serif;
font-size: 13.3px;"><span style="color: gray;">Contact: <a
href="http://www.esc-net.de">http://www.esc-net.de</a></span>
<a href="http://thegordian.blogspot.com" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part1.04060804.00000600@esc-net.de" alt="Blogger"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://twitter.com/eikestepper" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part2.05010005.03070100@esc-net.de" alt="Twitter"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://de.linkedin.com/in/eikestepper" style="padding:
0pt 2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part3.01020903.06000307@esc-net.de"
alt="Linkedin" style="vertical-align: middle;
padding-bottom: 5px;" border="0" height="16" width="16"></a><a
href="http://www.xing.com/profile/Eike_Stepper"
style="padding: 0pt 2px; color: blue; font-size: 10pt;"
_service=""><img
src="cid:part4.08070009.08000707@esc-net.de" alt="Xing"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a></div>
<div style="color: gray; font-size: 13.3px; padding-bottom:
5px;">Article: <span style="color: blue; text-decoration:
underline;"><a
href=" http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html"
undefined="">What exactly is inside that p2 repository?</a></span></div>
<div><br>
<a href="http://www.eclipsesummit.org/"><img
src="cid:part5.04010008.04030406@esc-net.de" alt="I'm
going to Eclipse Summit Europe 2010" border="0"
height="100" width="130"></a>
<br>
<br>
</div>
</div>
</span><!--WISESTAMP_SIG_60480_END--><br>
<br>
Am 24.08.2010 20:46, schrieb Karel Gardas:
<blockquote cite="mid:i5141r$geq$1@build.eclipse.org" type="cite">Hello,
<br>
I'm working on a research project funded by EU/EC and part of it
also deals with CDO. My scope will probably be to enhance CDO
server to provide more fine-grained security. My obvious question
is: where to start such hacking? Generally speaking I need to hook
into any possible operation (remote invocation) on the CDO server
and have some kind of exception which will be thrown back to the
CDO client in case access control code denies requested access. So
far what I've seen is kind of generic CDO server layer and
underneath specific storage mechanisms layers. My problem is that
from the generic CDO server I've just seen just interfaces and not
actual implementation so far (I have to admit I've just spent few
minutes into overlooking various sources so far). Also I've not
found any way how to signal any failures to the remote side. I'm
currently focused on remotely operated/RDBMS-based CDO server, but
I hope my security support might be done in a generic way to also
support local DBs and in memory DBs.
<br>
Any advice where to start, what guidelines to use etc, is highly
appreciated here.
<br>
<br>
Thanks,
<br>
Karel </blockquote>
</body>
</html>

--------------060703050606090600070900
Content-Type: image/png;
name="blogger.png"
Content-Transfer-Encoding: base64
Content-ID: <part1.04060804.00000600@esc-net.de>
Content-Disposition: inline;
filename="blogger.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/I NwWK6QAAABl0
RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADkUExURf9xEv9m AP////9lAP+Q
SP9kAP9jAP9fAP9nAf9vD//x5/9hAP/iz/9iAP9eAP/s4P9vEP9yEv9qAP9q B/+LRP+we/90
I/+RSP/z6/+jZv/y6P+8kP/59f5yE//awf/Ttv9hAf9nAv/17v+4if9sC/9o BP+bWP/r3v/k
0v+wfP+QRv/o2f9gAP+OQ/93HP/l0/+0gv/Rsv/9/P/j0P+pcP+0hf/dx//D m//+/v+td/9o
AP+NQv/Yvf+zgv/x6P/q2/9xG//p2f9pAP/s3//8+fxxE//ex/+AK/9oCP/j 0f/Uuv///4Xw
StcAAABMdFJOU/////////////////////////////////////////////// ////////////
/////////////////////////////////////////wCejeTMAAAAsklEQVR4 2kSP1w6DMBAE
7cMGQg0hvffee++d//+f2IaIeTlppNXtIo88UAjxEIlhjCUG5lwJQuwoulqh FuUGcWGSiTF7
bt40EEoXBKtyIPQS5PffFqyHlhCS2obTK5kDmJ8lXxgA0zsPXer0L3zSUVmI D9ip3SC+hKwQ
2CxCtXYYL25gu1S8bf4jib5fTM+MNE079jom/+KwJUojwnAVifcQ46jM4M23 BHmkEK53iPcT
YACE/Q4KzoVQVwAAAABJRU5ErkJggg==
--------------060703050606090600070900
Content-Type: image/png;
name="twitter.png"
Content-Transfer-Encoding: base64
Content-ID: <part2.05010005.03070100@esc-net.de>
Content-Disposition: inline;
filename="twitter.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABxUlE QVQ4y4WTMW4U
QRBFX3X3zoy8FgZphTCYAEg4gAPEYbgBJEgEXIALkHMfAjIwItnAAfLK2JYB r3dmuj7BzI5m
2WBLqqzq//q/fxt9NTmrzo7MCIhgRpWSsaMSgEta5czcjYtWTKPxfALZXTEE 2wmAxLXD11VL
BZy2MAuJB/iuA3oAoJb4lUUCVkAGTM5t06gjATMjBiPFaFsADvx1MTFoBd/q zHkMeLcLgCEe
JqjbrCJ1IAkghGDz20Z/XEzMMMTnZTsSYANMAl7fq7YlZOBaUCCk4WowwyRA mBmL7CxcmwDu
rh+rzKU71YhQ/dnr8VbiaRF4MgmbAAZkxJU7lRk3Wby5W3FcJlbSICAjZjFS jJ42rSXWgoWL
fYPfLvaCMTVxJ0XoJTmQ/stF6GPABDhzcepi7uJ74yQDuXcDErjjGhkwNvHx xCjMOMkCg3eX
S85zyVEMtGt24GWVxvsM5yi3+nBV8/7iBmJv0gaZQMZhNL4cHXBYdDkY7HQL vD0oebVfQuud
a8FGHSAaP1vnpMmbHgDEECwafLq/x8fZlGfJKCVKiapvXLyoEsdl3JYwBMpd uW1YEjlz4aMh
AY+iURiU/Vf/B6EE4kjfs5YLAAAAAElFTkSuQmCC
--------------060703050606090600070900
Content-Type: image/png;
name="linkedin.png"
Content-Transfer-Encoding: base64
Content-ID: <part3.01020903.06000307@esc-net.de>
Content-Disposition: inline;
filename="linkedin.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACGklE QVQ4y6WTO2sU
URTHf3dmdp0kTnZJzErSrPjKYqNY2GljodhoLRLB1sLCD2DrZxAsfCAE/AaC grY+SBQSFTSC
xizGzZ3MTiYz92UxY5KNYuOBP+eew/3/73lwxfWHT9yjuR8YL0CwyxygAAPo Cqr0ntFcvjBB
cH++x8WzJzm8v/EnWVdks0PEgNWO95/XePD4HZ4ADk6MAhD6Hs26/08yBjwr ODrZBK0JADyv
LP7GsX2Evse9xR5Lsvgr+XfsO7ctoKwj9AWh7wEQIFCF+3sFGjCmgiJwQFwY Yge3X3cZrwXM
r2SDg9tJ1rokaw1alRXI3NAO61w60AAHTkE7qtNu1PjSUywsb3L60AgjNcHz hZgXb39WApoA
C3FqsIGjMxYC8OZbxlQU0GmFTLdCznWireV0pobYSDKevuzilMZDg0wN/cxu XdrMLVqX53TT
cu3OJ87cmmdlrQBgemoYKTMwqhSI+4Z0QMBhjANgcTnj1UdJHGd8Xc0AmBit Ecu0moGGODH0
h7cF8tyidSmgjSWWG6AUWpkypw1xLwXA4z8tQINcN/T3moEWtLZbr0mZQV5s 55RFJuU8RHR1
1iWtIzQ8nxOtIVCw9D2lWbM06w4ZZ8wtrEJRcLw9TDMUyKRg7kOPSHQR0ZVZ lyRjMDkOOVAU
FfLS57viHRaJLsHM+THuPtuDUgLTW2U0X672t47rrw82vOu/z9w8xS+MkDzV Boy6+QAAAABJ
RU5ErkJggg==
--------------060703050606090600070900
Content-Type: image/png;
name="xing.png"
Content-Transfer-Encoding: base64
Content-ID: <part4.08070009.08000707@esc-net.de>
Content-Disposition: inline;
filename="xing.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsT AAALEwEAmpwY
AAABsklEQVR42mP8//8/AymAEb+G1x9333hU9fffZy52ZTONrQQ0/P7z7sLd hJfvN7Mw80mL
ROkqTodqAIKvv379+fuXhZmZh50dpv7f49dLLt1LYWD4ryRZCETsrJIIDYdu 3y5fu16AizPE
0CTFzgoo8fPXoxPX/T9/v8DHbWCito6LXRHFDw/evnXpm3D39Ws1Eck9xVmy wqLP3/SevlXC
ysKtLtuoJFmMxdObL17ymzqN8S9LnZddua/VrUcWD149FRNwNFFby8oiiEXD itNnImfN5WTi
nBhu7Gvw5OLdiv+MQnqKU6WEI7AE6+vPnx17+68+fmGrJL0wRe/rl/jbL94r isfqKs1kZuJE
1/Dt16/27TtatmzjYeZcnuZpqnDi3J16FmZxYDhKCAViibiVp8+Ur1v39N0H X12DFRkJ33/u
O3LVk+E/i5xYqq7iNCwaXn769PLTZ0ZGBnFePjE+3j9/3155kPvk9XIudgV9 5XnCfI6Ek8a7
T4dO3vD4+++HlHC4kepywhr+/P0ITEIPXk5jZxXTVpgE1EY48X36euHs7fBv P+8CVespzYGH
FSOpyRsAAuDh4a3m5z0AAAAASUVORK5CYII=
--------------060703050606090600070900
Content-Type: image/gif;
name="130x100_going.gif"
Content-Transfer-Encoding: base64
Content-ID: <part5.04010008.04030406@esc-net.de>
Content-Disposition: inline;
filename="130x100_going.gif"

R0lGODlhggBkANU/AAI6m5unzAFEnevmBBdYp26MwSdhrezv9ShbpkdJl8zT 5iosTk5RczdZ
pUxws4+Vujlhq296sauxNTZpsY6cUjtLl0pBjWmLbMzM3yVUngxDnzQ/j1B0 fjRTnm1skRRN
oxsaNCVKlb3I30JPnEY+iQVRojY+ZzhskyVDhEdbok5DlIh+smNfLmNYlS5l r1dSmztQhUZa
iV1eg93b6MTJIx5eq0xMfdvh7UJAaGtipL24E7W50CtOm4CAWP///////yH5 BAEAAD8ALAAA
AACCAGQAAAb/wJ9wOLwVPoCkcslsOp/QqHRKrX4KN6J2K1RkqmCpZqwJm8/h jIi7PUDQ6DJ5
Dq/bmZADWzgrA/x/UXODhGR/hYViSoB3jRozbApJiJSVlpeGTH6DjZ1KCm2T mKOkcyGnIaVj
nncCSXpESKqzlai2qKSscAKGH0QBh7QaJ7QoY6c8PB3Lyzy4l7pVAtPTnAFD wmMfIRIcGbMo
yB0NDSnm5B3OqBvsKO7vZa7RT9TUiEIPwZcZ32QcNANocPhA8EOGDgUTEtQW okKFcSkcSJQI
oVyKFi1e2MBhomPHBSBNoJiXZBqAevYQAbj2BZNBChcyfCBDYYCEhBk4SOCn MCGy/xHmHEQY
SjTCihw5ZGzEwdEjyKcLRupCibJQQQ0ZfuirlKHmAAoyCV44EbPgBYASTvQs GEJZuRwRCjyY
S3eFBxkyGCz1aAIq1JN1qAq2mrCMVlIcAqpdWzADwIGMt/EoJ3TFgwA7Mgd4 YBevXqZ8/UJF
QZWJ4NODCSlcJQnRWg6wIUc+wSHGBVQ920IUelnEDAUiNtu9+7npR9FPSaNe vnxQ5FXAtEWe
Tp0tboK6G0iUu2PGjRsYhHsgvtcp8uTM01eVPn1VAQDTM1yoTr/2LbfbA/i+ MWOHePKgmSca
COipl54G9M3kHnyMcUABDWMluBZZNFDAgTrZQSAUZhhgIP/CDnMNl1d5CzCA wQN+MeABDk9p
YCBq7FU3hivvRfaPTYtJWBABCHh1AQHbNFQBUA6sEABm/oU4nmckMuDDDgSC BEIAPqwQpXIv
olQCggm6aFKNjBEggQQU6PgBAWimecGYCKBpEA9DRmTZkSGuEMGSxTVV4pNR giTDAwyAEKWX
WQpQQglrpQlkYfUAAOZaCJxAAAeL0qdompKeICma/ByUQg4rWBZqqEvaYINe fTnlJJRQCeoq
SFgKsBBqiH5Qq0JpIoBAWASh5CiDCV0qLJCX7jjssQRkUIACBxwwwwPjRXvX nzM0i8EKfYG0
ap8gyLBDoAQSWMARWBwgggOETkP/wAM3HHDDDg4Ei6YDOzQ7QwFh+foesgTU UAMC/+oqsMAG
FGzwwQgb7MKuOzz5QL1V2iDDkjJg4MMBmR3ggwcLdLRtSAs8sHGfC8zgQ7si iOCDDxEgqI3K
IAZwgw8phNBpBg64O1fDO6SiLwCXBmwABAW7YLQLEySt9NITTOT00xNBQGUE KHQkg7s2xDCx
t09mawK0JtgAgwdPdmzq1xt3zBQOJgcAgzseNPv2KQWw/A4KEcSAQjI8pGBu B++ITHW6jmpw
7AkU/Ovv4jXwi6y/FvJ4QABVm0CCCVQysABTDLi7QJSvgoQDn6Cv4IMMrgqq wA1vvzM1CrbW
TXU4yPCQ/wGaEdB8dwgYh9NoAYan6a8BZ9nEAdJMJw318hNFIEFAFNQdHmYf muyBCTHEYPoO
apsqtqljlx22DWhzPD7bB8BgAgxv1/2ACafk7kMAeb/NfgXJNHwknSIrEA6h hRuWCwBCAQP8
K2EF0xXjFsgpfiRmADFwwMk6NIMKzgADgQIJ2R5AshTx6SkgMB3qwgWCas2t BAKAgA8eEI5D
OWBmK1NABDqFpoYpQAEdSllw3AFA4ClqcYi7wAWOlrwiLk0iSatIBy5AAQvl DkVhe4FGPIID
GOQuAN2LgffEJgPx4YB8IvMACEzQFBPS7gO5WwHtTjG2h63MAW3Jnw/0BgNU vP/DZ18KHpoW
V7AaHO2PyDOiIJXmggw0wAcK6IgNMNICr5mgczMISYCa8rGPhJFk3pkbQajk AdrtKgTvyN0O
9sYP2aGgjqdwxyl6qMd+MQ5hgIylLGdpAH407H02QIoHVsAAvqjMSk8ZT8f2 xKqniBCT6TNG
CSaASFV+wAEICBLe5kfKDKjwBnoLga0yQAzC+XCPw1MYEQfJPAcoDYnMSIEC EEk9jcngfAww
2Yl2MDNscaSL3FNb+Qj0kXW+Sz8XS4EqQ9AwETygAFQ6QAzWl4wQyI9+EaDS A2ZEjQCCc4EG
4AACN3qwBdbgBAb8VwZ4AAOZrcxZKPILDgKgsZOhKEr/bOMg6DwwA3C5CgMY a+kOBHoKWyGA
pSfdKfs6ALBkOUBlJw2AQG1V0W969KNr4gBIOUrVj+pkLLsaKSjDhpGNIIef fRGUX0InpdQJ
SgTpg0H2BmqrEhAgBGrNHvtg0IEMFPWtIcheDFrXwqYa7qk1KJ5AqErYEzxv ABfQFT94sIGO
kMAGL2gBiwZk1rF20KwgQAFa+YqbQ7mVH2wcqgIbxylQ3lGbv9MAYGtgABpU iLCwvUBAALYr
OG2ABLhFClIme57eWjZ1H2CWJgviWUXdTGCLS9NaDpXa1ZKFLLAl7FikioBk OKQCG6iABVow
qkb69rtldRXsMPO2tnr2UD9c/62izsteFNJItatlbXSjW9vr4u+6CRjVCmwA 3u+alSAZgKs2
2+tW4ak3TQT2bB7jK1+DXUCjsIVuAg/SDL51gAM96IEMXjCqFfX3PGYNQZoC LOLbsdfAB0ZT
gpn7XgYbDHGuHcvBXDDjNVXoBBS2q8AyEAOAAGQAGx5VDnj74fAKCgX8UJRB bHLii/IxpKRV
8YpRWDgGD88FPqKxg7VcMNl+ZRm6Mphia9KDEciAAjKwAIdDNWTwivVzZkVB VqOMJpigl0zp
TfGUD1VlF3d5TBDO6INgomXDwgSBAnteDGxrARXYoImhyjALQMKCHuCgBxKY NAsk0AM4g4AF
k+6Bhf8QgOECqokDJahBTSBEKVfqecrvdfVqCwZSF0zVAIYNSKA1heuN6qom OojBBixAbBnY
BFTPowBInvfjAehgANDWgaue3ezD2gRNJ2DyCX5cIRQDFsFT7rOVG4wwCoyJ y7DVVQcOSwEb
OMTYElDBC2pCgRzY4Hk6WAALoD3pZ4v1eRJYIrQ5gABoNy7bEjgUwoUV3/Wu OIDjJvfBQDoB
dKdbVz2AtgRiUAF4q8ACGa93Dp7Hgk/bRFDPxsEGRqBoUiO2YAAx4MJLgPAC e9ujDk+wRcc9
355/MgbJ7rhNiJ3xHsj7eTIggbEpcNtnx2AZzyNqYiAc849emwA1t7mTnwr/ bgJDnOc9py/f
YmATHsD7tmRWgQqQrgIPfCUBLIcg1Acg9QFodIADkPnVaz4sBnedvV+3ctij WxtdJYYCZne2
DTI+gB4kIAFIT4DbKTCk541gHM9rQEa/YgC8610CBw/I4xr+dz5/U9azHjxH O4CWwy563dAO
SOMrD+QKTH5IAFlGAwDSABccvvNVR7i/EOBjChzL76W36Naf2kfVI2wZDmoi VvkRgwzLoPoy
GJIMylwB7EP/AkQl9fFsbaEuX8CAxOMAEJvY6uOTngDnVb4rUf9K5yPsIAhI mMCSwYz++9//
AxNLCUNnjOM4y8dA4CZ/gmd/BoN/vlZdRPV/zEAO/xTYAATTeYCEQARYgAaI fGgifwcYTgxo
AAhAVFRVggODABW4ghaYfxg4S0aDMHSGeo5jZWmiAacXgvXnfCVIWAuDAFw2 MBQIAUQIg7Qk
g0HDWv7SgX6Hg63kZ/bXg1RFY0BohLJUcVZ4NAMYZeGUXKNXf4zjhHkGWAwo hbBUNEaTf7M0
SFiYhRbXR1xIbkv4hXJYA2I4hh4VhS6IQBm4hmzohjHIURhlMHPofjt4hzeX h6q3hxwVgzDI
hoR0hRkoiDsIhzOYiP6CiJg4iPPFiAkDiJAYiYC0NH8UdloIZYa4OJqog09G Xz6YhaEoioHE
NKXYc6cIZTPoUasIdrDlAP8B4ACN+Ijk9IuxSIuB+IYvKE63iIC6mIOsKIIb RSUGUDcFwIew
KEjUWIy06AC3CEtWSIjxtYrPKHEII43MNAHBeIXauI4TcEPd6I3faInN2Ep7 RH/DF2YcJY0G
oAAFc0NUYgTNUgCxBFQqUwBNg1TnMgHZSCUsdQAGOQENYy4+wDRUsjJGA1Q3 AIzK+EfGiG7z
mIqKg1yeeDD6aDDrdCQnUwAHoACAVDcBMAFUYpBoJRHmopA+YJBUIgIqqQAw eZNHNZFM444u
IDIyeQCfyJEd6ZGq6IyJmIIiyYgl2Y/8SI0uIJRHQyVJk43zkzRYuZA+YE43 1I482ZPJE5ZV
yY//03iT1mg0yVOLJAgwdsiUaAKXCuSUdqkrUbmPU3mTZwlIWGmTBrmVZOmV SROWYUmWQcmT
fZmW1biWs5g0bqlA4sgpPHKXlvlTPpCCN8SYetmSPmBQM1OUQlGThCmWPXkk GlOWByARRDkB
aDWFSAmZk6griHg7yXJcl2mXVKKZCoAA1NiZR0OEERmTB7kyCUmYEBCWDrBO CtAwyfMAGiOQ
GKmRb3mBaMiWEwABSQQBp4gATngz4BmeuTmedkmE5gkBBeAAEFAv2UmERaSd 53meBaAhwCFI
50kwl3mdLmCe7VmEP/id4Rmg/ECeBKor8QkBaOVSB7qgC7qcxjmf8Lk0/+fZ guRZMNzJoOZJ
m8AjoBwKngWagiyIoSI6oiQ6oRRKoCUKAQDaoQKqWOTJgjCaojI6o+TwoQhA ouSwoizKoiDq
iwVADpsBoxU4o0ToAOOinkNIpBQIZimIUNAEog0gojkKPKewo50iPyvjAxLY AC5JDogkpEma
og0QAS11kyEqpg3ADDomMDEpME86pAs6pQBwC20xUrZzp3cqSkSxpV3aAQUQ AWAqpPHJgioT
AejpADFaoujQf0tqpBDAD18aqCuIg3N6H3xzqXxzRf6nkivzAH46P8uASMtw khfzAOQAnZ1K
DmRaqiy4TjtQgV0ak+j5mRqTGRejnsk5P6WqMf8BAKQs0wHrtDLjIKlySqdx hKmZyk700wES
5JB/2gGa2gGiCqwXk1ApcEjO+qMNEJAzc62welLaGqs3mQJ18yQacwMqo1Tq dDJIBVRpOjXM
ejIRMIGSSqnGiqyXmjs3cEOeKlH9F63Tuk4p0AENM6/naqpcejHMYqYryKlm Kq4/Wjc7tU5G
Oj/mILCauk7LAK/SqgCMWq/vYazHiqzRurE3+a+g2rGjqqUdAK8pgJFjqqy/ iA4VmAI2lLC9
GpM4u67karHrCq2gqrEt+6sq+39gaq8ie6z2dUVL6wMzEBQVwLRFu04R4DcH MLARABQao7UH
kLUOkAIjELZhm7VA8Zn/I5A7BhWdOyuwLnmxWpqxLMuxtzqw/he2FmEOKWCv a4QK9tW3WLoy
EVABDbMyARC18+MQiBS269RSDxC2WTo/YYuqgCu2iruSGpO1frMyJlO1bcu2 PrtOZxu0cUu0
wTqv/Ue5qEupKMAOrJtdDuG69nW2RZECDpECQ1G7EZADDjEUI1ABGJsDYmu7 uUu5wgu8qBtR
R+IAwRsBElG1QMG8tlsA5lAAOWAOvGu7DhC1ZCsUtLu7gRu7qEu5lNq65MsO fXu+6Ju+1wW6
4du+7vu+8Bu2eDu/YIu61xW+6Ru/41u+5au+/tu3Ysu7YTsk8VvABhy+eHvA A6y+77u//Eu+
/9hlvv9rX49XwRZ8wY8XtnCnwO0rwJTrwe9ru8Zrv//bvg78wA+cvo/LMhjc wi7cwhpsweFL
pszStWGbA86ykgFMtWK7ApYbAO2bAOmbweF7wijcv337eE5LFC/wwk78xE/c xI9nLoorAiPw
ApMTthxWJSOQAFgcAAmQOxHgxBUAxQmgAcBwxKyLW2yMW8T2xhaQAD6AARds MUpMxwlgMVOT
AKg6OY+HthqDAVJckYL8wjMgAl68Qo/XHRVsOivweKaTA1MMxmbsxACwAwDA xrfFDm3cyZ5M
AnB8MpvxAHFsx3KMxxZzAwGAFE67AirzAGG8Mt0xPwnAkAzpwoITy/9jXMs+ 0MhV8nhUUsEd
UsmWfAMacFufnMxtbAFsTGwX0yEBQGwWE8dznAAWYDEvQGxU8sgvUM1XlAA5 UM0W0yHVjMHQ
+ci6DMy9DMm/zMvCjMfEjMEVoAE/4AAooMz43MnOjAFwfM0+oGZzLM3/rM0s 83FzrAJXpHbi
PD90onYW/AAzIMmP182wnACMzM7oHMkqkAB+XMlqt9GPt9Eb4AA/IAKZnM8o vc/9bDGuHND+
/MZo+wIMaQExzZAqQCU7oHY58NFqZzoPMBQ7rQIe4sWT89GOrHZfrALhHAE8 3dRO/dQqAABr
8AMdgMwojc8WsMKkLDJO69LT/MaD67TZnDv/LTUDLyBvFrMyGNDUFanWOp3D a23UVWLUB4BT
AQDVeO3UG9AAQyAJV+3JzAzKxFYUEdACxAYXNJ0Dhx0B/dwCuQvT8wMXTQ0X TJ3XTX0Uli1v
mJ3Zlg0AoDAEVPPXydzPpF3apg3HT9RonL3arN3aTo03W9AAVi3a+nzatm3a L1DYcOzavN3b
T70BKcAFWnrPtL3Mt33cyK3avr3crL0B0roHDgAAs+3GgU3dyX3dt83c2r3a GwAAJL0HQrAD
ZWDV2F3e173d6I3XGzAGOwDeWvAAPJAEq6vG9F3f9n3f+J3frWsMAMADD+De bHAAP02sBF7g
Bn7gCH7gEQCd7h0EADs=
--------------060703050606090600070900--

--------------060703080907020904000507--


Re: [CDO] CDO server hacking, where to start? [message #555195 is a reply to message #555043] Wed, 25 August 2010 19:04 Go to previous messageGo to next message
Karel Gardas is currently offline Karel GardasFriend
Messages: 33
Registered: July 2009
Member
Eike Stepper wrote on Wed, 25 August 2010 05:28
This is a multi-part message in MIME format.
--------------060703080907020904000507
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: quoted-printable

Hi Karel,

Authentication on CDOSession level is configured like this:

| CDOSessionConfiguration configuration =3D ...;
configuration.getAuthenticator().setCredentialsProvider(...) ;|

....



Hi Eike,

thank you again for all this valuable information. You describe API for authentication but since I'd like to deal with just CDO server now (for testing), I'd like to ask do you know if Eclipse's provided CDO session view provide authentication framework hooks and allow me to login to CDO server from its GUI? I've not found anything like that so far.

Thanks!
Karel
Re: [CDO] CDO server hacking, where to start? [message #555253 is a reply to message #555195] Thu, 26 August 2010 05:42 Go to previous messageGo to next message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6682
Registered: July 2009
Senior Member
This is a multi-part message in MIME format.
--------------060901040602000104060408
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit

Hi Karel,

Yes, the example UI uses e.g. CDONet4jSessionFactory:

| @Override
*protected *InternalCDOSession createSession(String repositoryName, *boolean *automaticPackageRegistry)
{
CDOSessionConfiguration configuration = CDONet4jUtil.createSessionConfiguration();
configuration.setRepositoryName(repositoryName);
configuration.getAuthenticator().setCredentialsProvider(getC redentialsProvider());

// The session will be activated by the container
configuration.setActivateOnOpen(*false*);
*return *(InternalCDOSession)configuration.openSession();
}

*protected *IPasswordCredentialsProvider getCredentialsProvider()
{
*try*
{
IManagedContainer container = getManagedContainer();
String type = getCredentialsProviderType();
*return *(IPasswordCredentialsProvider)container.getElement(Credenti alsProviderFactory.PRODUCT_GROUP, type, *null*);
}
*catch *(Exception ex)
{
*return null*;
}
}|


The org.eclipse.net4j.util.ui plugin contributes an interactive InteractiveCredentialsProvider:

<extension
point="org.eclipse.net4j.util.factories">
<factory
class=" org.eclipse.net4j.util.internal.ui.InteractiveCredentialsPro viderFactory "
productGroup="org.eclipse.net4j.util.security.credentialsProviders "
type="interactive">
</factory>
</extension>


Cheers
/Eike

Contact: http://www.esc-net.de Blogger <http://thegordian.blogspot.com>Twitter <http://twitter.com/eikestepper>Linkedin <http://de.linkedin.com/in/eikestepper>Xing <http://www.xing.com/profile/Eike_Stepper>
Article: What exactly is inside that p2 repository? < http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html>

I'm going to Eclipse Summit Europe 2010 <http://www.eclipsesummit.org/>



Am 25.08.2010 21:04, schrieb Karel Gardas:
> Eike Stepper wrote on Wed, 25 August 2010 05:28
>> This is a multi-part message in MIME format.
>> --------------060703080907020904000507
>> Content-Type: text/plain; charset=UTF-8; format=flowed
>> Content-Transfer-Encoding: quoted-printable
>>
>> Hi Karel,
>>
>> Authentication on CDOSession level is configured like this:
>>
>> | CDOSessionConfiguration configuration =3D ...;
>> configuration.getAuthenticator().setCredentialsProvider(...) ;|
>>
>> ....
>
>
> Hi Eike,
>
> thank you again for all this valuable information. You describe API for authentication but since I'd like to deal with just CDO server now (for testing), I'd like to ask do you know if Eclipse's provided CDO session view provide authentication framework hooks and allow me to login to CDO server from its GUI? I've not found anything like that so far.
>
> Thanks!
> Karel
>

--------------060901040602000104060408
Content-Type: multipart/related;
boundary="------------060306070009060509000205"


--------------060306070009060509000205
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 8bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi Karel,<br>
<br>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
Yes, the example UI uses e.g. CDONet4jSessionFactory:<br>
<br>
<title></title>
<style type="text/css">
<!--code { font-family: Courier New, Courier; font-size: 10pt; margin: 0px; }-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- ======================================================== -->
<!-- = Java Sourcecode to HTML automatically converted code = -->
<!-- = Java2Html Converter 5.0 [2006-02-26] by Markus Gebhard markus@jave.de = -->
<!-- = Further information: http://www.java2html.de = -->
<div class="java" align="left">
<table bgcolor="#ffffff" border="0" cellpadding="3"
cellspacing="0">
<tbody>
<tr>
<!-- start source code --> <td nowrap="nowrap" align="left"
valign="top"> <code>
<font color="#ffffff">  </font><font color="#646464">@Override</font><br>
<font color="#ffffff">  </font><font color="#7f0055"><b>protected </b></font><font
color="#000000">InternalCDOSession createSession</font><font
color="#000000">(</font><font color="#000000">String repositoryName, </font><font
color="#7f0055"><b>boolean </b></font><font
color="#000000">automaticPackageRegistry</font><font
color="#000000">)</font><br>
<font color="#ffffff">  </font><font color="#000000">{</font><br>
<font color="#ffffff">    </font><font color="#000000"> CDOSessionConfiguration configuration = CDONet4jUtil.crea teSessionConfiguration </font><font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">configuration.setRepositoryName</font><font
color="#000000">(</font><font color="#000000">repositoryName</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">configuration.getAuthenticator</font><font
color="#000000">()</font><font color="#000000">.setCredentialsProvider</font><font
color="#000000">(</font><font color="#000000">getCredentialsProvider</font><font
color="#000000">())</font><font color="#000000">;</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">    </font><font color="#3f7f5f">// The session will be activated by the container </font><br>
<font color="#ffffff">    </font><font color="#000000">configuration.setActivateOnOpen</font><font
color="#000000">(</font><font color="#7f0055"><b>false</b></font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#7f0055"><b>return </b></font><font
color="#000000">(</font><font color="#000000">InternalCDOSession</font><font
color="#000000">)</font><font color="#000000">configuration.openSession</font><font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">  </font><font color="#000000">}</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">  </font><font color="#7f0055"><b>protected </b></font><font
color="#000000">IPasswordCredentialsProvider getCredentialsProvider </font><font
color="#000000">()</font><br>
<font color="#ffffff">  </font><font color="#000000">{</font><br>
<font color="#ffffff">    </font><font color="#7f0055"><b>try</b></font><br>
<font color="#ffffff">    </font><font color="#000000">{</font><br>
<font color="#ffffff">      </font><font color="#000000">IManagedContainer container = getManagedContainer </font><font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">      </font><font color="#000000">String type = getCredentialsProviderType </font><font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">      </font><font color="#7f0055"><b>return </b></font><font
color="#000000">(</font><font color="#000000">IPasswordCredentialsProvider</font><font
color="#000000">)</font><font color="#000000">container.getElement</font><font
color="#000000">(</font><font color="#000000">CredentialsProviderFactory.PRODUCT_GROUP, type,  </font><font
color="#7f0055"><b>null</b></font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">}</font><br>
<font color="#ffffff">    </font><font color="#7f0055"><b>catch </b></font><font
color="#000000">(</font><font color="#000000">Exception ex</font><font
color="#000000">)</font><br>
<font color="#ffffff">    </font><font color="#000000">{</font><br>
<font color="#ffffff">      </font><font color="#7f0055"><b>return null</b></font><font
color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">}</font><br>
<font color="#ffffff">  </font><font color="#000000">}</font></code>
</td>
<!-- end source code --> </tr>
</tbody>
</table>
</div>
<!-- = END of automatically generated HTML code = -->
<!-- ======================================================== -->
<br>
The org.eclipse.net4j.util.ui plugin contributes an interactive
InteractiveCredentialsProvider:<br>
<br>
   &lt;extension<br>
         point="org.eclipse.net4j.util.factories"&gt;<br>
      &lt;factory<br>
           
class=" org.eclipse.net4j.util.internal.ui.InteractiveCredentialsPro viderFactory "<br>
           
productGroup="org.eclipse.net4j.util.security.credentialsProviders "<br>
            type="interactive"&gt;<br>
      &lt;/factory&gt;<br>
   &lt;/extension&gt;<br>
<br>
<br>
<!--WISESTAMP_SIG_75522_START--><span style="color: black;">
<div dir="ltr">
<div>Cheers<br>
/Eike<br>
<br>
</div>
<div style="padding: 5px 0pt; font-family: arial,sans-serif;
font-size: 13.3px;"><span style="color: gray;">Contact: <a
href="http://www.esc-net.de">http://www.esc-net.de</a></span>
<a href="http://thegordian.blogspot.com" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part1.03000205.01090807@esc-net.de" alt="Blogger"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://twitter.com/eikestepper" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part2.09030800.01040102@esc-net.de" alt="Twitter"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://de.linkedin.com/in/eikestepper" style="padding:
0pt 2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part3.09020607.03010204@esc-net.de"
alt="Linkedin" style="vertical-align: middle;
padding-bottom: 5px;" border="0" height="16" width="16"></a><a
href="http://www.xing.com/profile/Eike_Stepper"
style="padding: 0pt 2px; color: blue; font-size: 10pt;"
_service=""><img
src="cid:part4.01080403.02090809@esc-net.de" alt="Xing"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a></div>
<div style="color: gray; font-size: 13.3px; padding-bottom:
5px;">Article: <span style="color: blue; text-decoration:
underline;"><a
href=" http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html"
undefined="">What exactly is inside that p2 repository?</a></span></div>
<div><br>
<a href="http://www.eclipsesummit.org/"><img
src="cid:part5.01010002.03050200@esc-net.de" alt="I'm
going to Eclipse Summit Europe 2010" border="0"
height="100" width="130"></a>
<br>
<br>
</div>
</div>
</span><!--WISESTAMP_SIG_75522_END--><br>
<br>
Am 25.08.2010 21:04, schrieb Karel Gardas:
<blockquote cite="mid:i53pg7$ngb$1@build.eclipse.org" type="cite">Eike
Stepper wrote on Wed, 25 August 2010 05:28
<br>
<blockquote type="cite">This is a multi-part message in MIME
format.
<br>
--------------060703080907020904000507
<br>
Content-Type: text/plain; charset=UTF-8; format=flowed
<br>
Content-Transfer-Encoding: quoted-printable
<br>
<br>
    Hi Karel,
<br>
<br>
Authentication on CDOSession level is configured like this:
<br>
<br>
| CDOSessionConfiguration configuration =3D ...;
<br>
  configuration.getAuthenticator().setCredentialsProvider(...)
;|
<br>
<br>
....
<br>
</blockquote>
<br>
<br>
Hi Eike,
<br>
<br>
thank you again for all this valuable information. You describe
API for authentication but since I'd like to deal with just CDO
server now (for testing), I'd like to ask do you know if Eclipse's
provided CDO session view provide authentication framework hooks
and allow me to login to CDO server from its GUI? I've not found
anything like that so far.
<br>
<br>
Thanks!
<br>
Karel
<br>
<br>
</blockquote>
</body>
</html>

--------------060306070009060509000205
Content-Type: image/png;
name="blogger.png"
Content-Transfer-Encoding: base64
Content-ID: <part1.03000205.01090807@esc-net.de>
Content-Disposition: inline;
filename="blogger.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/I NwWK6QAAABl0
RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADkUExURf9xEv9m AP////9lAP+Q
SP9kAP9jAP9fAP9nAf9vD//x5/9hAP/iz/9iAP9eAP/s4P9vEP9yEv9qAP9q B/+LRP+we/90
I/+RSP/z6/+jZv/y6P+8kP/59f5yE//awf/Ttv9hAf9nAv/17v+4if9sC/9o BP+bWP/r3v/k
0v+wfP+QRv/o2f9gAP+OQ/93HP/l0/+0gv/Rsv/9/P/j0P+pcP+0hf/dx//D m//+/v+td/9o
AP+NQv/Yvf+zgv/x6P/q2/9xG//p2f9pAP/s3//8+fxxE//ex/+AK/9oCP/j 0f/Uuv///4Xw
StcAAABMdFJOU/////////////////////////////////////////////// ////////////
/////////////////////////////////////////wCejeTMAAAAsklEQVR4 2kSP1w6DMBAE
7cMGQg0hvffee++d//+f2IaIeTlppNXtIo88UAjxEIlhjCUG5lwJQuwoulqh FuUGcWGSiTF7
bt40EEoXBKtyIPQS5PffFqyHlhCS2obTK5kDmJ8lXxgA0zsPXer0L3zSUVmI D9ip3SC+hKwQ
2CxCtXYYL25gu1S8bf4jib5fTM+MNE079jom/+KwJUojwnAVifcQ46jM4M23 BHmkEK53iPcT
YACE/Q4KzoVQVwAAAABJRU5ErkJggg==
--------------060306070009060509000205
Content-Type: image/png;
name="twitter.png"
Content-Transfer-Encoding: base64
Content-ID: <part2.09030800.01040102@esc-net.de>
Content-Disposition: inline;
filename="twitter.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABxUlE QVQ4y4WTMW4U
QRBFX3X3zoy8FgZphTCYAEg4gAPEYbgBJEgEXIALkHMfAjIwItnAAfLK2JYB r3dmuj7BzI5m
2WBLqqzq//q/fxt9NTmrzo7MCIhgRpWSsaMSgEta5czcjYtWTKPxfALZXTEE 2wmAxLXD11VL
BZy2MAuJB/iuA3oAoJb4lUUCVkAGTM5t06gjATMjBiPFaFsADvx1MTFoBd/q zHkMeLcLgCEe
JqjbrCJ1IAkghGDz20Z/XEzMMMTnZTsSYANMAl7fq7YlZOBaUCCk4WowwyRA mBmL7CxcmwDu
rh+rzKU71YhQ/dnr8VbiaRF4MgmbAAZkxJU7lRk3Wby5W3FcJlbSICAjZjFS jJ42rSXWgoWL
fYPfLvaCMTVxJ0XoJTmQ/stF6GPABDhzcepi7uJ74yQDuXcDErjjGhkwNvHx xCjMOMkCg3eX
S85zyVEMtGt24GWVxvsM5yi3+nBV8/7iBmJv0gaZQMZhNL4cHXBYdDkY7HQL vD0oebVfQuud
a8FGHSAaP1vnpMmbHgDEECwafLq/x8fZlGfJKCVKiapvXLyoEsdl3JYwBMpd uW1YEjlz4aMh
AY+iURiU/Vf/B6EE4kjfs5YLAAAAAElFTkSuQmCC
--------------060306070009060509000205
Content-Type: image/png;
name="linkedin.png"
Content-Transfer-Encoding: base64
Content-ID: <part3.09020607.03010204@esc-net.de>
Content-Disposition: inline;
filename="linkedin.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACGklE QVQ4y6WTO2sU
URTHf3dmdp0kTnZJzErSrPjKYqNY2GljodhoLRLB1sLCD2DrZxAsfCAE/AaC grY+SBQSFTSC
xizGzZ3MTiYz92UxY5KNYuOBP+eew/3/73lwxfWHT9yjuR8YL0CwyxygAAPo Cqr0ntFcvjBB
cH++x8WzJzm8v/EnWVdks0PEgNWO95/XePD4HZ4ADk6MAhD6Hs26/08yBjwr ODrZBK0JADyv
LP7GsX2Evse9xR5Lsvgr+XfsO7ctoKwj9AWh7wEQIFCF+3sFGjCmgiJwQFwY Yge3X3cZrwXM
r2SDg9tJ1rokaw1alRXI3NAO61w60AAHTkE7qtNu1PjSUywsb3L60AgjNcHz hZgXb39WApoA
C3FqsIGjMxYC8OZbxlQU0GmFTLdCznWireV0pobYSDKevuzilMZDg0wN/cxu XdrMLVqX53TT
cu3OJ87cmmdlrQBgemoYKTMwqhSI+4Z0QMBhjANgcTnj1UdJHGd8Xc0AmBit Ecu0moGGODH0
h7cF8tyidSmgjSWWG6AUWpkypw1xLwXA4z8tQINcN/T3moEWtLZbr0mZQV5s 55RFJuU8RHR1
1iWtIzQ8nxOtIVCw9D2lWbM06w4ZZ8wtrEJRcLw9TDMUyKRg7kOPSHQR0ZVZ lyRjMDkOOVAU
FfLS57viHRaJLsHM+THuPtuDUgLTW2U0X672t47rrw82vOu/z9w8xS+MkDzV Boy6+QAAAABJ
RU5ErkJggg==
--------------060306070009060509000205
Content-Type: image/png;
name="xing.png"
Content-Transfer-Encoding: base64
Content-ID: <part4.01080403.02090809@esc-net.de>
Content-Disposition: inline;
filename="xing.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsT AAALEwEAmpwY
AAABsklEQVR42mP8//8/AymAEb+G1x9333hU9fffZy52ZTONrQQ0/P7z7sLd hJfvN7Mw80mL
ROkqTodqAIKvv379+fuXhZmZh50dpv7f49dLLt1LYWD4ryRZCETsrJIIDYdu 3y5fu16AizPE
0CTFzgoo8fPXoxPX/T9/v8DHbWCito6LXRHFDw/evnXpm3D39Ws1Eck9xVmy wqLP3/SevlXC
ysKtLtuoJFmMxdObL17ymzqN8S9LnZddua/VrUcWD149FRNwNFFby8oiiEXD itNnImfN5WTi
nBhu7Gvw5OLdiv+MQnqKU6WEI7AE6+vPnx17+68+fmGrJL0wRe/rl/jbL94r isfqKs1kZuJE
1/Dt16/27TtatmzjYeZcnuZpqnDi3J16FmZxYDhKCAViibiVp8+Ur1v39N0H X12DFRkJ33/u
O3LVk+E/i5xYqq7iNCwaXn769PLTZ0ZGBnFePjE+3j9/3155kPvk9XIudgV9 5XnCfI6Ek8a7
T4dO3vD4+++HlHC4kepywhr+/P0ITEIPXk5jZxXTVpgE1EY48X36euHs7fBv P+8CVespzYGH
FSOpyRsAAuDh4a3m5z0AAAAASUVORK5CYII=
--------------060306070009060509000205
Content-Type: image/gif;
name="130x100_going.gif"
Content-Transfer-Encoding: base64
Content-ID: <part5.01010002.03050200@esc-net.de>
Content-Disposition: inline;
filename="130x100_going.gif"

R0lGODlhggBkANU/AAI6m5unzAFEnevmBBdYp26MwSdhrezv9ShbpkdJl8zT 5iosTk5RczdZ
pUxws4+Vujlhq296sauxNTZpsY6cUjtLl0pBjWmLbMzM3yVUngxDnzQ/j1B0 fjRTnm1skRRN
oxsaNCVKlb3I30JPnEY+iQVRojY+ZzhskyVDhEdbok5DlIh+smNfLmNYlS5l r1dSmztQhUZa
iV1eg93b6MTJIx5eq0xMfdvh7UJAaGtipL24E7W50CtOm4CAWP///////yH5 BAEAAD8ALAAA
AACCAGQAAAb/wJ9wOLwVPoCkcslsOp/QqHRKrX4KN6J2K1RkqmCpZqwJm8/h jIi7PUDQ6DJ5
Dq/bmZADWzgrA/x/UXODhGR/hYViSoB3jRozbApJiJSVlpeGTH6DjZ1KCm2T mKOkcyGnIaVj
nncCSXpESKqzlai2qKSscAKGH0QBh7QaJ7QoY6c8PB3Lyzy4l7pVAtPTnAFD wmMfIRIcGbMo
yB0NDSnm5B3OqBvsKO7vZa7RT9TUiEIPwZcZ32QcNANocPhA8EOGDgUTEtQW okKFcSkcSJQI
oVyKFi1e2MBhomPHBSBNoJiXZBqAevYQAbj2BZNBChcyfCBDYYCEhBk4SOCn MCGy/xHmHEQY
SjTCihw5ZGzEwdEjyKcLRupCibJQQQ0ZfuirlKHmAAoyCV44EbPgBYASTvQs GEJZuRwRCjyY
S3eFBxkyGCz1aAIq1JN1qAq2mrCMVlIcAqpdWzADwIGMt/EoJ3TFgwA7Mgd4 YBevXqZ8/UJF
QZWJ4NODCSlcJQnRWg6wIUc+wSHGBVQ920IUelnEDAUiNtu9+7npR9FPSaNe vnxQ5FXAtEWe
Tp0tboK6G0iUu2PGjRsYhHsgvtcp8uTM01eVPn1VAQDTM1yoTr/2LbfbA/i+ MWOHePKgmSca
COipl54G9M3kHnyMcUABDWMluBZZNFDAgTrZQSAUZhhgIP/CDnMNl1d5CzCA wQN+MeABDk9p
YCBq7FU3hivvRfaPTYtJWBABCHh1AQHbNFQBUA6sEABm/oU4nmckMuDDDgSC BEIAPqwQpXIv
olQCggm6aFKNjBEggQQU6PgBAWimecGYCKBpEA9DRmTZkSGuEMGSxTVV4pNR giTDAwyAEKWX
WQpQQglrpQlkYfUAAOZaCJxAAAeL0qdompKeICma/ByUQg4rWBZqqEvaYINe fTnlJJRQCeoq
SFgKsBBqiH5Qq0JpIoBAWASh5CiDCV0qLJCX7jjssQRkUIACBxwwwwPjRXvX nzM0i8EKfYG0
ap8gyLBDoAQSWMARWBwgggOETkP/wAM3HHDDDg4Ei6YDOzQ7QwFh+foesgTU UAMC/+oqsMAG
FGzwwQgb7MKuOzz5QL1V2iDDkjJg4MMBmR3ggwcLdLRtSAs8sHGfC8zgQ7si iOCDDxEgqI3K
IAZwgw8phNBpBg64O1fDO6SiLwCXBmwABAW7YLQLEySt9NITTOT00xNBQGUE KHQkg7s2xDCx
t09mawK0JtgAgwdPdmzq1xt3zBQOJgcAgzseNPv2KQWw/A4KEcSAQjI8pGBu B++ITHW6jmpw
7AkU/Ovv4jXwi6y/FvJ4QABVm0CCCVQysABTDLi7QJSvgoQDn6Cv4IMMrgqq wA1vvzM1CrbW
TXU4yPCQ/wGaEdB8dwgYh9NoAYan6a8BZ9nEAdJMJw318hNFIEFAFNQdHmYf muyBCTHEYPoO
apsqtqljlx22DWhzPD7bB8BgAgxv1/2ACafk7kMAeb/NfgXJNHwknSIrEA6h hRuWCwBCAQP8
K2EF0xXjFsgpfiRmADFwwMk6NIMKzgADgQIJ2R5AshTx6SkgMB3qwgWCas2t BAKAgA8eEI5D
OWBmK1NABDqFpoYpQAEdSllw3AFA4ClqcYi7wAWOlrwiLk0iSatIBy5AAQvl DkVhe4FGPIID
GOQuAN2LgffEJgPx4YB8IvMACEzQFBPS7gO5WwHtTjG2h63MAW3Jnw/0BgNU vP/DZ18KHpoW
V7AaHO2PyDOiIJXmggw0wAcK6IgNMNICr5mgczMISYCa8rGPhJFk3pkbQajk AdrtKgTvyN0O
9sYP2aGgjqdwxyl6qMd+MQ5hgIylLGdpAH407H02QIoHVsAAvqjMSk8ZT8f2 xKqniBCT6TNG
CSaASFV+wAEICBLe5kfKDKjwBnoLga0yQAzC+XCPw1MYEQfJPAcoDYnMSIEC EEk9jcngfAww
2Yl2MDNscaSL3FNb+Qj0kXW+Sz8XS4EqQ9AwETygAFQ6QAzWl4wQyI9+EaDS A2ZEjQCCc4EG
4AACN3qwBdbgBAb8VwZ4AAOZrcxZKPILDgKgsZOhKEr/bOMg6DwwA3C5CgMY a+kOBHoKWyGA
pSfdKfs6ALBkOUBlJw2AQG1V0W969KNr4gBIOUrVj+pkLLsaKSjDhpGNIIef fRGUX0InpdQJ
SgTpg0H2BmqrEhAgBGrNHvtg0IEMFPWtIcheDFrXwqYa7qk1KJ5AqErYEzxv ABfQFT94sIGO
kMAGL2gBiwZk1rF20KwgQAFa+YqbQ7mVH2wcqgIbxylQ3lGbv9MAYGtgABpU iLCwvUBAALYr
OG2ABLhFClIme57eWjZ1H2CWJgviWUXdTGCLS9NaDpXa1ZKFLLAl7FikioBk OKQCG6iABVow
qkb69rtldRXsMPO2tnr2UD9c/62izsteFNJItatlbXSjW9vr4u+6CRjVCmwA 3u+alSAZgKs2
2+tW4ak3TQT2bB7jK1+DXUCjsIVuAg/SDL51gAM96IEMXjCqFfX3PGYNQZoC LOLbsdfAB0ZT
gpn7XgYbDHGuHcvBXDDjNVXoBBS2q8AyEAOAAGQAGx5VDnj74fAKCgX8UJRB bHLii/IxpKRV
8YpRWDgGD88FPqKxg7VcMNl+ZRm6Mphia9KDEciAAjKwAIdDNWTwivVzZkVB VqOMJpigl0zp
TfGUD1VlF3d5TBDO6INgomXDwgSBAnteDGxrARXYoImhyjALQMKCHuCgBxKY NAsk0AM4g4AF
k+6Bhf8QgOECqokDJahBTSBEKVfqecrvdfVqCwZSF0zVAIYNSKA1heuN6qom OojBBixAbBnY
BFTPowBInvfjAehgANDWgaue3ezD2gRNJ2DyCX5cIRQDFsFT7rOVG4wwCoyJ y7DVVQcOSwEb
OMTYElDBC2pCgRzY4Hk6WAALoD3pZ4v1eRJYIrQ5gABoNy7bEjgUwoUV3/Wu OIDjJvfBQDoB
dKdbVz2AtgRiUAF4q8ACGa93Dp7Hgk/bRFDPxsEGRqBoUiO2YAAx4MJLgPAC e9ujDk+wRcc9
355/MgbJ7rhNiJ3xHsj7eTIggbEpcNtnx2AZzyNqYiAc849emwA1t7mTnwr/ bgJDnOc9py/f
YmATHsD7tmRWgQqQrgIPfCUBLIcg1Acg9QFodIADkPnVaz4sBnedvV+3ctij WxtdJYYCZne2
DTI+gB4kIAFIT4DbKTCk541gHM9rQEa/YgC8610CBw/I4xr+dz5/U9azHjxH O4CWwy563dAO
SOMrD+QKTH5IAFlGAwDSABccvvNVR7i/EOBjChzL76W36Naf2kfVI2wZDmoi VvkRgwzLoPoy
GJIMylwB7EP/AkQl9fFsbaEuX8CAxOMAEJvY6uOTngDnVb4rUf9K5yPsIAhI mMCSwYz++9//
AxNLCUNnjOM4y8dA4CZ/gmd/BoN/vlZdRPV/zEAO/xTYAATTeYCEQARYgAaI fGgifwcYTgxo
AAhAVFRVggODABW4ghaYfxg4S0aDMHSGeo5jZWmiAacXgvXnfCVIWAuDAFw2 MBQIAUQIg7Qk
g0HDWv7SgX6Hg63kZ/bXg1RFY0BohLJUcVZ4NAMYZeGUXKNXf4zjhHkGWAwo hbBUNEaTf7M0
SFiYhRbXR1xIbkv4hXJYA2I4hh4VhS6IQBm4hmzohjHIURhlMHPofjt4hzeX h6q3hxwVgzDI
hoR0hRkoiDsIhzOYiP6CiJg4iPPFiAkDiJAYiYC0NH8UdloIZYa4OJqog09G Xz6YhaEoioHE
NKXYc6cIZTPoUasIdrDlAP8B4ACN+Ijk9IuxSIuB+IYvKE63iIC6mIOsKIIb RSUGUDcFwIew
KEjUWIy06AC3CEtWSIjxtYrPKHEII43MNAHBeIXauI4TcEPd6I3faInN2Ep7 RH/DF2YcJY0G
oAAFc0NUYgTNUgCxBFQqUwBNg1TnMgHZSCUsdQAGOQENYy4+wDRUsjJGA1Q3 AIzK+EfGiG7z
mIqKg1yeeDD6aDDrdCQnUwAHoACAVDcBMAFUYpBoJRHmopA+YJBUIgIqqQAw eZNHNZFM444u
IDIyeQCfyJEd6ZGq6IyJmIIiyYgl2Y/8SI0uIJRHQyVJk43zkzRYuZA+YE43 1I482ZPJE5ZV
yY//03iT1mg0yVOLJAgwdsiUaAKXCuSUdqkrUbmPU3mTZwlIWGmTBrmVZOmV SROWYUmWQcmT
fZmW1biWs5g0bqlA4sgpPHKXlvlTPpCCN8SYetmSPmBQM1OUQlGThCmWPXkk GlOWByARRDkB
aDWFSAmZk6griHg7yXJcl2mXVKKZCoAA1NiZR0OEERmTB7kyCUmYEBCWDrBO CtAwyfMAGiOQ
GKmRb3mBaMiWEwABSQQBp4gATngz4BmeuTmedkmE5gkBBeAAEFAv2UmERaSd 53meBaAhwCFI
50kwl3mdLmCe7VmEP/id4Rmg/ECeBKor8QkBaOVSB7qgC7qcxjmf8Lk0/+fZ guRZMNzJoOZJ
m8AjoBwKngWagiyIoSI6oiQ6oRRKoCUKAQDaoQKqWOTJgjCaojI6o+TwoQhA ouSwoizKoiDq
iwVADpsBoxU4o0ToAOOinkNIpBQIZimIUNAEog0gojkKPKewo50iPyvjAxLY AC5JDogkpEma
og0QAS11kyEqpg3ADDomMDEpME86pAs6pQBwC20xUrZzp3cqSkSxpV3aAQUQ AWAqpPHJgioT
AejpADFaoujQf0tqpBDAD18aqCuIg3N6H3xzqXxzRf6nkivzAH46P8uASMtw khfzAOQAnZ1K
DmRaqiy4TjtQgV0ak+j5mRqTGRejnsk5P6WqMf8BAKQs0wHrtDLjIKlySqdx hKmZyk700wES
5JB/2gGa2gGiCqwXk1ApcEjO+qMNEJAzc62welLaGqs3mQJ18yQacwMqo1Tq dDJIBVRpOjXM
ejIRMIGSSqnGiqyXmjs3cEOeKlH9F63Tuk4p0AENM6/naqpcejHMYqYryKlm Kq4/Wjc7tU5G
Oj/mILCauk7LAK/SqgCMWq/vYazHiqzRurE3+a+g2rGjqqUdAK8pgJFjqqy/ iA4VmAI2lLC9
GpM4u67karHrCq2gqrEt+6sq+39gaq8ie6z2dUVL6wMzEBQVwLRFu04R4DcH MLARABQao7UH
kLUOkAIjELZhm7VA8Zn/I5A7BhWdOyuwLnmxWpqxLMuxtzqw/he2FmEOKWCv a4QK9tW3WLoy
EVABDbMyARC18+MQiBS269RSDxC2WTo/YYuqgCu2iruSGpO1frMyJlO1bcu2 PrtOZxu0cUu0
wTqv/Ue5qEupKMAOrJtdDuG69nW2RZECDpECQ1G7EZADDjEUI1ABGJsDYmu7 uUu5wgu8qBtR
R+IAwRsBElG1QMG8tlsA5lAAOWAOvGu7DhC1ZCsUtLu7gRu7qEu5lNq65MsO fXu+6Ju+1wW6
4du+7vu+8Bu2eDu/YIu61xW+6Ru/41u+5au+/tu3Ysu7YTsk8VvABhy+eHvA A6y+77u//Eu+
/9hlvv9rX49XwRZ8wY8XtnCnwO0rwJTrwe9ru8Zrv//bvg78wA+cvo/LMhjc wi7cwhpsweFL
pszStWGbA86ykgFMtWK7ApYbAO2bAOmbweF7wijcv337eE5LFC/wwk78xE/c xI9nLoorAiPw
ApMTthxWJSOQAFgcAAmQOxHgxBUAxQmgAcBwxKyLW2yMW8T2xhaQAD6AARds MUpMxwlgMVOT
AKg6OY+HthqDAVJckYL8wjMgAl68Qo/XHRVsOivweKaTA1MMxmbsxACwAwDA xrfFDm3cyZ5M
AnB8MpvxAHFsx3KMxxZzAwGAFE67AirzAGG8Mt0xPwnAkAzpwoITy/9jXMs+ 0MhV8nhUUsEd
UsmWfAMacFufnMxtbAFsTGwX0yEBQGwWE8dznAAWYDEvQGxU8sgvUM1XlAA5 UM0W0yHVjMHQ
+ci6DMy9DMm/zMvCjMfEjMEVoAE/4AAooMz43MnOjAFwfM0+oGZzLM3/rM0s 83FzrAJXpHbi
PD90onYW/AAzIMmP182wnACMzM7oHMkqkAB+XMlqt9GPt9Eb4AA/IAKZnM8o vc/9bDGuHND+
/MZo+wIMaQExzZAqQCU7oHY58NFqZzoPMBQ7rQIe4sWT89GOrHZfrALhHAE8 3dRO/dQqAABr
8AMdgMwojc8WsMKkLDJO69LT/MaD67TZnDv/LTUDLyBvFrMyGNDUFanWOp3D a23UVWLUB4BT
AQDVeO3UG9AAQyAJV+3JzAzKxFYUEdACxAYXNJ0Dhx0B/dwCuQvT8wMXTQ0X TJ3XTX0Uli1v
mJ3Zlg0AoDAEVPPXydzPpF3apg3HT9RonL3arN3aTo03W9AAVi3a+nzatm3a L1DYcOzavN3b
T70BKcAFWnrPtL3Mt33cyK3avr3crL0B0roHDgAAs+3GgU3dyX3dt83c2r3a GwAAJL0HQrAD
ZWDV2F3e173d6I3XGzAGOwDeWvAAPJAEq6vG9F3f9n3f+J3frWsMAMADD+De bHAAP02sBF7g
Bn7gCH7gEQCd7h0EADs=
--------------060306070009060509000205--

--------------060901040602000104060408--


Re: [CDO] CDO server hacking, where to start? [message #555278 is a reply to message #555253] Thu, 26 August 2010 07:49 Go to previous messageGo to next message
Karel Gardas is currently offline Karel GardasFriend
Messages: 33
Registered: July 2009
Member

Eike,

thank you again for this info. I'm able to find CDONet4jSessionFactory, I'm also able to find InteractiveCredentialsProvider, but I'm not able to find out which "example UI" you are talking about. Could you be so kind and point me into the right direction?

Thanks!
Karel

Eike Stepper wrote on Thu, 26 August 2010 01:42
This is a multi-part message in MIME format.
--------------060901040602000104060408
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit

Hi Karel,

Yes, the example UI uses e.g. CDONet4jSessionFactory:

| @Override
*protected *InternalCDOSession createSession(String repositoryName, *boolean *automaticPackageRegistry)
{
CDOSessionConfiguration configuration = CDONet4jUtil.createSessionConfiguration();
configuration.setRepositoryName(repositoryName);
configuration.getAuthenticator().setCredentialsProvider(getC redentialsProvider());

// The session will be activated by the container
configuration.setActivateOnOpen(*false*);
*return *(InternalCDOSession)configuration.openSession();
}

*protected *IPasswordCredentialsProvider getCredentialsProvider()
{
*try*
{
IManagedContainer container = getManagedContainer();
String type = getCredentialsProviderType();
*return *(IPasswordCredentialsProvider)container.getElement(Credenti alsProviderFactory.PRODUCT_GROUP, type, *null*);
}
*catch *(Exception ex)
{
*return null*;
}
}|


The org.eclipse.net4j.util.ui plugin contributes an interactive InteractiveCredentialsProvider:

<extension
point="org.eclipse.net4j.util.factories">
<factory
class=" org.eclipse.net4j.util.internal.ui.InteractiveCredentialsPro viderFactory "
productGroup="org.eclipse.net4j.util.security.credentialsProviders "
type="interactive">
</factory>
</extension>


Cheers
/Eike


Re: [CDO] CDO server hacking, where to start? [message #555290 is a reply to message #555278] Thu, 26 August 2010 08:42 Go to previous messageGo to next message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6682
Registered: July 2009
Senior Member
Am 26.08.2010 09:49, schrieb Karel Gardas:
>
> Eike,
>
> thank you again for this info. I'm able to find CDONet4jSessionFactory, I'm also able to find InteractiveCredentialsProvider, but I'm not able to find out which "example UI" you are talking about. Could you be so kind and point me into the right direction?
All the CDO UI you're seeing is formally considered exemplary, as most products that use CDO are developing their own UI.

Cheers
/Eike

>
> Thanks!
> Karel
>
> Eike Stepper wrote on Thu, 26 August 2010 01:42
>> This is a multi-part message in MIME format.
>> --------------060901040602000104060408
>> Content-Type: text/plain; charset=UTF-8; format=flowed
>> Content-Transfer-Encoding: 7bit
>>
>> Hi Karel,
>>
>> Yes, the example UI uses e.g. CDONet4jSessionFactory:
>>
>> | @Override
>> *protected *InternalCDOSession createSession(String repositoryName, *boolean *automaticPackageRegistry)
>> {
>> CDOSessionConfiguration configuration = CDONet4jUtil.createSessionConfiguration();
>> configuration.setRepositoryName(repositoryName);
>> configuration.getAuthenticator().setCredentialsProvider(getC redentialsProvider());
>>
>> // The session will be activated by the container
>> configuration.setActivateOnOpen(*false*);
>> *return *(InternalCDOSession)configuration.openSession();
>> }
>>
>> *protected *IPasswordCredentialsProvider getCredentialsProvider()
>> {
>> *try*
>> {
>> IManagedContainer container = getManagedContainer();
>> String type = getCredentialsProviderType();
>> *return *(IPasswordCredentialsProvider)container.getElement(Credenti alsProviderFactory.PRODUCT_GROUP, type, *null*);
>> }
>> *catch *(Exception ex)
>> {
>> *return null*;
>> }
>> }|
>>
>>
>> The org.eclipse.net4j.util.ui plugin contributes an interactive InteractiveCredentialsProvider:
>>
>> <extension
>> point="org.eclipse.net4j.util.factories">
>> <factory
>> class=" org.eclipse.net4j.util.internal.ui.InteractiveCredentialsPro viderFactory "
>> productGroup="org.eclipse.net4j.util.security.credentialsProviders "
>> type="interactive">
>> </factory>
>> </extension>
>>
>>
>> Cheers
>> /Eike
>
>


Re: [CDO] CDO server hacking, where to start? [message #555311 is a reply to message #555290] Thu, 26 August 2010 09:40 Go to previous messageGo to next message
Karel Gardas is currently offline Karel GardasFriend
Messages: 33
Registered: July 2009
Member
Eike Stepper wrote on Thu, 26 August 2010 04:42
Am 26.08.2010 09:49, schrieb Karel Gardas:
>
> Eike,
>
> thank you again for this info. I'm able to find CDONet4jSessionFactory, I'm also able to find InteractiveCredentialsProvider, but I'm not able to find out which "example UI" you are talking about. Could you be so kind and point me into the right direction?
All the CDO UI you're seeing is formally considered exemplary, as most products that use CDO are developing their own UI.


That makes sense indeed. Anyway, this is slightly a lot of info for my head. If I understand all the information correctly now, then Eclipse provided CDO Sessions view should be enough for my purposes and should offer me setting of the user credentials by probably using Net4j interactive creds provider. The problem is the CDO Sessions view does not do this now. Am I right assuming I need to configure somewhere containers' credentails factory? If so, then where exactly. If not, then how am I supposed to convince CDO Sessions view to use interactive creds provider?
Thanks,
Karel
Re: [CDO] CDO server hacking, where to start? [message #555317 is a reply to message #555311] Thu, 26 August 2010 09:49 Go to previous messageGo to next message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6682
Registered: July 2009
Senior Member
This is a multi-part message in MIME format.
--------------020102020606090204030807
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit

Hi Karel,

Just inject a user manager into the session manager of your repository. The following example is taken from org.eclipse.emf.cdo.internal.server.RepositoryConfigurator:

| InternalRepository repository = (InternalRepository)getRepository(repositoryType);
repository.setName(repositoryName);

Element userManagerConfig = getUserManagerConfig(repositoryConfig);
*if *(userManagerConfig != *null*)
{
IUserManager userManager = getUserManager(userManagerConfig);
*if *(userManager != *null*)
{
InternalSessionManager sessionManager = repository.getSessionManager();
*if *(sessionManager == *null*)
{
sessionManager = *new *SessionManager();
repository.setSessionManager(sessionManager);
}

sessionManager.setUserManager(userManager);
}
}|


Note that this must happen *before* the repository is activated!

Cheers
/Eike

Contact: http://www.esc-net.de Blogger <http://thegordian.blogspot.com>Twitter <http://twitter.com/eikestepper>Linkedin <http://de.linkedin.com/in/eikestepper>Xing <http://www.xing.com/profile/Eike_Stepper>
Article: What exactly is inside that p2 repository? < http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html>

I'm going to Eclipse Summit Europe 2010 <http://www.eclipsesummit.org/>



Am 26.08.2010 11:40, schrieb Karel Gardas:
> Eike Stepper wrote on Thu, 26 August 2010 04:42
>> Am 26.08.2010 09:49, schrieb Karel Gardas:
>> >
>> > Eike,
>> >
>> > thank you again for this info. I'm able to find CDONet4jSessionFactory, I'm also able to find InteractiveCredentialsProvider, but I'm not able to find out which "example UI" you are talking about. Could you be so kind and point me into the right direction?
>> All the CDO UI you're seeing is formally considered exemplary, as most products that use CDO are developing their own UI.
>
> That makes sense indeed. Anyway, this is slightly a lot of info for my head. If I understand all the information correctly now, then Eclipse provided CDO Sessions view should be enough for my purposes and should offer me setting of the user credentials by probably using Net4j interactive creds provider. The problem is the CDO Sessions view does not do this now. Am I right assuming I need to configure somewhere containers' credentails factory? If so, then where exactly. If not, then how am I supposed to convince CDO Sessions view to use interactive creds provider?
> Thanks,
> Karel

--------------020102020606090204030807
Content-Type: multipart/related;
boundary="------------050003050503090703000400"


--------------050003050503090703000400
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 8bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
Hi Karel,<br>
<br>
Just inject a user manager into the session manager of your
repository. The following example is taken from
org.eclipse.emf.cdo.internal.server.RepositoryConfigurator:<br >
<br>
<title></title>
<style type="text/css">
<!--code { font-family: Courier New, Courier; font-size: 10pt; margin: 0px; }-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- ======================================================== -->
<!-- = Java Sourcecode to HTML automatically converted code = -->
<!-- = Java2Html Converter 5.0 [2006-02-26] by Markus Gebhard markus@jave.de = -->
<!-- = Further information: http://www.java2html.de = -->
<div class="java" align="left">
<table bgcolor="#ffffff" border="0" cellpadding="3"
cellspacing="0">
<tbody>
<tr>
<!-- start source code --> <td nowrap="nowrap" align="left"
valign="top"> <code>
<font color="#ffffff">    </font><font color="#000000">InternalRepository repository = </font ><font
color="#000000">(</font><font color="#000000">InternalRepository</font><font
color="#000000">)</font><font color="#000000">getRepository</font><font
color="#000000">(</font><font color="#000000">repositoryType</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">repository.setName</font><font
color="#000000">(</font><font color="#000000">repositoryName</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">    </font><font color="#000000">Element userManagerConfig = getUserManagerConfig </font><font
color="#000000">(</font><font color="#000000">repositoryConfig</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#7f0055"><b>if </b></font><font
color="#000000">(</font><font color="#000000">userManagerConfig != </font><font
color="#7f0055"><b>null</b></font><font
color="#000000">)</font><br>
<font color="#ffffff">    </font><font color="#000000">{</font><br>
<font color="#ffffff">      </font><font color="#000000">IUserManager userManager = getUserManager </font><font
color="#000000">(</font><font color="#000000">userManagerConfig</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">      </font><font color="#7f0055"><b>if </b></font><font
color="#000000">(</font><font color="#000000">userManager != </font><font
color="#7f0055"><b>null</b></font><font
color="#000000">)</font><br>
<font color="#ffffff">      </font><font color="#000000">{</font><br>
<font color="#ffffff">        </font><font
color="#000000"> InternalSessionManager sessionManager = repository.getSes sionManager </font><font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">        </font><font
color="#7f0055"><b>if </b></font><font color="#000000">(</font><font
color="#000000">sessionManager == </font><font
color="#7f0055"><b>null</b></font><font
color="#000000">)</font><br>
<font color="#ffffff">        </font><font
color="#000000">{</font><br>
<font color="#ffffff">          </font><font
color="#000000">sessionManager = </font><font
color="#7f0055"><b>new </b></font><font
color="#000000">SessionManager</font><font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">          </font><font
color="#000000">repository.setSessionManager</font><font
color="#000000">(</font><font color="#000000">sessionManager</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">        </font><font
color="#000000">}</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">        </font><font
color="#000000">sessionManager.setUserManager</font><font
color="#000000">(</font><font color="#000000">userManager</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">      </font><font color="#000000">}</font><br>
<font color="#ffffff">    </font><font color="#000000">}</font></code>
</td>
<!-- end source code --> </tr>
</tbody>
</table>
</div>
<!-- = END of automatically generated HTML code = -->
<!-- ======================================================== -->
<br>
Note that this must happen *before* the repository is activated!<br>
<br>
<!--WISESTAMP_SIG_31641_START--><span style="color: black;">
<div dir="ltr">
<div>Cheers<br>
/Eike<br>
<br>
</div>
<div style="padding: 5px 0pt; font-family: arial,sans-serif;
font-size: 13.3px;"><span style="color: gray;">Contact: <a
href="http://www.esc-net.de">http://www.esc-net.de</a></span>
<a href="http://thegordian.blogspot.com" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part1.03010905.09000602@esc-net.de" alt="Blogger"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://twitter.com/eikestepper" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part2.04040101.06070709@esc-net.de" alt="Twitter"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://de.linkedin.com/in/eikestepper" style="padding:
0pt 2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part3.01000200.04030405@esc-net.de"
alt="Linkedin" style="vertical-align: middle;
padding-bottom: 5px;" border="0" height="16" width="16"></a><a
href="http://www.xing.com/profile/Eike_Stepper"
style="padding: 0pt 2px; color: blue; font-size: 10pt;"
_service=""><img
src="cid:part4.03060405.03030902@esc-net.de" alt="Xing"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a></div>
<div style="color: gray; font-size: 13.3px; padding-bottom:
5px;">Article: <span style="color: blue; text-decoration:
underline;"><a
href=" http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html"
undefined="">What exactly is inside that p2 repository?</a></span></div>
<div><br>
<a href="http://www.eclipsesummit.org/"><img
src="cid:part5.06050903.08000604@esc-net.de" alt="I'm
going to Eclipse Summit Europe 2010" border="0"
height="100" width="130"></a>
<br>
<br>
</div>
</div>
</span><!--WISESTAMP_SIG_31641_END--><br>
<br>
Am 26.08.2010 11:40, schrieb Karel Gardas:
<blockquote cite="mid:i55cqg$3lp$1@build.eclipse.org" type="cite">Eike
Stepper wrote on Thu, 26 August 2010 04:42
<br>
<blockquote type="cite">Am 26.08.2010 09:49, schrieb Karel Gardas:
<br>
&gt;
<br>
&gt; Eike,
<br>
&gt;
<br>
&gt; thank you again for this info. I'm able to find
CDONet4jSessionFactory, I'm also able to find
InteractiveCredentialsProvider, but I'm not able to find out
which "example UI" you are talking about. Could you be so kind
and point me into the right direction?
<br>
All the CDO UI you're seeing is formally considered exemplary,
as most products that use CDO are developing their own UI.
<br>
</blockquote>
<br>
That makes sense indeed. Anyway, this is slightly a lot of info
for my head. If I understand all the information correctly now,
then Eclipse provided CDO Sessions view should be enough for my
purposes and should offer me setting of the user credentials by
probably using Net4j interactive creds provider. The problem is
the CDO Sessions view does not do this now. Am I right assuming I
need to configure somewhere containers' credentails factory? If
so, then where exactly. If not, then how am I supposed to convince
CDO Sessions view to use interactive creds provider?
<br>
Thanks,
<br>
Karel
<br>
</blockquote>
</body>
</html>

--------------050003050503090703000400
Content-Type: image/png;
name="blogger.png"
Content-Transfer-Encoding: base64
Content-ID: <part1.03010905.09000602@esc-net.de>
Content-Disposition: inline;
filename="blogger.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/I NwWK6QAAABl0
RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADkUExURf9xEv9m AP////9lAP+Q
SP9kAP9jAP9fAP9nAf9vD//x5/9hAP/iz/9iAP9eAP/s4P9vEP9yEv9qAP9q B/+LRP+we/90
I/+RSP/z6/+jZv/y6P+8kP/59f5yE//awf/Ttv9hAf9nAv/17v+4if9sC/9o BP+bWP/r3v/k
0v+wfP+QRv/o2f9gAP+OQ/93HP/l0/+0gv/Rsv/9/P/j0P+pcP+0hf/dx//D m//+/v+td/9o
AP+NQv/Yvf+zgv/x6P/q2/9xG//p2f9pAP/s3//8+fxxE//ex/+AK/9oCP/j 0f/Uuv///4Xw
StcAAABMdFJOU/////////////////////////////////////////////// ////////////
/////////////////////////////////////////wCejeTMAAAAsklEQVR4 2kSP1w6DMBAE
7cMGQg0hvffee++d//+f2IaIeTlppNXtIo88UAjxEIlhjCUG5lwJQuwoulqh FuUGcWGSiTF7
bt40EEoXBKtyIPQS5PffFqyHlhCS2obTK5kDmJ8lXxgA0zsPXer0L3zSUVmI D9ip3SC+hKwQ
2CxCtXYYL25gu1S8bf4jib5fTM+MNE079jom/+KwJUojwnAVifcQ46jM4M23 BHmkEK53iPcT
YACE/Q4KzoVQVwAAAABJRU5ErkJggg==
--------------050003050503090703000400
Content-Type: image/png;
name="twitter.png"
Content-Transfer-Encoding: base64
Content-ID: <part2.04040101.06070709@esc-net.de>
Content-Disposition: inline;
filename="twitter.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABxUlE QVQ4y4WTMW4U
QRBFX3X3zoy8FgZphTCYAEg4gAPEYbgBJEgEXIALkHMfAjIwItnAAfLK2JYB r3dmuj7BzI5m
2WBLqqzq//q/fxt9NTmrzo7MCIhgRpWSsaMSgEta5czcjYtWTKPxfALZXTEE 2wmAxLXD11VL
BZy2MAuJB/iuA3oAoJb4lUUCVkAGTM5t06gjATMjBiPFaFsADvx1MTFoBd/q zHkMeLcLgCEe
JqjbrCJ1IAkghGDz20Z/XEzMMMTnZTsSYANMAl7fq7YlZOBaUCCk4WowwyRA mBmL7CxcmwDu
rh+rzKU71YhQ/dnr8VbiaRF4MgmbAAZkxJU7lRk3Wby5W3FcJlbSICAjZjFS jJ42rSXWgoWL
fYPfLvaCMTVxJ0XoJTmQ/stF6GPABDhzcepi7uJ74yQDuXcDErjjGhkwNvHx xCjMOMkCg3eX
S85zyVEMtGt24GWVxvsM5yi3+nBV8/7iBmJv0gaZQMZhNL4cHXBYdDkY7HQL vD0oebVfQuud
a8FGHSAaP1vnpMmbHgDEECwafLq/x8fZlGfJKCVKiapvXLyoEsdl3JYwBMpd uW1YEjlz4aMh
AY+iURiU/Vf/B6EE4kjfs5YLAAAAAElFTkSuQmCC
--------------050003050503090703000400
Content-Type: image/png;
name="linkedin.png"
Content-Transfer-Encoding: base64
Content-ID: <part3.01000200.04030405@esc-net.de>
Content-Disposition: inline;
filename="linkedin.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACGklE QVQ4y6WTO2sU
URTHf3dmdp0kTnZJzErSrPjKYqNY2GljodhoLRLB1sLCD2DrZxAsfCAE/AaC grY+SBQSFTSC
xizGzZ3MTiYz92UxY5KNYuOBP+eew/3/73lwxfWHT9yjuR8YL0CwyxygAAPo Cqr0ntFcvjBB
cH++x8WzJzm8v/EnWVdks0PEgNWO95/XePD4HZ4ADk6MAhD6Hs26/08yBjwr ODrZBK0JADyv
LP7GsX2Evse9xR5Lsvgr+XfsO7ctoKwj9AWh7wEQIFCF+3sFGjCmgiJwQFwY Yge3X3cZrwXM
r2SDg9tJ1rokaw1alRXI3NAO61w60AAHTkE7qtNu1PjSUywsb3L60AgjNcHz hZgXb39WApoA
C3FqsIGjMxYC8OZbxlQU0GmFTLdCznWireV0pobYSDKevuzilMZDg0wN/cxu XdrMLVqX53TT
cu3OJ87cmmdlrQBgemoYKTMwqhSI+4Z0QMBhjANgcTnj1UdJHGd8Xc0AmBit Ecu0moGGODH0
h7cF8tyidSmgjSWWG6AUWpkypw1xLwXA4z8tQINcN/T3moEWtLZbr0mZQV5s 55RFJuU8RHR1
1iWtIzQ8nxOtIVCw9D2lWbM06w4ZZ8wtrEJRcLw9TDMUyKRg7kOPSHQR0ZVZ lyRjMDkOOVAU
FfLS57viHRaJLsHM+THuPtuDUgLTW2U0X672t47rrw82vOu/z9w8xS+MkDzV Boy6+QAAAABJ
RU5ErkJggg==
--------------050003050503090703000400
Content-Type: image/png;
name="xing.png"
Content-Transfer-Encoding: base64
Content-ID: <part4.03060405.03030902@esc-net.de>
Content-Disposition: inline;
filename="xing.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsT AAALEwEAmpwY
AAABsklEQVR42mP8//8/AymAEb+G1x9333hU9fffZy52ZTONrQQ0/P7z7sLd hJfvN7Mw80mL
ROkqTodqAIKvv379+fuXhZmZh50dpv7f49dLLt1LYWD4ryRZCETsrJIIDYdu 3y5fu16AizPE
0CTFzgoo8fPXoxPX/T9/v8DHbWCito6LXRHFDw/evnXpm3D39Ws1Eck9xVmy wqLP3/SevlXC
ysKtLtuoJFmMxdObL17ymzqN8S9LnZddua/VrUcWD149FRNwNFFby8oiiEXD itNnImfN5WTi
nBhu7Gvw5OLdiv+MQnqKU6WEI7AE6+vPnx17+68+fmGrJL0wRe/rl/jbL94r isfqKs1kZuJE
1/Dt16/27TtatmzjYeZcnuZpqnDi3J16FmZxYDhKCAViibiVp8+Ur1v39N0H X12DFRkJ33/u
O3LVk+E/i5xYqq7iNCwaXn769PLTZ0ZGBnFePjE+3j9/3155kPvk9XIudgV9 5XnCfI6Ek8a7
T4dO3vD4+++HlHC4kepywhr+/P0ITEIPXk5jZxXTVpgE1EY48X36euHs7fBv P+8CVespzYGH
FSOpyRsAAuDh4a3m5z0AAAAASUVORK5CYII=
--------------050003050503090703000400
Content-Type: image/gif;
name="130x100_going.gif"
Content-Transfer-Encoding: base64
Content-ID: <part5.06050903.08000604@esc-net.de>
Content-Disposition: inline;
filename="130x100_going.gif"

R0lGODlhggBkANU/AAI6m5unzAFEnevmBBdYp26MwSdhrezv9ShbpkdJl8zT 5iosTk5RczdZ
pUxws4+Vujlhq296sauxNTZpsY6cUjtLl0pBjWmLbMzM3yVUngxDnzQ/j1B0 fjRTnm1skRRN
oxsaNCVKlb3I30JPnEY+iQVRojY+ZzhskyVDhEdbok5DlIh+smNfLmNYlS5l r1dSmztQhUZa
iV1eg93b6MTJIx5eq0xMfdvh7UJAaGtipL24E7W50CtOm4CAWP///////yH5 BAEAAD8ALAAA
AACCAGQAAAb/wJ9wOLwVPoCkcslsOp/QqHRKrX4KN6J2K1RkqmCpZqwJm8/h jIi7PUDQ6DJ5
Dq/bmZADWzgrA/x/UXODhGR/hYViSoB3jRozbApJiJSVlpeGTH6DjZ1KCm2T mKOkcyGnIaVj
nncCSXpESKqzlai2qKSscAKGH0QBh7QaJ7QoY6c8PB3Lyzy4l7pVAtPTnAFD wmMfIRIcGbMo
yB0NDSnm5B3OqBvsKO7vZa7RT9TUiEIPwZcZ32QcNANocPhA8EOGDgUTEtQW okKFcSkcSJQI
oVyKFi1e2MBhomPHBSBNoJiXZBqAevYQAbj2BZNBChcyfCBDYYCEhBk4SOCn MCGy/xHmHEQY
SjTCihw5ZGzEwdEjyKcLRupCibJQQQ0ZfuirlKHmAAoyCV44EbPgBYASTvQs GEJZuRwRCjyY
S3eFBxkyGCz1aAIq1JN1qAq2mrCMVlIcAqpdWzADwIGMt/EoJ3TFgwA7Mgd4 YBevXqZ8/UJF
QZWJ4NODCSlcJQnRWg6wIUc+wSHGBVQ920IUelnEDAUiNtu9+7npR9FPSaNe vnxQ5FXAtEWe
Tp0tboK6G0iUu2PGjRsYhHsgvtcp8uTM01eVPn1VAQDTM1yoTr/2LbfbA/i+ MWOHePKgmSca
COipl54G9M3kHnyMcUABDWMluBZZNFDAgTrZQSAUZhhgIP/CDnMNl1d5CzCA wQN+MeABDk9p
YCBq7FU3hivvRfaPTYtJWBABCHh1AQHbNFQBUA6sEABm/oU4nmckMuDDDgSC BEIAPqwQpXIv
olQCggm6aFKNjBEggQQU6PgBAWimecGYCKBpEA9DRmTZkSGuEMGSxTVV4pNR giTDAwyAEKWX
WQpQQglrpQlkYfUAAOZaCJxAAAeL0qdompKeICma/ByUQg4rWBZqqEvaYINe fTnlJJRQCeoq
SFgKsBBqiH5Qq0JpIoBAWASh5CiDCV0qLJCX7jjssQRkUIACBxwwwwPjRXvX nzM0i8EKfYG0
ap8gyLBDoAQSWMARWBwgggOETkP/wAM3HHDDDg4Ei6YDOzQ7QwFh+foesgTU UAMC/+oqsMAG
FGzwwQgb7MKuOzz5QL1V2iDDkjJg4MMBmR3ggwcLdLRtSAs8sHGfC8zgQ7si iOCDDxEgqI3K
IAZwgw8phNBpBg64O1fDO6SiLwCXBmwABAW7YLQLEySt9NITTOT00xNBQGUE KHQkg7s2xDCx
t09mawK0JtgAgwdPdmzq1xt3zBQOJgcAgzseNPv2KQWw/A4KEcSAQjI8pGBu B++ITHW6jmpw
7AkU/Ovv4jXwi6y/FvJ4QABVm0CCCVQysABTDLi7QJSvgoQDn6Cv4IMMrgqq wA1vvzM1CrbW
TXU4yPCQ/wGaEdB8dwgYh9NoAYan6a8BZ9nEAdJMJw318hNFIEFAFNQdHmYf muyBCTHEYPoO
apsqtqljlx22DWhzPD7bB8BgAgxv1/2ACafk7kMAeb/NfgXJNHwknSIrEA6h hRuWCwBCAQP8
K2EF0xXjFsgpfiRmADFwwMk6NIMKzgADgQIJ2R5AshTx6SkgMB3qwgWCas2t BAKAgA8eEI5D
OWBmK1NABDqFpoYpQAEdSllw3AFA4ClqcYi7wAWOlrwiLk0iSatIBy5AAQvl DkVhe4FGPIID
GOQuAN2LgffEJgPx4YB8IvMACEzQFBPS7gO5WwHtTjG2h63MAW3Jnw/0BgNU vP/DZ18KHpoW
V7AaHO2PyDOiIJXmggw0wAcK6IgNMNICr5mgczMISYCa8rGPhJFk3pkbQajk AdrtKgTvyN0O
9sYP2aGgjqdwxyl6qMd+MQ5hgIylLGdpAH407H02QIoHVsAAvqjMSk8ZT8f2 xKqniBCT6TNG
CSaASFV+wAEICBLe5kfKDKjwBnoLga0yQAzC+XCPw1MYEQfJPAcoDYnMSIEC EEk9jcngfAww
2Yl2MDNscaSL3FNb+Qj0kXW+Sz8XS4EqQ9AwETygAFQ6QAzWl4wQyI9+EaDS A2ZEjQCCc4EG
4AACN3qwBdbgBAb8VwZ4AAOZrcxZKPILDgKgsZOhKEr/bOMg6DwwA3C5CgMY a+kOBHoKWyGA
pSfdKfs6ALBkOUBlJw2AQG1V0W969KNr4gBIOUrVj+pkLLsaKSjDhpGNIIef fRGUX0InpdQJ
SgTpg0H2BmqrEhAgBGrNHvtg0IEMFPWtIcheDFrXwqYa7qk1KJ5AqErYEzxv ABfQFT94sIGO
kMAGL2gBiwZk1rF20KwgQAFa+YqbQ7mVH2wcqgIbxylQ3lGbv9MAYGtgABpU iLCwvUBAALYr
OG2ABLhFClIme57eWjZ1H2CWJgviWUXdTGCLS9NaDpXa1ZKFLLAl7FikioBk OKQCG6iABVow
qkb69rtldRXsMPO2tnr2UD9c/62izsteFNJItatlbXSjW9vr4u+6CRjVCmwA 3u+alSAZgKs2
2+tW4ak3TQT2bB7jK1+DXUCjsIVuAg/SDL51gAM96IEMXjCqFfX3PGYNQZoC LOLbsdfAB0ZT
gpn7XgYbDHGuHcvBXDDjNVXoBBS2q8AyEAOAAGQAGx5VDnj74fAKCgX8UJRB bHLii/IxpKRV
8YpRWDgGD88FPqKxg7VcMNl+ZRm6Mphia9KDEciAAjKwAIdDNWTwivVzZkVB VqOMJpigl0zp
TfGUD1VlF3d5TBDO6INgomXDwgSBAnteDGxrARXYoImhyjALQMKCHuCgBxKY NAsk0AM4g4AF
k+6Bhf8QgOECqokDJahBTSBEKVfqecrvdfVqCwZSF0zVAIYNSKA1heuN6qom OojBBixAbBnY
BFTPowBInvfjAehgANDWgaue3ezD2gRNJ2DyCX5cIRQDFsFT7rOVG4wwCoyJ y7DVVQcOSwEb
OMTYElDBC2pCgRzY4Hk6WAALoD3pZ4v1eRJYIrQ5gABoNy7bEjgUwoUV3/Wu OIDjJvfBQDoB
dKdbVz2AtgRiUAF4q8ACGa93Dp7Hgk/bRFDPxsEGRqBoUiO2YAAx4MJLgPAC e9ujDk+wRcc9
355/MgbJ7rhNiJ3xHsj7eTIggbEpcNtnx2AZzyNqYiAc849emwA1t7mTnwr/ bgJDnOc9py/f
YmATHsD7tmRWgQqQrgIPfCUBLIcg1Acg9QFodIADkPnVaz4sBnedvV+3ctij WxtdJYYCZne2
DTI+gB4kIAFIT4DbKTCk541gHM9rQEa/YgC8610CBw/I4xr+dz5/U9azHjxH O4CWwy563dAO
SOMrD+QKTH5IAFlGAwDSABccvvNVR7i/EOBjChzL76W36Naf2kfVI2wZDmoi VvkRgwzLoPoy
GJIMylwB7EP/AkQl9fFsbaEuX8CAxOMAEJvY6uOTngDnVb4rUf9K5yPsIAhI mMCSwYz++9//
AxNLCUNnjOM4y8dA4CZ/gmd/BoN/vlZdRPV/zEAO/xTYAATTeYCEQARYgAaI fGgifwcYTgxo
AAhAVFRVggODABW4ghaYfxg4S0aDMHSGeo5jZWmiAacXgvXnfCVIWAuDAFw2 MBQIAUQIg7Qk
g0HDWv7SgX6Hg63kZ/bXg1RFY0BohLJUcVZ4NAMYZeGUXKNXf4zjhHkGWAwo hbBUNEaTf7M0
SFiYhRbXR1xIbkv4hXJYA2I4hh4VhS6IQBm4hmzohjHIURhlMHPofjt4hzeX h6q3hxwVgzDI
hoR0hRkoiDsIhzOYiP6CiJg4iPPFiAkDiJAYiYC0NH8UdloIZYa4OJqog09G Xz6YhaEoioHE
NKXYc6cIZTPoUasIdrDlAP8B4ACN+Ijk9IuxSIuB+IYvKE63iIC6mIOsKIIb RSUGUDcFwIew
KEjUWIy06AC3CEtWSIjxtYrPKHEII43MNAHBeIXauI4TcEPd6I3faInN2Ep7 RH/DF2YcJY0G
oAAFc0NUYgTNUgCxBFQqUwBNg1TnMgHZSCUsdQAGOQENYy4+wDRUsjJGA1Q3 AIzK+EfGiG7z
mIqKg1yeeDD6aDDrdCQnUwAHoACAVDcBMAFUYpBoJRHmopA+YJBUIgIqqQAw eZNHNZFM444u
IDIyeQCfyJEd6ZGq6IyJmIIiyYgl2Y/8SI0uIJRHQyVJk43zkzRYuZA+YE43 1I482ZPJE5ZV
yY//03iT1mg0yVOLJAgwdsiUaAKXCuSUdqkrUbmPU3mTZwlIWGmTBrmVZOmV SROWYUmWQcmT
fZmW1biWs5g0bqlA4sgpPHKXlvlTPpCCN8SYetmSPmBQM1OUQlGThCmWPXkk GlOWByARRDkB
aDWFSAmZk6griHg7yXJcl2mXVKKZCoAA1NiZR0OEERmTB7kyCUmYEBCWDrBO CtAwyfMAGiOQ
GKmRb3mBaMiWEwABSQQBp4gATngz4BmeuTmedkmE5gkBBeAAEFAv2UmERaSd 53meBaAhwCFI
50kwl3mdLmCe7VmEP/id4Rmg/ECeBKor8QkBaOVSB7qgC7qcxjmf8Lk0/+fZ guRZMNzJoOZJ
m8AjoBwKngWagiyIoSI6oiQ6oRRKoCUKAQDaoQKqWOTJgjCaojI6o+TwoQhA ouSwoizKoiDq
iwVADpsBoxU4o0ToAOOinkNIpBQIZimIUNAEog0gojkKPKewo50iPyvjAxLY AC5JDogkpEma
og0QAS11kyEqpg3ADDomMDEpME86pAs6pQBwC20xUrZzp3cqSkSxpV3aAQUQ AWAqpPHJgioT
AejpADFaoujQf0tqpBDAD18aqCuIg3N6H3xzqXxzRf6nkivzAH46P8uASMtw khfzAOQAnZ1K
DmRaqiy4TjtQgV0ak+j5mRqTGRejnsk5P6WqMf8BAKQs0wHrtDLjIKlySqdx hKmZyk700wES
5JB/2gGa2gGiCqwXk1ApcEjO+qMNEJAzc62welLaGqs3mQJ18yQacwMqo1Tq dDJIBVRpOjXM
ejIRMIGSSqnGiqyXmjs3cEOeKlH9F63Tuk4p0AENM6/naqpcejHMYqYryKlm Kq4/Wjc7tU5G
Oj/mILCauk7LAK/SqgCMWq/vYazHiqzRurE3+a+g2rGjqqUdAK8pgJFjqqy/ iA4VmAI2lLC9
GpM4u67karHrCq2gqrEt+6sq+39gaq8ie6z2dUVL6wMzEBQVwLRFu04R4DcH MLARABQao7UH
kLUOkAIjELZhm7VA8Zn/I5A7BhWdOyuwLnmxWpqxLMuxtzqw/he2FmEOKWCv a4QK9tW3WLoy
EVABDbMyARC18+MQiBS269RSDxC2WTo/YYuqgCu2iruSGpO1frMyJlO1bcu2 PrtOZxu0cUu0
wTqv/Ue5qEupKMAOrJtdDuG69nW2RZECDpECQ1G7EZADDjEUI1ABGJsDYmu7 uUu5wgu8qBtR
R+IAwRsBElG1QMG8tlsA5lAAOWAOvGu7DhC1ZCsUtLu7gRu7qEu5lNq65MsO fXu+6Ju+1wW6
4du+7vu+8Bu2eDu/YIu61xW+6Ru/41u+5au+/tu3Ysu7YTsk8VvABhy+eHvA A6y+77u//Eu+
/9hlvv9rX49XwRZ8wY8XtnCnwO0rwJTrwe9ru8Zrv//bvg78wA+cvo/LMhjc wi7cwhpsweFL
pszStWGbA86ykgFMtWK7ApYbAO2bAOmbweF7wijcv337eE5LFC/wwk78xE/c xI9nLoorAiPw
ApMTthxWJSOQAFgcAAmQOxHgxBUAxQmgAcBwxKyLW2yMW8T2xhaQAD6AARds MUpMxwlgMVOT
AKg6OY+HthqDAVJckYL8wjMgAl68Qo/XHRVsOivweKaTA1MMxmbsxACwAwDA xrfFDm3cyZ5M
AnB8MpvxAHFsx3KMxxZzAwGAFE67AirzAGG8Mt0xPwnAkAzpwoITy/9jXMs+ 0MhV8nhUUsEd
UsmWfAMacFufnMxtbAFsTGwX0yEBQGwWE8dznAAWYDEvQGxU8sgvUM1XlAA5 UM0W0yHVjMHQ
+ci6DMy9DMm/zMvCjMfEjMEVoAE/4AAooMz43MnOjAFwfM0+oGZzLM3/rM0s 83FzrAJXpHbi
PD90onYW/AAzIMmP182wnACMzM7oHMkqkAB+XMlqt9GPt9Eb4AA/IAKZnM8o vc/9bDGuHND+
/MZo+wIMaQExzZAqQCU7oHY58NFqZzoPMBQ7rQIe4sWT89GOrHZfrALhHAE8 3dRO/dQqAABr
8AMdgMwojc8WsMKkLDJO69LT/MaD67TZnDv/LTUDLyBvFrMyGNDUFanWOp3D a23UVWLUB4BT
AQDVeO3UG9AAQyAJV+3JzAzKxFYUEdACxAYXNJ0Dhx0B/dwCuQvT8wMXTQ0X TJ3XTX0Uli1v
mJ3Zlg0AoDAEVPPXydzPpF3apg3HT9RonL3arN3aTo03W9AAVi3a+nzatm3a L1DYcOzavN3b
T70BKcAFWnrPtL3Mt33cyK3avr3crL0B0roHDgAAs+3GgU3dyX3dt83c2r3a GwAAJL0HQrAD
ZWDV2F3e173d6I3XGzAGOwDeWvAAPJAEq6vG9F3f9n3f+J3frWsMAMADD+De bHAAP02sBF7g
Bn7gCH7gEQCd7h0EADs=
--------------050003050503090703000400--

--------------020102020606090204030807--


Re: [CDO] CDO server hacking, where to start? [message #555367 is a reply to message #555317] Thu, 26 August 2010 12:44 Go to previous messageGo to next message
Karel Gardas is currently offline Karel GardasFriend
Messages: 33
Registered: July 2009
Member
Eike,

sorry to bother you again, but to be honest I don't know what you are talking about. I've found that that some kind of "injecting" is available in Eclipse 4.0, but I'm using 3.6 here. Also I've found that service injection is possible with Riena framework, but I don't use this and I don't know if this is required for this task. Also if I try to set user manager manually on the InternalRepository type, then I get access denied since the plugin does not export this class. So could you be so kind and let me know which of those 3 ways was the right to follow? (1) Eclipse 4.0, (2) using Riena or (3) using just an API but with some clever hack?

Thanks,
Karel
Eike Stepper wrote on Thu, 26 August 2010 05:49
This is a multi-part message in MIME format.
--------------020102020606090204030807
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit

Hi Karel,

Just inject a user manager into the session manager of your repository. The following example is taken from org.eclipse.emf.cdo.internal.server.RepositoryConfigurator:

| InternalRepository repository = (InternalRepository)getRepository(repositoryType);
repository.setName(repositoryName);

Element userManagerConfig = getUserManagerConfig(repositoryConfig);
*if *(userManagerConfig != *null*)
{
IUserManager userManager = getUserManager(userManagerConfig);
*if *(userManager != *null*)
{
InternalSessionManager sessionManager = repository.getSessionManager();
*if *(sessionManager == *null*)
{
sessionManager = *new *SessionManager();
repository.setSessionManager(sessionManager);
}

sessionManager.setUserManager(userManager);
}
}|


Note that this must happen *before* the repository is activated!


Re: [CDO] CDO server hacking, where to start? [message #555428 is a reply to message #555367] Thu, 26 August 2010 14:44 Go to previous messageGo to next message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6682
Registered: July 2009
Senior Member
This is a multi-part message in MIME format.
--------------040108060602080704040809
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit

Hi Karel,

Forgive me my high-toned jabbering, with "inject" I was just referring to "call the setter", as in:

| UserManager userManager = *new *UserManager();
userManager.addUser("user1", "pw1234".toCharArray());
userManager.addUser("user2", "pw5678".toCharArray());
LifecycleUtil.activate(userManager);

InternalSessionManager sessionManager = (InternalSessionManager)CDOServerUtil.createSessionManager() ;
sessionManager.setUserManager(userManager);

InternalRepository repository = (InternalRepository)CDOServerUtil.createRepository(name, store, props);
repository.setSessionManager(sessionManager);
LifecycleUtil.activate(repository);|



Cheers
/Eike

Contact: http://www.esc-net.de Blogger <http://thegordian.blogspot.com>Twitter <http://twitter.com/eikestepper>Linkedin <http://de.linkedin.com/in/eikestepper>Xing <http://www.xing.com/profile/Eike_Stepper>
Article: What exactly is inside that p2 repository? < http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html>

I'm going to Eclipse Summit Europe 2010 <http://www.eclipsesummit.org/>



Am 26.08.2010 14:44, schrieb Karel Gardas:
> Eike,
>
> sorry to bother you again, but to be honest I don't know what you are talking about. I've found that that some kind of "injecting" is available in Eclipse 4.0, but I'm using 3.6 here. Also I've found that service injection is possible with Riena framework, but I don't use this and I don't know if this is required for this task. Also if I try to set user manager manually on the InternalRepository type, then I get access denied since the plugin does not export this class. So could you be so kind and let me know which of those 3 ways was the right to follow? (1) Eclipse 4.0, (2) using Riena or (3) using just an API but with some clever hack?
>
> Thanks,
> Karel
> Eike Stepper wrote on Thu, 26 August 2010 05:49
>> This is a multi-part message in MIME format.
>> --------------020102020606090204030807
>> Content-Type: text/plain; charset=UTF-8; format=flowed
>> Content-Transfer-Encoding: 7bit
>>
>> Hi Karel,
>>
>> Just inject a user manager into the session manager of your repository. The following example is taken from org.eclipse.emf.cdo.internal.server.RepositoryConfigurator:
>>
>> | InternalRepository repository = (InternalRepository)getRepository(repositoryType);
>> repository.setName(repositoryName);
>>
>> Element userManagerConfig = getUserManagerConfig(repositoryConfig);
>> *if *(userManagerConfig != *null*)
>> {
>> IUserManager userManager = getUserManager(userManagerConfig);
>> *if *(userManager != *null*)
>> {
>> InternalSessionManager sessionManager = repository.getSessionManager();
>> *if *(sessionManager == *null*)
>> {
>> sessionManager = *new *SessionManager();
>> repository.setSessionManager(sessionManager);
>> }
>>
>> sessionManager.setUserManager(userManager);
>> }
>> }|
>>
>>
>> Note that this must happen *before* the repository is activated!
>
>

--------------040108060602080704040809
Content-Type: multipart/related;
boundary="------------040706020101070408070109"


--------------040706020101070408070109
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 8bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
Hi Karel,<br>
<br>
Forgive me my high-toned jabbering, with "inject" I was just
referring to "call the setter", as in:<br>
<br>
<title></title>
<style type="text/css">
<!--code { font-family: Courier New, Courier; font-size: 10pt; margin: 0px; }-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- ======================================================== -->
<!-- = Java Sourcecode to HTML automatically converted code = -->
<!-- = Java2Html Converter 5.0 [2006-02-26] by Markus Gebhard markus@jave.de = -->
<!-- = Further information: http://www.java2html.de = -->
<div class="java" align="left">
<table bgcolor="#ffffff" border="0" cellpadding="3"
cellspacing="0">
<tbody>
<tr>
<!-- start source code --> <td nowrap="nowrap" align="left"
valign="top"> <code>
<font color="#ffffff">    </font><font color="#000000">UserManager userManager = </font><font
color="#7f0055"><b>new </b></font><font
color="#000000">UserManager</font><font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">userManager.addUser</font><font
color="#000000">(</font><font color="#2a00ff">"user1"</font><font
color="#000000">, </font><font color="#2a00ff">"pw1234"</font><font
color="#000000">.toCharArray</font><font
color="#000000">())</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">userManager.addUser</font><font
color="#000000">(</font><font color="#2a00ff">"user2"</font><font
color="#000000">, </font><font color="#2a00ff">"pw5678"</font><font
color="#000000">.toCharArray</font><font
color="#000000">())</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">LifecycleUtil.activate</font><font
color="#000000">(</font><font color="#000000">userManager</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">    </font><font color="#000000">InternalSessionManager sessionManager =  </font><font
color="#000000">(</font><font color="#000000">InternalSessionManager</font><font
color="#000000">)</font><font color="#000000">CDOServerUtil.createSessionManager</font> <font
color="#000000">()</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">sessionManager.setUserManager</font><font
color="#000000">(</font><font color="#000000">userManager</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff"></font><br>
<font color="#ffffff">    </font><font color="#000000">InternalRepository repository = </font ><font
color="#000000">(</font><font color="#000000">InternalRepository</font><font
color="#000000">)</font><font color="#000000">CDOServerUtil.createRepository</font><font
color="#000000">(</font><font color="#000000">name, store, props</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">repository.setSessionManager</font><font
color="#000000">(</font><font color="#000000">sessionManager</font><font
color="#000000">)</font><font color="#000000">;</font><br>
<font color="#ffffff">    </font><font color="#000000">LifecycleUtil.activate</font><font
color="#000000">(</font><font color="#000000">repository</font><font
color="#000000">)</font><font color="#000000">;</font></code>
</td>
<!-- end source code --> </tr>
</tbody>
</table>
</div>
<!-- = END of automatically generated HTML code = -->
<!-- ======================================================== -->
<br>
<br>
<!--WISESTAMP_SIG_92798_START--><span style="color: black;">
<div dir="ltr">
<div>Cheers<br>
/Eike<br>
<br>
</div>
<div style="padding: 5px 0pt; font-family: arial,sans-serif;
font-size: 13.3px;"><span style="color: gray;">Contact: <a
href="http://www.esc-net.de">http://www.esc-net.de</a></span>
<a href="http://thegordian.blogspot.com" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part1.07030900.03070208@esc-net.de" alt="Blogger"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://twitter.com/eikestepper" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part2.04090003.00050205@esc-net.de" alt="Twitter"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://de.linkedin.com/in/eikestepper" style="padding:
0pt 2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part3.03010201.04040409@esc-net.de"
alt="Linkedin" style="vertical-align: middle;
padding-bottom: 5px;" border="0" height="16" width="16"></a><a
href="http://www.xing.com/profile/Eike_Stepper"
style="padding: 0pt 2px; color: blue; font-size: 10pt;"
_service=""><img
src="cid:part4.04020105.01020909@esc-net.de" alt="Xing"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a></div>
<div style="color: gray; font-size: 13.3px; padding-bottom:
5px;">Article: <span style="color: blue; text-decoration:
underline;"><a
href=" http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html"
undefined="">What exactly is inside that p2 repository?</a></span></div>
<div><br>
<a href="http://www.eclipsesummit.org/"><img
src="cid:part5.02070905.03040000@esc-net.de" alt="I'm
going to Eclipse Summit Europe 2010" border="0"
height="100" width="130"></a>
<br>
<br>
</div>
</div>
</span><!--WISESTAMP_SIG_92798_END--><br>
<br>
Am 26.08.2010 14:44, schrieb Karel Gardas:
<blockquote cite="mid:i55niq$6ou$1@build.eclipse.org" type="cite">Eike,
<br>
<br>
sorry to bother you again, but to be honest I don't know what you
are talking about. I've found that that some kind of "injecting"
is available in Eclipse 4.0, but I'm using 3.6 here. Also I've
found that service injection is possible with Riena framework, but
I don't use this and I don't know if this is required for this
task. Also if I try to set user manager manually on the
InternalRepository type, then I get access denied since the plugin
does not export this class. So could you be so kind and let me
know which of those 3 ways was the right to follow? (1) Eclipse
4.0, (2) using Riena or (3) using just an API but with some clever
hack?
<br>
<br>
Thanks,
<br>
Karel
<br>
Eike Stepper wrote on Thu, 26 August 2010 05:49
<br>
<blockquote type="cite">This is a multi-part message in MIME
format.
<br>
--------------020102020606090204030807
<br>
Content-Type: text/plain; charset=UTF-8; format=flowed
<br>
Content-Transfer-Encoding: 7bit
<br>
<br>
    Hi Karel,
<br>
<br>
Just inject a user manager into the session manager of your
repository. The following example is taken from
org.eclipse.emf.cdo.internal.server.RepositoryConfigurator:
<br>
<br>
| InternalRepository repository =
(InternalRepository)getRepository(repositoryType);
<br>
repository.setName(repositoryName);
<br>
<br>
Element userManagerConfig =
getUserManagerConfig(repositoryConfig);
<br>
*if *(userManagerConfig != *null*)
<br>
{
<br>
IUserManager userManager = getUserManager(userManagerConfig);
<br>
*if *(userManager != *null*)
<br>
{
<br>
InternalSessionManager sessionManager =
repository.getSessionManager();
<br>
*if *(sessionManager == *null*)
<br>
{
<br>
sessionManager = *new *SessionManager();
<br>
repository.setSessionManager(sessionManager);
<br>
}
<br>
<br>
sessionManager.setUserManager(userManager);
<br>
}
<br>
}|
<br>
<br>
<br>
Note that this must happen *before* the repository is activated!
<br>
</blockquote>
<br>
<br>
</blockquote>
</body>
</html>

--------------040706020101070408070109
Content-Type: image/png;
name="blogger.png"
Content-Transfer-Encoding: base64
Content-ID: <part1.07030900.03070208@esc-net.de>
Content-Disposition: inline;
filename="blogger.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/I NwWK6QAAABl0
RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADkUExURf9xEv9m AP////9lAP+Q
SP9kAP9jAP9fAP9nAf9vD//x5/9hAP/iz/9iAP9eAP/s4P9vEP9yEv9qAP9q B/+LRP+we/90
I/+RSP/z6/+jZv/y6P+8kP/59f5yE//awf/Ttv9hAf9nAv/17v+4if9sC/9o BP+bWP/r3v/k
0v+wfP+QRv/o2f9gAP+OQ/93HP/l0/+0gv/Rsv/9/P/j0P+pcP+0hf/dx//D m//+/v+td/9o
AP+NQv/Yvf+zgv/x6P/q2/9xG//p2f9pAP/s3//8+fxxE//ex/+AK/9oCP/j 0f/Uuv///4Xw
StcAAABMdFJOU/////////////////////////////////////////////// ////////////
/////////////////////////////////////////wCejeTMAAAAsklEQVR4 2kSP1w6DMBAE
7cMGQg0hvffee++d//+f2IaIeTlppNXtIo88UAjxEIlhjCUG5lwJQuwoulqh FuUGcWGSiTF7
bt40EEoXBKtyIPQS5PffFqyHlhCS2obTK5kDmJ8lXxgA0zsPXer0L3zSUVmI D9ip3SC+hKwQ
2CxCtXYYL25gu1S8bf4jib5fTM+MNE079jom/+KwJUojwnAVifcQ46jM4M23 BHmkEK53iPcT
YACE/Q4KzoVQVwAAAABJRU5ErkJggg==
--------------040706020101070408070109
Content-Type: image/png;
name="twitter.png"
Content-Transfer-Encoding: base64
Content-ID: <part2.04090003.00050205@esc-net.de>
Content-Disposition: inline;
filename="twitter.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABxUlE QVQ4y4WTMW4U
QRBFX3X3zoy8FgZphTCYAEg4gAPEYbgBJEgEXIALkHMfAjIwItnAAfLK2JYB r3dmuj7BzI5m
2WBLqqzq//q/fxt9NTmrzo7MCIhgRpWSsaMSgEta5czcjYtWTKPxfALZXTEE 2wmAxLXD11VL
BZy2MAuJB/iuA3oAoJb4lUUCVkAGTM5t06gjATMjBiPFaFsADvx1MTFoBd/q zHkMeLcLgCEe
JqjbrCJ1IAkghGDz20Z/XEzMMMTnZTsSYANMAl7fq7YlZOBaUCCk4WowwyRA mBmL7CxcmwDu
rh+rzKU71YhQ/dnr8VbiaRF4MgmbAAZkxJU7lRk3Wby5W3FcJlbSICAjZjFS jJ42rSXWgoWL
fYPfLvaCMTVxJ0XoJTmQ/stF6GPABDhzcepi7uJ74yQDuXcDErjjGhkwNvHx xCjMOMkCg3eX
S85zyVEMtGt24GWVxvsM5yi3+nBV8/7iBmJv0gaZQMZhNL4cHXBYdDkY7HQL vD0oebVfQuud
a8FGHSAaP1vnpMmbHgDEECwafLq/x8fZlGfJKCVKiapvXLyoEsdl3JYwBMpd uW1YEjlz4aMh
AY+iURiU/Vf/B6EE4kjfs5YLAAAAAElFTkSuQmCC
--------------040706020101070408070109
Content-Type: image/png;
name="linkedin.png"
Content-Transfer-Encoding: base64
Content-ID: <part3.03010201.04040409@esc-net.de>
Content-Disposition: inline;
filename="linkedin.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACGklE QVQ4y6WTO2sU
URTHf3dmdp0kTnZJzErSrPjKYqNY2GljodhoLRLB1sLCD2DrZxAsfCAE/AaC grY+SBQSFTSC
xizGzZ3MTiYz92UxY5KNYuOBP+eew/3/73lwxfWHT9yjuR8YL0CwyxygAAPo Cqr0ntFcvjBB
cH++x8WzJzm8v/EnWVdks0PEgNWO95/XePD4HZ4ADk6MAhD6Hs26/08yBjwr ODrZBK0JADyv
LP7GsX2Evse9xR5Lsvgr+XfsO7ctoKwj9AWh7wEQIFCF+3sFGjCmgiJwQFwY Yge3X3cZrwXM
r2SDg9tJ1rokaw1alRXI3NAO61w60AAHTkE7qtNu1PjSUywsb3L60AgjNcHz hZgXb39WApoA
C3FqsIGjMxYC8OZbxlQU0GmFTLdCznWireV0pobYSDKevuzilMZDg0wN/cxu XdrMLVqX53TT
cu3OJ87cmmdlrQBgemoYKTMwqhSI+4Z0QMBhjANgcTnj1UdJHGd8Xc0AmBit Ecu0moGGODH0
h7cF8tyidSmgjSWWG6AUWpkypw1xLwXA4z8tQINcN/T3moEWtLZbr0mZQV5s 55RFJuU8RHR1
1iWtIzQ8nxOtIVCw9D2lWbM06w4ZZ8wtrEJRcLw9TDMUyKRg7kOPSHQR0ZVZ lyRjMDkOOVAU
FfLS57viHRaJLsHM+THuPtuDUgLTW2U0X672t47rrw82vOu/z9w8xS+MkDzV Boy6+QAAAABJ
RU5ErkJggg==
--------------040706020101070408070109
Content-Type: image/png;
name="xing.png"
Content-Transfer-Encoding: base64
Content-ID: <part4.04020105.01020909@esc-net.de>
Content-Disposition: inline;
filename="xing.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsT AAALEwEAmpwY
AAABsklEQVR42mP8//8/AymAEb+G1x9333hU9fffZy52ZTONrQQ0/P7z7sLd hJfvN7Mw80mL
ROkqTodqAIKvv379+fuXhZmZh50dpv7f49dLLt1LYWD4ryRZCETsrJIIDYdu 3y5fu16AizPE
0CTFzgoo8fPXoxPX/T9/v8DHbWCito6LXRHFDw/evnXpm3D39Ws1Eck9xVmy wqLP3/SevlXC
ysKtLtuoJFmMxdObL17ymzqN8S9LnZddua/VrUcWD149FRNwNFFby8oiiEXD itNnImfN5WTi
nBhu7Gvw5OLdiv+MQnqKU6WEI7AE6+vPnx17+68+fmGrJL0wRe/rl/jbL94r isfqKs1kZuJE
1/Dt16/27TtatmzjYeZcnuZpqnDi3J16FmZxYDhKCAViibiVp8+Ur1v39N0H X12DFRkJ33/u
O3LVk+E/i5xYqq7iNCwaXn769PLTZ0ZGBnFePjE+3j9/3155kPvk9XIudgV9 5XnCfI6Ek8a7
T4dO3vD4+++HlHC4kepywhr+/P0ITEIPXk5jZxXTVpgE1EY48X36euHs7fBv P+8CVespzYGH
FSOpyRsAAuDh4a3m5z0AAAAASUVORK5CYII=
--------------040706020101070408070109
Content-Type: image/gif;
name="130x100_going.gif"
Content-Transfer-Encoding: base64
Content-ID: <part5.02070905.03040000@esc-net.de>
Content-Disposition: inline;
filename="130x100_going.gif"

R0lGODlhggBkANU/AAI6m5unzAFEnevmBBdYp26MwSdhrezv9ShbpkdJl8zT 5iosTk5RczdZ
pUxws4+Vujlhq296sauxNTZpsY6cUjtLl0pBjWmLbMzM3yVUngxDnzQ/j1B0 fjRTnm1skRRN
oxsaNCVKlb3I30JPnEY+iQVRojY+ZzhskyVDhEdbok5DlIh+smNfLmNYlS5l r1dSmztQhUZa
iV1eg93b6MTJIx5eq0xMfdvh7UJAaGtipL24E7W50CtOm4CAWP///////yH5 BAEAAD8ALAAA
AACCAGQAAAb/wJ9wOLwVPoCkcslsOp/QqHRKrX4KN6J2K1RkqmCpZqwJm8/h jIi7PUDQ6DJ5
Dq/bmZADWzgrA/x/UXODhGR/hYViSoB3jRozbApJiJSVlpeGTH6DjZ1KCm2T mKOkcyGnIaVj
nncCSXpESKqzlai2qKSscAKGH0QBh7QaJ7QoY6c8PB3Lyzy4l7pVAtPTnAFD wmMfIRIcGbMo
yB0NDSnm5B3OqBvsKO7vZa7RT9TUiEIPwZcZ32QcNANocPhA8EOGDgUTEtQW okKFcSkcSJQI
oVyKFi1e2MBhomPHBSBNoJiXZBqAevYQAbj2BZNBChcyfCBDYYCEhBk4SOCn MCGy/xHmHEQY
SjTCihw5ZGzEwdEjyKcLRupCibJQQQ0ZfuirlKHmAAoyCV44EbPgBYASTvQs GEJZuRwRCjyY
S3eFBxkyGCz1aAIq1JN1qAq2mrCMVlIcAqpdWzADwIGMt/EoJ3TFgwA7Mgd4 YBevXqZ8/UJF
QZWJ4NODCSlcJQnRWg6wIUc+wSHGBVQ920IUelnEDAUiNtu9+7npR9FPSaNe vnxQ5FXAtEWe
Tp0tboK6G0iUu2PGjRsYhHsgvtcp8uTM01eVPn1VAQDTM1yoTr/2LbfbA/i+ MWOHePKgmSca
COipl54G9M3kHnyMcUABDWMluBZZNFDAgTrZQSAUZhhgIP/CDnMNl1d5CzCA wQN+MeABDk9p
YCBq7FU3hivvRfaPTYtJWBABCHh1AQHbNFQBUA6sEABm/oU4nmckMuDDDgSC BEIAPqwQpXIv
olQCggm6aFKNjBEggQQU6PgBAWimecGYCKBpEA9DRmTZkSGuEMGSxTVV4pNR giTDAwyAEKWX
WQpQQglrpQlkYfUAAOZaCJxAAAeL0qdompKeICma/ByUQg4rWBZqqEvaYINe fTnlJJRQCeoq
SFgKsBBqiH5Qq0JpIoBAWASh5CiDCV0qLJCX7jjssQRkUIACBxwwwwPjRXvX nzM0i8EKfYG0
ap8gyLBDoAQSWMARWBwgggOETkP/wAM3HHDDDg4Ei6YDOzQ7QwFh+foesgTU UAMC/+oqsMAG
FGzwwQgb7MKuOzz5QL1V2iDDkjJg4MMBmR3ggwcLdLRtSAs8sHGfC8zgQ7si iOCDDxEgqI3K
IAZwgw8phNBpBg64O1fDO6SiLwCXBmwABAW7YLQLEySt9NITTOT00xNBQGUE KHQkg7s2xDCx
t09mawK0JtgAgwdPdmzq1xt3zBQOJgcAgzseNPv2KQWw/A4KEcSAQjI8pGBu B++ITHW6jmpw
7AkU/Ovv4jXwi6y/FvJ4QABVm0CCCVQysABTDLi7QJSvgoQDn6Cv4IMMrgqq wA1vvzM1CrbW
TXU4yPCQ/wGaEdB8dwgYh9NoAYan6a8BZ9nEAdJMJw318hNFIEFAFNQdHmYf muyBCTHEYPoO
apsqtqljlx22DWhzPD7bB8BgAgxv1/2ACafk7kMAeb/NfgXJNHwknSIrEA6h hRuWCwBCAQP8
K2EF0xXjFsgpfiRmADFwwMk6NIMKzgADgQIJ2R5AshTx6SkgMB3qwgWCas2t BAKAgA8eEI5D
OWBmK1NABDqFpoYpQAEdSllw3AFA4ClqcYi7wAWOlrwiLk0iSatIBy5AAQvl DkVhe4FGPIID
GOQuAN2LgffEJgPx4YB8IvMACEzQFBPS7gO5WwHtTjG2h63MAW3Jnw/0BgNU vP/DZ18KHpoW
V7AaHO2PyDOiIJXmggw0wAcK6IgNMNICr5mgczMISYCa8rGPhJFk3pkbQajk AdrtKgTvyN0O
9sYP2aGgjqdwxyl6qMd+MQ5hgIylLGdpAH407H02QIoHVsAAvqjMSk8ZT8f2 xKqniBCT6TNG
CSaASFV+wAEICBLe5kfKDKjwBnoLga0yQAzC+XCPw1MYEQfJPAcoDYnMSIEC EEk9jcngfAww
2Yl2MDNscaSL3FNb+Qj0kXW+Sz8XS4EqQ9AwETygAFQ6QAzWl4wQyI9+EaDS A2ZEjQCCc4EG
4AACN3qwBdbgBAb8VwZ4AAOZrcxZKPILDgKgsZOhKEr/bOMg6DwwA3C5CgMY a+kOBHoKWyGA
pSfdKfs6ALBkOUBlJw2AQG1V0W969KNr4gBIOUrVj+pkLLsaKSjDhpGNIIef fRGUX0InpdQJ
SgTpg0H2BmqrEhAgBGrNHvtg0IEMFPWtIcheDFrXwqYa7qk1KJ5AqErYEzxv ABfQFT94sIGO
kMAGL2gBiwZk1rF20KwgQAFa+YqbQ7mVH2wcqgIbxylQ3lGbv9MAYGtgABpU iLCwvUBAALYr
OG2ABLhFClIme57eWjZ1H2CWJgviWUXdTGCLS9NaDpXa1ZKFLLAl7FikioBk OKQCG6iABVow
qkb69rtldRXsMPO2tnr2UD9c/62izsteFNJItatlbXSjW9vr4u+6CRjVCmwA 3u+alSAZgKs2
2+tW4ak3TQT2bB7jK1+DXUCjsIVuAg/SDL51gAM96IEMXjCqFfX3PGYNQZoC LOLbsdfAB0ZT
gpn7XgYbDHGuHcvBXDDjNVXoBBS2q8AyEAOAAGQAGx5VDnj74fAKCgX8UJRB bHLii/IxpKRV
8YpRWDgGD88FPqKxg7VcMNl+ZRm6Mphia9KDEciAAjKwAIdDNWTwivVzZkVB VqOMJpigl0zp
TfGUD1VlF3d5TBDO6INgomXDwgSBAnteDGxrARXYoImhyjALQMKCHuCgBxKY NAsk0AM4g4AF
k+6Bhf8QgOECqokDJahBTSBEKVfqecrvdfVqCwZSF0zVAIYNSKA1heuN6qom OojBBixAbBnY
BFTPowBInvfjAehgANDWgaue3ezD2gRNJ2DyCX5cIRQDFsFT7rOVG4wwCoyJ y7DVVQcOSwEb
OMTYElDBC2pCgRzY4Hk6WAALoD3pZ4v1eRJYIrQ5gABoNy7bEjgUwoUV3/Wu OIDjJvfBQDoB
dKdbVz2AtgRiUAF4q8ACGa93Dp7Hgk/bRFDPxsEGRqBoUiO2YAAx4MJLgPAC e9ujDk+wRcc9
355/MgbJ7rhNiJ3xHsj7eTIggbEpcNtnx2AZzyNqYiAc849emwA1t7mTnwr/ bgJDnOc9py/f
YmATHsD7tmRWgQqQrgIPfCUBLIcg1Acg9QFodIADkPnVaz4sBnedvV+3ctij WxtdJYYCZne2
DTI+gB4kIAFIT4DbKTCk541gHM9rQEa/YgC8610CBw/I4xr+dz5/U9azHjxH O4CWwy563dAO
SOMrD+QKTH5IAFlGAwDSABccvvNVR7i/EOBjChzL76W36Naf2kfVI2wZDmoi VvkRgwzLoPoy
GJIMylwB7EP/AkQl9fFsbaEuX8CAxOMAEJvY6uOTngDnVb4rUf9K5yPsIAhI mMCSwYz++9//
AxNLCUNnjOM4y8dA4CZ/gmd/BoN/vlZdRPV/zEAO/xTYAATTeYCEQARYgAaI fGgifwcYTgxo
AAhAVFRVggODABW4ghaYfxg4S0aDMHSGeo5jZWmiAacXgvXnfCVIWAuDAFw2 MBQIAUQIg7Qk
g0HDWv7SgX6Hg63kZ/bXg1RFY0BohLJUcVZ4NAMYZeGUXKNXf4zjhHkGWAwo hbBUNEaTf7M0
SFiYhRbXR1xIbkv4hXJYA2I4hh4VhS6IQBm4hmzohjHIURhlMHPofjt4hzeX h6q3hxwVgzDI
hoR0hRkoiDsIhzOYiP6CiJg4iPPFiAkDiJAYiYC0NH8UdloIZYa4OJqog09G Xz6YhaEoioHE
NKXYc6cIZTPoUasIdrDlAP8B4ACN+Ijk9IuxSIuB+IYvKE63iIC6mIOsKIIb RSUGUDcFwIew
KEjUWIy06AC3CEtWSIjxtYrPKHEII43MNAHBeIXauI4TcEPd6I3faInN2Ep7 RH/DF2YcJY0G
oAAFc0NUYgTNUgCxBFQqUwBNg1TnMgHZSCUsdQAGOQENYy4+wDRUsjJGA1Q3 AIzK+EfGiG7z
mIqKg1yeeDD6aDDrdCQnUwAHoACAVDcBMAFUYpBoJRHmopA+YJBUIgIqqQAw eZNHNZFM444u
IDIyeQCfyJEd6ZGq6IyJmIIiyYgl2Y/8SI0uIJRHQyVJk43zkzRYuZA+YE43 1I482ZPJE5ZV
yY//03iT1mg0yVOLJAgwdsiUaAKXCuSUdqkrUbmPU3mTZwlIWGmTBrmVZOmV SROWYUmWQcmT
fZmW1biWs5g0bqlA4sgpPHKXlvlTPpCCN8SYetmSPmBQM1OUQlGThCmWPXkk GlOWByARRDkB
aDWFSAmZk6griHg7yXJcl2mXVKKZCoAA1NiZR0OEERmTB7kyCUmYEBCWDrBO CtAwyfMAGiOQ
GKmRb3mBaMiWEwABSQQBp4gATngz4BmeuTmedkmE5gkBBeAAEFAv2UmERaSd 53meBaAhwCFI
50kwl3mdLmCe7VmEP/id4Rmg/ECeBKor8QkBaOVSB7qgC7qcxjmf8Lk0/+fZ guRZMNzJoOZJ
m8AjoBwKngWagiyIoSI6oiQ6oRRKoCUKAQDaoQKqWOTJgjCaojI6o+TwoQhA ouSwoizKoiDq
iwVADpsBoxU4o0ToAOOinkNIpBQIZimIUNAEog0gojkKPKewo50iPyvjAxLY AC5JDogkpEma
og0QAS11kyEqpg3ADDomMDEpME86pAs6pQBwC20xUrZzp3cqSkSxpV3aAQUQ AWAqpPHJgioT
AejpADFaoujQf0tqpBDAD18aqCuIg3N6H3xzqXxzRf6nkivzAH46P8uASMtw khfzAOQAnZ1K
DmRaqiy4TjtQgV0ak+j5mRqTGRejnsk5P6WqMf8BAKQs0wHrtDLjIKlySqdx hKmZyk700wES
5JB/2gGa2gGiCqwXk1ApcEjO+qMNEJAzc62welLaGqs3mQJ18yQacwMqo1Tq dDJIBVRpOjXM
ejIRMIGSSqnGiqyXmjs3cEOeKlH9F63Tuk4p0AENM6/naqpcejHMYqYryKlm Kq4/Wjc7tU5G
Oj/mILCauk7LAK/SqgCMWq/vYazHiqzRurE3+a+g2rGjqqUdAK8pgJFjqqy/ iA4VmAI2lLC9
GpM4u67karHrCq2gqrEt+6sq+39gaq8ie6z2dUVL6wMzEBQVwLRFu04R4DcH MLARABQao7UH
kLUOkAIjELZhm7VA8Zn/I5A7BhWdOyuwLnmxWpqxLMuxtzqw/he2FmEOKWCv a4QK9tW3WLoy
EVABDbMyARC18+MQiBS269RSDxC2WTo/YYuqgCu2iruSGpO1frMyJlO1bcu2 PrtOZxu0cUu0
wTqv/Ue5qEupKMAOrJtdDuG69nW2RZECDpECQ1G7EZADDjEUI1ABGJsDYmu7 uUu5wgu8qBtR
R+IAwRsBElG1QMG8tlsA5lAAOWAOvGu7DhC1ZCsUtLu7gRu7qEu5lNq65MsO fXu+6Ju+1wW6
4du+7vu+8Bu2eDu/YIu61xW+6Ru/41u+5au+/tu3Ysu7YTsk8VvABhy+eHvA A6y+77u//Eu+
/9hlvv9rX49XwRZ8wY8XtnCnwO0rwJTrwe9ru8Zrv//bvg78wA+cvo/LMhjc wi7cwhpsweFL
pszStWGbA86ykgFMtWK7ApYbAO2bAOmbweF7wijcv337eE5LFC/wwk78xE/c xI9nLoorAiPw
ApMTthxWJSOQAFgcAAmQOxHgxBUAxQmgAcBwxKyLW2yMW8T2xhaQAD6AARds MUpMxwlgMVOT
AKg6OY+HthqDAVJckYL8wjMgAl68Qo/XHRVsOivweKaTA1MMxmbsxACwAwDA xrfFDm3cyZ5M
AnB8MpvxAHFsx3KMxxZzAwGAFE67AirzAGG8Mt0xPwnAkAzpwoITy/9jXMs+ 0MhV8nhUUsEd
UsmWfAMacFufnMxtbAFsTGwX0yEBQGwWE8dznAAWYDEvQGxU8sgvUM1XlAA5 UM0W0yHVjMHQ
+ci6DMy9DMm/zMvCjMfEjMEVoAE/4AAooMz43MnOjAFwfM0+oGZzLM3/rM0s 83FzrAJXpHbi
PD90onYW/AAzIMmP182wnACMzM7oHMkqkAB+XMlqt9GPt9Eb4AA/IAKZnM8o vc/9bDGuHND+
/MZo+wIMaQExzZAqQCU7oHY58NFqZzoPMBQ7rQIe4sWT89GOrHZfrALhHAE8 3dRO/dQqAABr
8AMdgMwojc8WsMKkLDJO69LT/MaD67TZnDv/LTUDLyBvFrMyGNDUFanWOp3D a23UVWLUB4BT
AQDVeO3UG9AAQyAJV+3JzAzKxFYUEdACxAYXNJ0Dhx0B/dwCuQvT8wMXTQ0X TJ3XTX0Uli1v
mJ3Zlg0AoDAEVPPXydzPpF3apg3HT9RonL3arN3aTo03W9AAVi3a+nzatm3a L1DYcOzavN3b
T70BKcAFWnrPtL3Mt33cyK3avr3crL0B0roHDgAAs+3GgU3dyX3dt83c2r3a GwAAJL0HQrAD
ZWDV2F3e173d6I3XGzAGOwDeWvAAPJAEq6vG9F3f9n3f+J3frWsMAMADD+De bHAAP02sBF7g
Bn7gCH7gEQCd7h0EADs=
--------------040706020101070408070109--

--------------040108060602080704040809--


Re: [CDO] CDO server hacking, where to start? [message #555721 is a reply to message #555428] Fri, 27 August 2010 20:06 Go to previous messageGo to next message
Karel Gardas is currently offline Karel GardasFriend
Messages: 33
Registered: July 2009
Member
Hi Eike,

no need to appologize! You have helped me a lot and finally I've been able to get this beast working. The only issue seems to be when user is a bit reluctant to type his/her name and password quickly he/she will get timeout exception. But this is just small issue for now.

Anyway, now another question security related: does CDO/Net4j already support TLS as a transport layer? I guess nobody likes sending his/her password unencrypted over the network.

Thank you very much for your fantastic help!
Karel

Eike Stepper wrote on Thu, 26 August 2010 10:44
This is a multi-part message in MIME format.
--------------040108060602080704040809
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit

Hi Karel,

Forgive me my high-toned jabbering, with "inject" I was just referring to "call the setter", as in:

| UserManager userManager = *new *UserManager();
userManager.addUser("user1", "pw1234".toCharArray());
userManager.addUser("user2", "pw5678".toCharArray());
LifecycleUtil.activate(userManager);

InternalSessionManager sessionManager = (InternalSessionManager)CDOServerUtil.createSessionManager() ;
sessionManager.setUserManager(userManager);

InternalRepository repository = (InternalRepository)CDOServerUtil.createRepository(name, store, props);
repository.setSessionManager(sessionManager);
LifecycleUtil.activate(repository);|



Cheers
/Eike

Contact: http://www.esc-net.de Blogger <http://thegordian.blogspot.com>Twitter <http://twitter.com/eikestepper>Linkedin <http://de.linkedin.com/in/eikestepper>Xing <http://www.xing.com/profile/Eike_Stepper>
Article: What exactly is inside that p2 repository? < http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html>

I'm going to Eclipse Summit Europe 2010 <http://www.eclipsesummit.org/>


Re: [CDO] CDO server hacking, where to start? [message #555799 is a reply to message #555721] Sat, 28 August 2010 21:07 Go to previous messageGo to next message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6682
Registered: July 2009
Senior Member
Am 27.08.2010 22:06, schrieb Karel Gardas:
> Hi Eike,
>
> no need to appologize! You have helped me a lot and finally I've been able to get this beast working. The only issue seems to be when user is a bit reluctant to type his/her name and password quickly he/she will get timeout exception. But this is just small issue for now.
I think this is a big issue, but maybe not for now, as you say :P

>
> Anyway, now another question security related: does CDO/Net4j already support TLS as a transport layer?
No ;-(

> I guess nobody likes sending his/her password unencrypted over the network.
I guess so, too :P

What you really seem to think is that the following implication is true:

technology X does not use TLS (SSL) => technology X sends passwords (plain text or not) over the wire

But certainly it is not. CDO authentication does use a Challenge/Response protocol for authenticating users. Only a random token is transmitted over the wire. The process starts in org.eclipse.emf.cdo.internal.server.SessionManager.authentic ateUser(ISessionProtocol) and is continued on the client side in org.eclipse.emf.internal.cdo.session.CDOSessionConfiguration Impl.AuthenticatorImpl.authenticate(byte[]).

To become active this "protocol" needs to be given an IUserManager on the server side and an ICredentialsProvider at the client side.


>
> Thank you very much for your fantastic help!
> Karel
>
> Eike Stepper wrote on Thu, 26 August 2010 10:44
>> This is a multi-part message in MIME format.
>> --------------040108060602080704040809
>> Content-Type: text/plain; charset=UTF-8; format=flowed
>> Content-Transfer-Encoding: 7bit
>>
>> Hi Karel,
>>
>> Forgive me my high-toned jabbering, with "inject" I was just referring to "call the setter", as in:
>>
>> | UserManager userManager = *new *UserManager();
>> userManager.addUser("user1", "pw1234".toCharArray());
>> userManager.addUser("user2", "pw5678".toCharArray());
>> LifecycleUtil.activate(userManager);
>>
>> InternalSessionManager sessionManager = (InternalSessionManager)CDOServerUtil.createSessionManager() ;
>> sessionManager.setUserManager(userManager);
>>
>> InternalRepository repository = (InternalRepository)CDOServerUtil.createRepository(name, store, props);
>> repository.setSessionManager(sessionManager);
>> LifecycleUtil.activate(repository);|
>>
>>
>>
>> Cheers
>> /Eike
>>
>> Contact: http://www.esc-net.de Blogger <http://thegordian.blogspot.com>Twitter <http://twitter.com/eikestepper>Linkedin <http://de.linkedin.com/in/eikestepper>Xing <http://www.xing.com/profile/Eike_Stepper>
>> Article: What exactly is inside that p2 repository? < http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html>
>>
>> I'm going to Eclipse Summit Europe 2010 <http://www.eclipsesummit.org/>
>
>


Re: [CDO] CDO server hacking, where to start? [message #555899 is a reply to message #555799] Mon, 30 August 2010 07:10 Go to previous messageGo to next message
Karel Gardas is currently offline Karel GardasFriend
Messages: 33
Registered: July 2009
Member
Hi Eike,

I've used user/password scheme for noting TLS importance since this is just most understable to majority of users. What we need is integrity and confidentiality assured by the transport protocol and usually TLS is the way to go. Is there any plan to implement TLS support into Net4j? Or is there already any proposal/rfe how to do it? Certainly we're interested in this support and we will probably need to do something in this domain if nobody else is faster... Any idea where to start/how to do this is highly appriciated here.
Thanks,
Karel

Eike Stepper wrote on Sat, 28 August 2010 17:07
Am 27.08.2010 22:06, schrieb Karel Gardas:
> Anyway, now another question security related: does CDO/Net4j already support TLS as a transport layer?
No ;-(

> I guess nobody likes sending his/her password unencrypted over the network.
I guess so, too Razz

What you really seem to think is that the following implication is true:

technology X does not use TLS (SSL) => technology X sends passwords (plain text or not) over the wire

But certainly it is not. CDO authentication does use a Challenge/Response protocol for authenticating users. Only a random token is transmitted over the wire. The process starts in org.eclipse.emf.cdo.internal.server.SessionManager.authentic ateUser(ISessionProtocol) and is continued on the client side in org.eclipse.emf.internal.cdo.session.CDOSessionConfiguration Impl.AuthenticatorImpl.authenticate(byte[]).

To become active this "protocol" needs to be given an IUserManager on the server side and an ICredentialsProvider at the client side.


Re: [CDO] CDO server hacking, where to start? [message #555925 is a reply to message #555899] Mon, 30 August 2010 09:09 Go to previous messageGo to next message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6682
Registered: July 2009
Senior Member
This is a multi-part message in MIME format.
--------------070209050808090508040706
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit

Hi Karel,

I've always wished we had an SSL-based IConnector and occasionally people offered to write one. Unfortunately nothing ever happened and I know of nobody currently working on this ;-(

As usual I'm offering you my help to understand details of the design or the implementation of other IConnectors, if you're going to start writing patches. And of course I'm looking forward to review and eventually commit your patches.

Cheers
/Eike

Contact: http://www.esc-net.de Blogger <http://thegordian.blogspot.com>Twitter <http://twitter.com/eikestepper>Linkedin <http://de.linkedin.com/in/eikestepper>Xing <http://www.xing.com/profile/Eike_Stepper>
Article: What exactly is inside that p2 repository? < http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html>

I'm going to Eclipse Summit Europe 2010 <http://www.eclipsesummit.org/>



Am 30.08.2010 09:10, schrieb Karel Gardas:
> Hi Eike,
>
> I've used user/password scheme for noting TLS importance since this is just most understable to majority of users. What we need is integrity and confidentiality assured by the transport protocol and usually TLS is the way to go. Is there any plan to implement TLS support into Net4j? Or is there already any proposal/rfe how to do it? Certainly we're interested in this support and we will probably need to do something in this domain if nobody else is faster... Any idea where to start/how to do this is highly appriciated here.
> Thanks,
> Karel
>
> Eike Stepper wrote on Sat, 28 August 2010 17:07
>> Am 27.08.2010 22:06, schrieb Karel Gardas:
>> > Anyway, now another question security related: does CDO/Net4j already support TLS as a transport layer? No ;-(
>>
>> > I guess nobody likes sending his/her password unencrypted over the network.
>> I guess so, too :p
>>
>> What you really seem to think is that the following implication is true:
>>
>> technology X does not use TLS (SSL) => technology X sends passwords (plain text or not) over the wire
>>
>> But certainly it is not. CDO authentication does use a Challenge/Response protocol for authenticating users. Only a random token is transmitted over the wire. The process starts in org.eclipse.emf.cdo.internal.server.SessionManager.authentic ateUser(ISessionProtocol) and is continued on the client side in org.eclipse.emf.internal.cdo.session.CDOSessionConfiguration Impl.AuthenticatorImpl.authenticate(byte[]).
>>
>> To become active this "protocol" needs to be given an IUserManager on the server side and an ICredentialsProvider at the client side.
>
>

--------------070209050808090508040706
Content-Type: multipart/related;
boundary="------------020608020002050806000507"


--------------020608020002050806000507
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 8bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi Karel,<br>
<br>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
I've always wished we had an SSL-based IConnector and occasionally
people offered to write one. Unfortunately nothing ever happened and
I know of nobody currently working on this ;-(<br>
<br>
As usual I'm offering you my help to understand details of the
design or the implementation of other IConnectors, if you're going
to start writing patches. And of course I'm looking forward to
review and eventually commit your patches.<br>
<br>
<!--WISESTAMP_SIG_44800_START--><span style="color: black;">
<div dir="ltr">
<div>Cheers<br>
/Eike<br>
<br>
</div>
<div style="padding: 5px 0pt; font-family: arial,sans-serif;
font-size: 13.3px;"><span style="color: gray;">Contact: <a
href="http://www.esc-net.de">http://www.esc-net.de</a></span>
<a href="http://thegordian.blogspot.com" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part1.02020100.02030404@esc-net.de" alt="Blogger"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://twitter.com/eikestepper" style="padding: 0pt
2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part2.01020207.05060009@esc-net.de" alt="Twitter"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a><a
href="http://de.linkedin.com/in/eikestepper" style="padding:
0pt 2px; color: blue; font-size: 10pt;" _service=""><img
src="cid:part3.06000305.00040901@esc-net.de"
alt="Linkedin" style="vertical-align: middle;
padding-bottom: 5px;" border="0" height="16" width="16"></a><a
href="http://www.xing.com/profile/Eike_Stepper"
style="padding: 0pt 2px; color: blue; font-size: 10pt;"
_service=""><img
src="cid:part4.02020002.01080408@esc-net.de" alt="Xing"
style="vertical-align: middle; padding-bottom: 5px;"
border="0" height="16" width="16"></a></div>
<div style="color: gray; font-size: 13.3px; padding-bottom:
5px;">Article: <span style="color: blue; text-decoration:
underline;"><a
href=" http://thegordian.blogspot.com/2010/05/what-exactly-is-insid e-that-p2.html"
undefined="">What exactly is inside that p2 repository?</a></span></div>
<div><br>
<a href="http://www.eclipsesummit.org/"><img
src="cid:part5.06070103.05090701@esc-net.de" alt="I'm
going to Eclipse Summit Europe 2010" border="0"
height="100" width="130"></a>
<br>
<br>
</div>
</div>
</span><!--WISESTAMP_SIG_44800_END--><br>
<br>
Am 30.08.2010 09:10, schrieb Karel Gardas:
<blockquote cite="mid:i5flgq$jbl$1@build.eclipse.org" type="cite">Hi
Eike,
<br>
<br>
I've used user/password scheme for noting TLS importance since
this is just most understable to majority of users. What we need
is integrity and confidentiality assured by the transport protocol
and usually TLS is the way to go. Is there any plan to implement
TLS support into Net4j? Or is there already any proposal/rfe how
to do it? Certainly we're interested in this support and we will
probably need to do something in this domain if nobody else is
faster... Any idea where to start/how to do this is highly
appriciated here.
<br>
Thanks,
<br>
Karel
<br>
<br>
Eike Stepper wrote on Sat, 28 August 2010 17:07
<br>
<blockquote type="cite">Am 27.08.2010 22:06, schrieb Karel Gardas:
<br>
&gt; Anyway, now another question security related: does
CDO/Net4j already support TLS as a transport layer? No ;-(
<br>
<br>
&gt; I guess nobody likes sending his/her password unencrypted
over the network.
<br>
I guess so, too :p
<br>
<br>
What you really seem to think is that the following implication
is true:
<br>
<br>
     technology X does not use TLS (SSL) =&gt; technology X
sends passwords (plain text or not) over the wire
<br>
<br>
But certainly it is not. CDO authentication does use a
Challenge/Response protocol for authenticating users.  Only a
random token is transmitted over the wire. The process starts
in  
org.eclipse.emf.cdo.internal.server.SessionManager.authentic
ateUser(ISessionProtocol) and is continued on the client side
in  
org.eclipse.emf.internal.cdo.session.CDOSessionConfiguration
Impl.AuthenticatorImpl.authenticate(byte[]).
<br>
<br>
To become active this "protocol" needs to be given an
IUserManager on the server side and an ICredentialsProvider at
the client side.
<br>
</blockquote>
<br>
<br>
</blockquote>
</body>
</html>

--------------020608020002050806000507
Content-Type: image/png;
name="blogger.png"
Content-Transfer-Encoding: base64
Content-ID: <part1.02020100.02030404@esc-net.de>
Content-Disposition: inline;
filename="blogger.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/I NwWK6QAAABl0
RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADkUExURf9xEv9m AP////9lAP+Q
SP9kAP9jAP9fAP9nAf9vD//x5/9hAP/iz/9iAP9eAP/s4P9vEP9yEv9qAP9q B/+LRP+we/90
I/+RSP/z6/+jZv/y6P+8kP/59f5yE//awf/Ttv9hAf9nAv/17v+4if9sC/9o BP+bWP/r3v/k
0v+wfP+QRv/o2f9gAP+OQ/93HP/l0/+0gv/Rsv/9/P/j0P+pcP+0hf/dx//D m//+/v+td/9o
AP+NQv/Yvf+zgv/x6P/q2/9xG//p2f9pAP/s3//8+fxxE//ex/+AK/9oCP/j 0f/Uuv///4Xw
StcAAABMdFJOU/////////////////////////////////////////////// ////////////
/////////////////////////////////////////wCejeTMAAAAsklEQVR4 2kSP1w6DMBAE
7cMGQg0hvffee++d//+f2IaIeTlppNXtIo88UAjxEIlhjCUG5lwJQuwoulqh FuUGcWGSiTF7
bt40EEoXBKtyIPQS5PffFqyHlhCS2obTK5kDmJ8lXxgA0zsPXer0L3zSUVmI D9ip3SC+hKwQ
2CxCtXYYL25gu1S8bf4jib5fTM+MNE079jom/+KwJUojwnAVifcQ46jM4M23 BHmkEK53iPcT
YACE/Q4KzoVQVwAAAABJRU5ErkJggg==
--------------020608020002050806000507
Content-Type: image/png;
name="twitter.png"
Content-Transfer-Encoding: base64
Content-ID: <part2.01020207.05060009@esc-net.de>
Content-Disposition: inline;
filename="twitter.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAABxUlE QVQ4y4WTMW4U
QRBFX3X3zoy8FgZphTCYAEg4gAPEYbgBJEgEXIALkHMfAjIwItnAAfLK2JYB r3dmuj7BzI5m
2WBLqqzq//q/fxt9NTmrzo7MCIhgRpWSsaMSgEta5czcjYtWTKPxfALZXTEE 2wmAxLXD11VL
BZy2MAuJB/iuA3oAoJb4lUUCVkAGTM5t06gjATMjBiPFaFsADvx1MTFoBd/q zHkMeLcLgCEe
JqjbrCJ1IAkghGDz20Z/XEzMMMTnZTsSYANMAl7fq7YlZOBaUCCk4WowwyRA mBmL7CxcmwDu
rh+rzKU71YhQ/dnr8VbiaRF4MgmbAAZkxJU7lRk3Wby5W3FcJlbSICAjZjFS jJ42rSXWgoWL
fYPfLvaCMTVxJ0XoJTmQ/stF6GPABDhzcepi7uJ74yQDuXcDErjjGhkwNvHx xCjMOMkCg3eX
S85zyVEMtGt24GWVxvsM5yi3+nBV8/7iBmJv0gaZQMZhNL4cHXBYdDkY7HQL vD0oebVfQuud
a8FGHSAaP1vnpMmbHgDEECwafLq/x8fZlGfJKCVKiapvXLyoEsdl3JYwBMpd uW1YEjlz4aMh
AY+iURiU/Vf/B6EE4kjfs5YLAAAAAElFTkSuQmCC
--------------020608020002050806000507
Content-Type: image/png;
name="linkedin.png"
Content-Transfer-Encoding: base64
Content-ID: <part3.06000305.00040901@esc-net.de>
Content-Disposition: inline;
filename="linkedin.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/ AP+gvaeTAAAA
CXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAQAAAAEABcxq3DAAACGklE QVQ4y6WTO2sU
URTHf3dmdp0kTnZJzErSrPjKYqNY2GljodhoLRLB1sLCD2DrZxAsfCAE/AaC grY+SBQSFTSC
xizGzZ3MTiYz92UxY5KNYuOBP+eew/3/73lwxfWHT9yjuR8YL0CwyxygAAPo Cqr0ntFcvjBB
cH++x8WzJzm8v/EnWVdks0PEgNWO95/XePD4HZ4ADk6MAhD6Hs26/08yBjwr ODrZBK0JADyv
LP7GsX2Evse9xR5Lsvgr+XfsO7ctoKwj9AWh7wEQIFCF+3sFGjCmgiJwQFwY Yge3X3cZrwXM
r2SDg9tJ1rokaw1alRXI3NAO61w60AAHTkE7qtNu1PjSUywsb3L60AgjNcHz hZgXb39WApoA
C3FqsIGjMxYC8OZbxlQU0GmFTLdCznWireV0pobYSDKevuzilMZDg0wN/cxu XdrMLVqX53TT
cu3OJ87cmmdlrQBgemoYKTMwqhSI+4Z0QMBhjANgcTnj1UdJHGd8Xc0AmBit Ecu0moGGODH0
h7cF8tyidSmgjSWWG6AUWpkypw1xLwXA4z8tQINcN/T3moEWtLZbr0mZQV5s 55RFJuU8RHR1
1iWtIzQ8nxOtIVCw9D2lWbM06w4ZZ8wtrEJRcLw9TDMUyKRg7kOPSHQR0ZVZ lyRjMDkOOVAU
FfLS57viHRaJLsHM+THuPtuDUgLTW2U0X672t47rrw82vOu/z9w8xS+MkDzV Boy6+QAAAABJ
RU5ErkJggg==
--------------020608020002050806000507
Content-Type: image/png;
name="xing.png"
Content-Transfer-Encoding: base64
Content-ID: <part4.02020002.01080408@esc-net.de>
Content-Disposition: inline;
filename="xing.png"

iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsT AAALEwEAmpwY
AAABsklEQVR42mP8//8/AymAEb+G1x9333hU9fffZy52ZTONrQQ0/P7z7sLd hJfvN7Mw80mL
ROkqTodqAIKvv379+fuXhZmZh50dpv7f49dLLt1LYWD4ryRZCETsrJIIDYdu 3y5fu16AizPE
0CTFzgoo8fPXoxPX/T9/v8DHbWCito6LXRHFDw/evnXpm3D39Ws1Eck9xVmy wqLP3/SevlXC
ysKtLtuoJFmMxdObL17ymzqN8S9LnZddua/VrUcWD149FRNwNFFby8oiiEXD itNnImfN5WTi
nBhu7Gvw5OLdiv+MQnqKU6WEI7AE6+vPnx17+68+fmGrJL0wRe/rl/jbL94r isfqKs1kZuJE
1/Dt16/27TtatmzjYeZcnuZpqnDi3J16FmZxYDhKCAViibiVp8+Ur1v39N0H X12DFRkJ33/u
O3LVk+E/i5xYqq7iNCwaXn769PLTZ0ZGBnFePjE+3j9/3155kPvk9XIudgV9 5XnCfI6Ek8a7
T4dO3vD4+++HlHC4kepywhr+/P0ITEIPXk5jZxXTVpgE1EY48X36euHs7fBv P+8CVespzYGH
FSOpyRsAAuDh4a3m5z0AAAAASUVORK5CYII=
--------------020608020002050806000507
Content-Type: image/gif;
name="130x100_going.gif"
Content-Transfer-Encoding: base64
Content-ID: <part5.06070103.05090701@esc-net.de>
Content-Disposition: inline;
filename="130x100_going.gif"

R0lGODlhggBkANU/AAI6m5unzAFEnevmBBdYp26MwSdhrezv9ShbpkdJl8zT 5iosTk5RczdZ
pUxws4+Vujlhq296sauxNTZpsY6cUjtLl0pBjWmLbMzM3yVUngxDnzQ/j1B0 fjRTnm1skRRN
oxsaNCVKlb3I30JPnEY+iQVRojY+ZzhskyVDhEdbok5DlIh+smNfLmNYlS5l r1dSmztQhUZa
iV1eg93b6MTJIx5eq0xMfdvh7UJAaGtipL24E7W50CtOm4CAWP///////yH5 BAEAAD8ALAAA
AACCAGQAAAb/wJ9wOLwVPoCkcslsOp/QqHRKrX4KN6J2K1RkqmCpZqwJm8/h jIi7PUDQ6DJ5
Dq/bmZADWzgrA/x/UXODhGR/hYViSoB3jRozbApJiJSVlpeGTH6DjZ1KCm2T mKOkcyGnIaVj
nncCSXpESKqzlai2qKSscAKGH0QBh7QaJ7QoY6c8PB3Lyzy4l7pVAtPTnAFD wmMfIRIcGbMo
yB0NDSnm5B3OqBvsKO7vZa7RT9TUiEIPwZcZ32QcNANocPhA8EOGDgUTEtQW okKFcSkcSJQI
oVyKFi1e2MBhomPHBSBNoJiXZBqAevYQAbj2BZNBChcyfCBDYYCEhBk4SOCn MCGy/xHmHEQY
SjTCihw5ZGzEwdEjyKcLRupCibJQQQ0ZfuirlKHmAAoyCV44EbPgBYASTvQs GEJZuRwRCjyY
S3eFBxkyGCz1aAIq1JN1qAq2mrCMVlIcAqpdWzADwIGMt/EoJ3TFgwA7Mgd4 YBevXqZ8/UJF
QZWJ4NODCSlcJQnRWg6wIUc+wSHGBVQ920IUelnEDAUiNtu9+7npR9FPSaNe vnxQ5FXAtEWe
Tp0tboK6G0iUu2PGjRsYhHsgvtcp8uTM01eVPn1VAQDTM1yoTr/2LbfbA/i+ MWOHePKgmSca
COipl54G9M3kHnyMcUABDWMluBZZNFDAgTrZQSAUZhhgIP/CDnMNl1d5CzCA wQN+MeABDk9p
YCBq7FU3hivvRfaPTYtJWBABCHh1AQHbNFQBUA6sEABm/oU4nmckMuDDDgSC BEIAPqwQpXIv
olQCggm6aFKNjBEggQQU6PgBAWimecGYCKBpEA9DRmTZkSGuEMGSxTVV4pNR giTDAwyAEKWX
WQpQQglrpQlkYfUAAOZaCJxAAAeL0qdompKeICma/ByUQg4rWBZqqEvaYINe fTnlJJRQCeoq
SFgKsBBqiH5Qq0JpIoBAWASh5CiDCV0qLJCX7jjssQRkUIACBxwwwwPjRXvX nzM0i8EKfYG0
ap8gyLBDoAQSWMARWBwgggOETkP/wAM3HHDDDg4Ei6YDOzQ7QwFh+foesgTU UAMC/+oqsMAG
FGzwwQgb7MKuOzz5QL1V2iDDkjJg4MMBmR3ggwcLdLRtSAs8sHGfC8zgQ7si iOCDDxEgqI3K
IAZwgw8phNBpBg64O1fDO6SiLwCXBmwABAW7YLQLEySt9NITTOT00xNBQGUE KHQkg7s2xDCx
t09mawK0JtgAgwdPdmzq1xt3zBQOJgcAgzseNPv2KQWw/A4KEcSAQjI8pGBu B++ITHW6jmpw
7AkU/Ovv4jXwi6y/FvJ4QABVm0CCCVQysABTDLi7QJSvgoQDn6Cv4IMMrgqq wA1vvzM1CrbW
TXU4yPCQ/wGaEdB8dwgYh9NoAYan6a8BZ9nEAdJMJw318hNFIEFAFNQdHmYf muyBCTHEYPoO
apsqtqljlx22DWhzPD7bB8BgAgxv1/2ACafk7kMAeb/NfgXJNHwknSIrEA6h hRuWCwBCAQP8
K2EF0xXjFsgpfiRmADFwwMk6NIMKzgADgQIJ2R5AshTx6SkgMB3qwgWCas2t BAKAgA8eEI5D
OWBmK1NABDqFpoYpQAEdSllw3AFA4ClqcYi7wAWOlrwiLk0iSatIBy5AAQvl DkVhe4FGPIID
GOQuAN2LgffEJgPx4YB8IvMACEzQFBPS7gO5WwHtTjG2h63MAW3Jnw/0BgNU vP/DZ18KHpoW
V7AaHO2PyDOiIJXmggw0wAcK6IgNMNICr5mgczMISYCa8rGPhJFk3pkbQajk AdrtKgTvyN0O
9sYP2aGgjqdwxyl6qMd+MQ5hgIylLGdpAH407H02QIoHVsAAvqjMSk8ZT8f2 xKqniBCT6TNG
CSaASFV+wAEICBLe5kfKDKjwBnoLga0yQAzC+XCPw1MYEQfJPAcoDYnMSIEC EEk9jcngfAww
2Yl2MDNscaSL3FNb+Qj0kXW+Sz8XS4EqQ9AwETygAFQ6QAzWl4wQyI9+EaDS A2ZEjQCCc4EG
4AACN3qwBdbgBAb8VwZ4AAOZrcxZKPILDgKgsZOhKEr/bOMg6DwwA3C5CgMY a+kOBHoKWyGA
pSfdKfs6ALBkOUBlJw2AQG1V0W969KNr4gBIOUrVj+pkLLsaKSjDhpGNIIef fRGUX0InpdQJ
SgTpg0H2BmqrEhAgBGrNHvtg0IEMFPWtIcheDFrXwqYa7qk1KJ5AqErYEzxv ABfQFT94sIGO
kMAGL2gBiwZk1rF20KwgQAFa+YqbQ7mVH2wcqgIbxylQ3lGbv9MAYGtgABpU iLCwvUBAALYr
OG2ABLhFClIme57eWjZ1H2CWJgviWUXdTGCLS9NaDpXa1ZKFLLAl7FikioBk OKQCG6iABVow
qkb69rtldRXsMPO2tnr2UD9c/62izsteFNJItatlbXSjW9vr4u+6CRjVCmwA 3u+alSAZgKs2
2+tW4ak3TQT2bB7jK1+DXUCjsIVuAg/SDL51gAM96IEMXjCqFfX3PGYNQZoC LOLbsdfAB0ZT
gpn7XgYbDHGuHcvBXDDjNVXoBBS2q8AyEAOAAGQAGx5VDnj74fAKCgX8UJRB bHLii/IxpKRV
8YpRWDgGD88FPqKxg7VcMNl+ZRm6Mphia9KDEciAAjKwAIdDNWTwivVzZkVB VqOMJpigl0zp
TfGUD1VlF3d5TBDO6INgomXDwgSBAnteDGxrARXYoImhyjALQMKCHuCgBxKY NAsk0AM4g4AF
k+6Bhf8QgOECqokDJahBTSBEKVfqecrvdfVqCwZSF0zVAIYNSKA1heuN6qom OojBBixAbBnY
BFTPowBInvfjAehgANDWgaue3ezD2gRNJ2DyCX5cIRQDFsFT7rOVG4wwCoyJ y7DVVQcOSwEb
OMTYElDBC2pCgRzY4Hk6WAALoD3pZ4v1eRJYIrQ5gABoNy7bEjgUwoUV3/Wu OIDjJvfBQDoB
dKdbVz2AtgRiUAF4q8ACGa93Dp7Hgk/bRFDPxsEGRqBoUiO2YAAx4MJLgPAC e9ujDk+wRcc9
355/MgbJ7rhNiJ3xHsj7eTIggbEpcNtnx2AZzyNqYiAc849emwA1t7mTnwr/ bgJDnOc9py/f
YmATHsD7tmRWgQqQrgIPfCUBLIcg1Acg9QFodIADkPnVaz4sBnedvV+3ctij WxtdJYYCZne2
DTI+gB4kIAFIT4DbKTCk541gHM9rQEa/YgC8610CBw/I4xr+dz5/U9azHjxH O4CWwy563dAO
SOMrD+QKTH5IAFlGAwDSABccvvNVR7i/EOBjChzL76W36Naf2kfVI2wZDmoi VvkRgwzLoPoy
GJIMylwB7EP/AkQl9fFsbaEuX8CAxOMAEJvY6uOTngDnVb4rUf9K5yPsIAhI mMCSwYz++9//
AxNLCUNnjOM4y8dA4CZ/gmd/BoN/vlZdRPV/zEAO/xTYAATTeYCEQARYgAaI fGgifwcYTgxo
AAhAVFRVggODABW4ghaYfxg4S0aDMHSGeo5jZWmiAacXgvXnfCVIWAuDAFw2 MBQIAUQIg7Qk
g0HDWv7SgX6Hg63kZ/bXg1RFY0BohLJUcVZ4NAMYZeGUXKNXf4zjhHkGWAwo hbBUNEaTf7M0
SFiYhRbXR1xIbkv4hXJYA2I4hh4VhS6IQBm4hmzohjHIURhlMHPofjt4hzeX h6q3hxwVgzDI
hoR0hRkoiDsIhzOYiP6CiJg4iPPFiAkDiJAYiYC0NH8UdloIZYa4OJqog09G Xz6YhaEoioHE
NKXYc6cIZTPoUasIdrDlAP8B4ACN+Ijk9IuxSIuB+IYvKE63iIC6mIOsKIIb RSUGUDcFwIew
KEjUWIy06AC3CEtWSIjxtYrPKHEII43MNAHBeIXauI4TcEPd6I3faInN2Ep7 RH/DF2YcJY0G
oAAFc0NUYgTNUgCxBFQqUwBNg1TnMgHZSCUsdQAGOQENYy4+wDRUsjJGA1Q3 AIzK+EfGiG7z
mIqKg1yeeDD6aDDrdCQnUwAHoACAVDcBMAFUYpBoJRHmopA+YJBUIgIqqQAw eZNHNZFM444u
IDIyeQCfyJEd6ZGq6IyJmIIiyYgl2Y/8SI0uIJRHQyVJk43zkzRYuZA+YE43 1I482ZPJE5ZV
yY//03iT1mg0yVOLJAgwdsiUaAKXCuSUdqkrUbmPU3mTZwlIWGmTBrmVZOmV SROWYUmWQcmT
fZmW1biWs5g0bqlA4sgpPHKXlvlTPpCCN8SYetmSPmBQM1OUQlGThCmWPXkk GlOWByARRDkB
aDWFSAmZk6griHg7yXJcl2mXVKKZCoAA1NiZR0OEERmTB7kyCUmYEBCWDrBO CtAwyfMAGiOQ
GKmRb3mBaMiWEwABSQQBp4gATngz4BmeuTmedkmE5gkBBeAAEFAv2UmERaSd 53meBaAhwCFI
50kwl3mdLmCe7VmEP/id4Rmg/ECeBKor8QkBaOVSB7qgC7qcxjmf8Lk0/+fZ guRZMNzJoOZJ
m8AjoBwKngWagiyIoSI6oiQ6oRRKoCUKAQDaoQKqWOTJgjCaojI6o+TwoQhA ouSwoizKoiDq
iwVADpsBoxU4o0ToAOOinkNIpBQIZimIUNAEog0gojkKPKewo50iPyvjAxLY AC5JDogkpEma
og0QAS11kyEqpg3ADDomMDEpME86pAs6pQBwC20xUrZzp3cqSkSxpV3aAQUQ AWAqpPHJgioT
AejpADFaoujQf0tqpBDAD18aqCuIg3N6H3xzqXxzRf6nkivzAH46P8uASMtw khfzAOQAnZ1K
DmRaqiy4TjtQgV0ak+j5mRqTGRejnsk5P6WqMf8BAKQs0wHrtDLjIKlySqdx hKmZyk700wES
5JB/2gGa2gGiCqwXk1ApcEjO+qMNEJAzc62welLaGqs3mQJ18yQacwMqo1Tq dDJIBVRpOjXM
ejIRMIGSSqnGiqyXmjs3cEOeKlH9F63Tuk4p0AENM6/naqpcejHMYqYryKlm Kq4/Wjc7tU5G
Oj/mILCauk7LAK/SqgCMWq/vYazHiqzRurE3+a+g2rGjqqUdAK8pgJFjqqy/ iA4VmAI2lLC9
GpM4u67karHrCq2gqrEt+6sq+39gaq8ie6z2dUVL6wMzEBQVwLRFu04R4DcH MLARABQao7UH
kLUOkAIjELZhm7VA8Zn/I5A7BhWdOyuwLnmxWpqxLMuxtzqw/he2FmEOKWCv a4QK9tW3WLoy
EVABDbMyARC18+MQiBS269RSDxC2WTo/YYuqgCu2iruSGpO1frMyJlO1bcu2 PrtOZxu0cUu0
wTqv/Ue5qEupKMAOrJtdDuG69nW2RZECDpECQ1G7EZADDjEUI1ABGJsDYmu7 uUu5wgu8qBtR
R+IAwRsBElG1QMG8tlsA5lAAOWAOvGu7DhC1ZCsUtLu7gRu7qEu5lNq65MsO fXu+6Ju+1wW6
4du+7vu+8Bu2eDu/YIu61xW+6Ru/41u+5au+/tu3Ysu7YTsk8VvABhy+eHvA A6y+77u//Eu+
/9hlvv9rX49XwRZ8wY8XtnCnwO0rwJTrwe9ru8Zrv//bvg78wA+cvo/LMhjc wi7cwhpsweFL
pszStWGbA86ykgFMtWK7ApYbAO2bAOmbweF7wijcv337eE5LFC/wwk78xE/c xI9nLoorAiPw
ApMTthxWJSOQAFgcAAmQOxHgxBUAxQmgAcBwxKyLW2yMW8T2xhaQAD6AARds MUpMxwlgMVOT
AKg6OY+HthqDAVJckYL8wjMgAl68Qo/XHRVsOivweKaTA1MMxmbsxACwAwDA xrfFDm3cyZ5M
AnB8MpvxAHFsx3KMxxZzAwGAFE67AirzAGG8Mt0xPwnAkAzpwoITy/9jXMs+ 0MhV8nhUUsEd
UsmWfAMacFufnMxtbAFsTGwX0yEBQGwWE8dznAAWYDEvQGxU8sgvUM1XlAA5 UM0W0yHVjMHQ
+ci6DMy9DMm/zMvCjMfEjMEVoAE/4AAooMz43MnOjAFwfM0+oGZzLM3/rM0s 83FzrAJXpHbi
PD90onYW/AAzIMmP182wnACMzM7oHMkqkAB+XMlqt9GPt9Eb4AA/IAKZnM8o vc/9bDGuHND+
/MZo+wIMaQExzZAqQCU7oHY58NFqZzoPMBQ7rQIe4sWT89GOrHZfrALhHAE8 3dRO/dQqAABr
8AMdgMwojc8WsMKkLDJO69LT/MaD67TZnDv/LTUDLyBvFrMyGNDUFanWOp3D a23UVWLUB4BT
AQDVeO3UG9AAQyAJV+3JzAzKxFYUEdACxAYXNJ0Dhx0B/dwCuQvT8wMXTQ0X TJ3XTX0Uli1v
mJ3Zlg0AoDAEVPPXydzPpF3apg3HT9RonL3arN3aTo03W9AAVi3a+nzatm3a L1DYcOzavN3b
T70BKcAFWnrPtL3Mt33cyK3avr3crL0B0roHDgAAs+3GgU3dyX3dt83c2r3a GwAAJL0HQrAD
ZWDV2F3e173d6I3XGzAGOwDeWvAAPJAEq6vG9F3f9n3f+J3frWsMAMADD+De bHAAP02sBF7g
Bn7gCH7gEQCd7h0EADs=
--------------020608020002050806000507--

--------------070209050808090508040706--


Re: [CDO] CDO server hacking, where to start? [message #1031801 is a reply to message #554927] Tue, 02 April 2013 07:57 Go to previous messageGo to next message
Lakhveer Singh is currently offline Lakhveer SinghFriend
Messages: 26
Registered: March 2013
Junior Member
can any body help me by providing the brief steps for setting the CDO Server with user authentication and security management by using database roles and users?
i m using MySQL as my default database.

[Updated on: Tue, 02 April 2013 08:10]

Report message to a moderator

Re: [CDO] CDO server hacking, where to start? [message #1034337 is a reply to message #1031801] Fri, 05 April 2013 10:10 Go to previous message
Eike Stepper is currently offline Eike StepperFriend
Messages: 6682
Registered: July 2009
Senior Member
Am 02.04.2013 09:57, schrieb Lakhveer Singh:
> can any body help me by providing the brief steps for setting the CDO Server with user authentication and security
> management?
Pierre Gaufillet <http://wiki.eclipse.org/index.php?title=User:Pierre.gaufillet.airbus.com&action=edit> has written a
nice tutorial: http://wiki.eclipse.org/CDO/Security_Manager

Cheers
/Eike

----
http://www.esc-net.de
http://thegordian.blogspot.com
http://twitter.com/eikestepper


Previous Topic:Problems try to use Offline example code
Next Topic:[CDO] Commit data and its meta model => unresolved proxy error
Goto Forum:
  


Current Time: Fri Apr 19 06:38:34 GMT 2024

Powered by FUDForum. Page generated in 0.03068 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top