MSSQL server audit

MSSQL Server Auditing on AWS RDS Enable MSSQL Server Auditing on AWS RDS To enable MSSQL server auditing on AWS RDS, please follow these steps: Login to AWS console and go to RDS. Create an option group under RDS > Option groups Give name as 'SqlServerAudit' Provide description as 'Option group for SQL Server audit' Choose the engine as same as the one used while creating the database in RDS. Choose the latest engine version. Save. Go to RDS > Option groups and select the radio button on the option group you just created Click on Add Option. Select SQLSERVER_AUDIT under “Option name” Choose the S3 bucket name where you want to keep the audit files once they grow more than the specified limit. Choose the appropriate IAM role with write access to the S3 bucket. Scheduling > Immediately and then click on “Add Option“.

Mule - Bypass all requests through proxy like Charles

Hello,
Many times during development of a Mule application we need to see the request and response which Mule receives/sends to another flow/endpoint. Its very easy in Mule to bypass all the calls through any Proxy server. You just need to add 1 connector in your mule flow xml file and then Mule will send all the requests to Proxy server. Below is the connector

<http:connector name="localproxy" proxyHostname="127.0.0.1" 
proxyPort="8888" doc:name="charlesproxy"></http:connector>

This example is of using a local proxy server like Charles which runs on port 8888 on localhost. You can also use remote proxy by providing remote proxy host name in proxyHostname tag and port of that server.

Make sure you remove this proxy connector for production version of your Mule application.

Thanks.

Comments

Popular posts from this blog

Unmarshall SOAP Message (XML) to Java Object using JAXB

Circuit breaker implementation in spring boot2

Hibernate inserts duplicate child on cascade