Subject Re: [Firebird-Java] Firebird 2.5 Services API extensions?
Author Thomas Steinmaurer
>> Can build it now (although with a lot of warnings). Anyway, when I'm
>> trying to start a small test application, which basically tests a minor
>> change in UserManager/FBUserManager, when instantiating the
>> FBUserManager class with:
>>
>> UserManager userManager = new FBUserManager("PURE_JAVA");
>>
>>
>> I end up with the following exception:
>>
>> Exception in thread "main" java.lang.IllegalArgumentException: Specified
>> GDS type null is unknown.
>> at org.firebirdsql.gds.impl.GDSFactory.getGDSForType(GDSFactory.java:216)
>> at
>> org.firebirdsql.management.FBServiceManager.<init>(FBServiceManager.java:72)
>> at org.firebirdsql.management.FBUserManager.<init>(FBUserManager.java:67)
>> at
>> org.firebirdsql.management.test.TestSecurityDatabase.listUsers(TestSecurityDatabase.java:16)
>> at org.firebirdsql.management.test.RunTest25API.main(RunTest25API.java:13)
>>
>>
>>
>> Do I have to register the gds types or something like that explicitely?
>
>
> That should happen automatically - please ensure that src/resources is
> included as source directory.

Ah, ok. That helped. Although a bunch of packages where included per
default, src/resources wasn't. Works now.

Cheers,
Thomas