Hi.
Having some trouble with exposing a webservice correct.
In my ejb OriginalBilde I have:
@OneToMany(mappedBy = "originalbilde", cascade = CascadeType.ALL, fetch =
FetchType.LAZY)
private List<Bilde> bilder;
public List<Bilder> getBilder() {
return this.bilder;
}
I'm using a session bean to get My Originalbilder and expose them as a Web
service.
All other methods are avaliable through my webservice. Exept the OnetoMany
List<Bilder>.
There is probably a reason for this. So I'd like to know why, and how I can
expose the method getBilder().
Hope someone can helpe me.
Best Regards
--
View this message in context: http://www.nabble.com/Missing-method-in-WebService-%40OneToMany-tf4368075.html#a12450254
Sent from the java.net - glassfish users mailing list archive at Nabble.com.