I've to implement partially this interface: public interface FindFilmography( Filmography getMovies(String name, String surname); // method that return actor's flmograpy )
Filmography have "title" of the film plus "year" of the film I've to write wsdl,wsdd,jndi file using WS-Resource factory pattern, but i've some problem/question. I've read the globus toolkit tutorial 4 programmer's gude (the version of 2005) but i don't know how can implement this method in java. I've think to implement a FilmographyResource with RP's "name", "surname" of the actor (in the wsdl file this is declared in type definition, with minOccurs=maxOccurs=1) and "title", "year" (these are declared in wsdl file as unbounded in maxOccurs). there are also Getter/setter method for RP. But i can return Filmograpy? and first how i can obtain the right resource with getResource() (has mentioned in tutorial in chapter 5)? Someone have a tips?
