Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

error when creating user in weblogic server

user1688514Feb 12 2015 — edited Mar 5 2015

Hi,

I'm using Jdeveloper 11.1.1.6.0, and wls 10.3.5.0.

I have developer a fusion web application. For this application, I need login functionality. I need to have the users and their roles stored in the database.

I have followed the example in this blog:

http://biemond.blogspot.ro/2008/12/using-database-tables-as-authentication.html

I have completed the steps until needed to create a new used in wls, where I receive this error message:

3.png

This is how the settings look like:

1.png

2.png

Also, this is how my user table looks like:

CREATE TABLE USER_INVENTAR

(

ID_USER NUMBER NOT NULL,

USER_NAME VARCHAR2(200 BYTE) NOT NULL,

EMAIL_USER VARCHAR2(50 BYTE) NOT NULL,

PASSWORD VARCHAR2(30 BYTE) NOT NULL

);

My email_user column is mandatory. Is it possible that the error when creating new user comes from here? that the email field is mandatory, but i don't provide any value for it?

If this is the case, what is the workaround? how and from where can i add other fields when creating users in wls.

Thank you!

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 2 2015
Added on Feb 12 2015
19 comments
2,702 views