Listing 5

[WebService(Name="UltraMaxService", Namespace="urn:UltraMaxService")]
public __gc class UltraMaxWebServiceNETClass : public WebService
{
   ...
   // Retreives session storage
   CUltraMax* GetSessionStorage();
public:
   [WebMethod(EnableSession=true)]
   void LogOn(String* loginID, String* password);

   [WebMethod(EnableSession=true)]
   SongInfo GetSongs()[];

   [WebMethod(EnableSession=true)]
   void SetSongs(SongInfo songs[]);

   [WebMethod(EnableSession=true)]
   void GetReleaseDate(DateTime& currentDate);
};