I have a webservice that I would like to use to access some of the user's profile information, such as 'profile.birthdate'. The class doesn't seem available with it's custom properties in the .vb code of my web service - I can get some generic profile properties but nothing specific to the user or my custom properties as defined in web.config.
I read a posting by Omar Al Zabir (here: http://dotnetusergroup.com/blogs/omar/archive/2006/09/13/237.aspx) that talks about how to create a hand-coded profile class in the App_Code directory. I could do this, but would really like to stick with the ease of use of using the web.config file to define my profile. Is there a way to refer to the properties of the profile without writing this extra code using a webservice - maybe late binding or something?
Any help would be appreciated.
Thanks.