OK. Im following the Webobjects for Windows Developers' manual with their guestbook tutorial. I have created a customn class called User. It is in package com.metrohero.entities. I made sure it mirrored the Guest class in the tutorial.

package com.metrohero.entities;



import com.metrohero.entities.Person;


public class User extends Object{
        
        protected String userID;
    protected String userName;
    protected String password;
        protectged Person person;
    protected String userRoleID;
        
        
        User() {
                userID = "";
                userName = "";
                password = "";
                userRoleID = "";
                person = new Person();
    }
        
        
}



When I go to WebObjects Builder and add the key to Main, it sees User as a type. But after I add it, it does not see the properties so I can bind them to my login page.

Any idea from the info above why it is not cooperating? It looks like I have followed the tutorial exactly and I have all of the pieces in place......

Jeff Pearson
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to