コード例 #1
0
        /// <summary>
        /// Configures that message bodies should be encrypted/decrypted with a base 64-encoded key from the
        /// &lt;rijndael&gt; element in the Rebus configuration section
        /// </summary>
        public static void EncryptMessageBodies(this DecoratorsConfigurer configurer)
        {
            try
            {
                var section = RebusConfigurationSection.LookItUp();

                var rijndael = section.RijndaelSection;

                if (rijndael == null)
                {
                    throw new ConfigurationErrorsException(string.Format(@"Could not find encryption settings in Rebus configuration section. Did you forget the 'rijndael' element?

{0}", GenerateRijndaelHelp()));
                }

                if (string.IsNullOrEmpty(rijndael.Key))
                {
                    throw new ConfigurationErrorsException(string.Format(@"Could not find key settings in Rijndael element - did you forget the 'key' attribute?

{0}", GenerateRijndaelHelp()));
                }

                EncryptMessageBodies(configurer, rijndael.Key);
            }
            catch (ConfigurationErrorsException e)
            {
                throw new ConfigurationException(
                          @"
An error occurred when trying to parse out the configuration of the RebusConfigurationSection:

{0}

-

For this way of configuring input queue to work, you need to supply a correct configuration
section declaration in the <configSections> element of your app.config/web.config - like so:

    <configSections>
        <section name=""rebus"" type=""Rebus.Configuration.RebusConfigurationSection, Rebus"" />
        <!-- other stuff in here as well -->
    </configSections>

-and then you need a <rebus> element some place further down the app.config/web.config,
like so:

    <rebus inputQueue=""my.service.input.queue"">
        <rijndael key=""base64 encoded key""/>
    </rebus>

Note also, that specifying the input queue name with the 'inputQueue' attribute is optional.

A more full example configuration snippet can be seen here:

{1}
",
                          e, RebusConfigurationSection.ExampleSnippetForErrorMessages);
            }
        }
コード例 #2
0
        /// <summary>
        /// Configures that message bodies should be encrypted/decrypted with the specified base 64-encoded key
        /// </summary>
        public static void EncryptMessageBodies(this DecoratorsConfigurer configurer, string keyBase64)
        {
            configurer.AddDecoration(b =>
            {
                var decorator = configurer
                                .Backbone
                                .LoadFromRegistry(() =>
                {
                    var instance      = new EncryptionAndCompressionTransportDecorator(b.SendMessages, b.ReceiveMessages);
                    b.SendMessages    = instance;
                    b.ReceiveMessages = instance;
                    return(instance);
                });

                decorator.EnableEncryption(keyBase64);
            });
        }
コード例 #3
0
        public static void EncryptMessageBodies(this DecoratorsConfigurer configurer, string keyBase64)
        {
            configurer.AddDecoration(b =>
            {
                var sendMessages    = b.SendMessages;
                var receiveMessages = b.ReceiveMessages;

                var decorator = new RijndaelEncryptionTransportDecorator(sendMessages, receiveMessages, keyBase64);

                b.SendMessages = decorator;

                // if we're in one-way client mode, we skip the decorator - otherwise RebusBus would not
                // be able to detect one-way client mode - we should definitely make this more explicit
                // somehow
                if (!(b.ReceiveMessages is OneWayClientGag))
                {
                    b.ReceiveMessages = decorator;
                }
            });
        }
コード例 #4
0
 /// <summary>
 /// Configures that message bodies should be compressed in the event that the body size exceeds the default
 /// threshold of 2048 bytes.
 /// </summary>
 public static void CompressMessageBodies(this DecoratorsConfigurer configurer)
 {
     CompressMessageBodies(configurer, DefaultCompressionThresholdBytes);
 }