Appfuse Axis Tutorial - UserEndpoint getUsers method returning wrong type
-------------------------------------------------------------------------
Key: APF-258
URL: http://issues.appfuse.org/browse/APF-258
Project: AppFuse
Type: Bug
Components: Documentation
Versions: 1.8.2
Environment: JSF, Spring , Hibernate, MySQL 4.1, Windows XP, Tomcat 5.0.28, SDK
1.4.2
Reporter: Ron Anderson
Assigned to: Matt Raible
Priority: Minor
In running through the Appfuse Axis Tutorial, ran into a compile problem in
UserEndpoint.java with type mismatch. The getUsers method returns User[ ] but
either should return Object [ ] (which I did to get working) or put a cast to
User [ ] in the return so that .toArray which returns Object [ ] doesn't
conflict with getUsers return type.