public AbbyyRSWrapper(Settings settings)
 {
     this.clientObject = new RSSoapService.RSSoapService();
     this.location = settings.abbyyRSLocation;
     this.clientObject.Url = settings.abbyyRSServicesUrl;
 }
Beispiel #2
0
 public static Settings getSettings()
 {
     if (instance == null)
     {
         instance = new Settings();
         if (!settingsIsValid) return instance = null;
     }
     return instance;
 }