static void Main(string[] args) { if (args.Length < 3) { Console.WriteLine("Usage: TopicPublisher <host> <username>@<vpnname> <password>"); Environment.Exit(1); } string[] split = args[1].Split('@'); if (split.Length != 2) { Console.WriteLine("Usage: TopicPublisher <host> <username>@<vpnname> <password>"); Environment.Exit(1); } string host = args[0]; // Solace messaging router host name or IP address string username = split[0]; string vpnname = split[1]; string password = args[2]; // Initialize Solace Systems Messaging API with logging to console at Warning level ContextFactoryProperties cfp = new ContextFactoryProperties() { SolClientLogLevel = SolLogLevel.Warning }; cfp.LogToConsoleError(); ContextFactory.Instance.Init(cfp); try { // Context must be created first using (IContext context = ContextFactory.Instance.CreateContext(new ContextProperties(), null)) { // Create the application using (TopicSubscriber topicSubscriber = new TopicSubscriber() { VPNName = vpnname, UserName = username, Password = password }) { // Run the application within the context and against the host topicSubscriber.Run(context, host); } } } catch (Exception ex) { Console.WriteLine("Exception thrown: {0}", ex.Message); } finally { // Dispose Solace Systems Messaging API ContextFactory.Instance.Cleanup(); } Console.WriteLine("Finished."); }
static void Main(string[] args) { Console.WriteLine("Solace Systems Messaging API Tutorial, Copyright 2008-2015 Solace Systems, Inc."); if ((args.Length < 1) || string.IsNullOrWhiteSpace(args[0])) { Console.WriteLine("Please provide a parameter: non-empty value for the Solace messaging router host name or IP address, e.g. \"TopicSubscriber 192.168.1.111\""); Environment.Exit(1); } string host = args[0]; // Solace messaging router host name or IP address const string defaultVPNName = "default"; // Solace messaging router VPN name const string defaultUsername = "******"; // client username on the Solace messaging router VPN // Initialize Solace Systems Messaging API with logging to console at Warning level ContextFactoryProperties cfp = new ContextFactoryProperties() { SolClientLogLevel = SolLogLevel.Warning }; cfp.LogToConsoleError(); ContextFactory.Instance.Init(cfp); try { // Context must be created first using (IContext context = ContextFactory.Instance.CreateContext(new ContextProperties(), null)) { // Create the application using (TopicSubscriber topicSubscriber = new TopicSubscriber() { VPNName = defaultVPNName, UserName = defaultUsername, }) { // Run the application within the context and against the host topicSubscriber.Run(context, host); } } } catch (Exception ex) { Console.WriteLine("Exception thrown: {0}", ex.Message); } finally { // Dispose Solace Systems Messaging API ContextFactory.Instance.Cleanup(); } Console.WriteLine("Finished."); }