Giuseppe Sacco wrote:
> So I tried to use the java reflection to inspect the
> org.postgresql.jdbc3.Jdbc3ConnectionPool class (or other classes) and
> call all required methods.
>
> The problem is that, when I use this way (a source is attached) I always
> get the error:
> that is, in english, "The ``user'' property is missing while it is
> mandatory."
>
> Of course the 'setUser()' method is called but it doesn't work.
>
> Do you have any idea about this problem?
We use exactly the same technique (set properties by reflection on the
DataSource) and it works fine, so the concept is ok; the problem lies in
your implementation.
Perhaps you are setting the username to an empty string?
-O