Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
AW: [geclipse-dev] Problem with fqan

Hi Romain,

> The part "/Role=NULL/Capability=NUL" is automatically added to the
fqan, 
> creating an authentication error. How I can I prevent geclipse from 
> doing this?

You can't since it is not g-Eclipse adding this additional fqan. In fact
it is the VOMS server who does this. So to get what you want you have to
explicitly set the ordering of your fqan. It should be enough to do
something like:

List< FullyQualifiedAttributeName > ordering = new ArrayList<
FullyQualifiedAttributeName >();
ordering.add( fq );
desc.setOrdering( ordering );

after your 

desc.addFqan( fq );

This should place your own fq on top of the AC list. Nevertheless I
could not test this, so wish you good luck ;-)

Cheers, Mathias

BTW, Thanks a lot for providing the job submission wiki!


Back to the top