Hello everybody,
recently I've spent plenty of time with the following task: Create Publisher/Subscriber application that via WCF send/receive messages from RabbitMQ. As foundation for my code I've used code from Dieg web site, just modified binding.
Bindings were modified in App.config file...
Hello everybody,
today I want to document few features of MSMQ.
First of all I want to say that MSMQ is ancient technology. It started it's life from Windows 95 as windows service. So for time of writing of this blog post it already had 22 years!
General principle of working of MSMQ is save...
Hello everybody,
today I want to document one gotcha related to difference between Html.TextAreaFor and Html.EditorFor.
Recently I've had a requirement to add hint text to text fields. In Html world there are two ways to create input field which accepts text: <input type="text" />...
Hello everybody,
today I want to write a few words about how to work with Docker with help of C#.
Recently I've got a challenge to find the way how to manage Docker. Initially I've tried Docker.Dotnet library. It has quite interesting options for management of docker, but from my own prospec...
Hello everybody,
today I want to write a few words on how to add links to some entites in Acumatica.
So, recently I've had an assignment to add redirect into existing grid, so intead of showing some text show nice link which will lead to Purchase order.
Here is what I've done in order to achieve...
Hello everybody,
today I want to note just short usage of openssl command:
openssl req -nodes -days 10 -newkey rsa:2048 -keyout keyfile.pem -out certfile.pem
this command will generate two files: keyfile.pem and certfile.pem.
Hello everybody,
today I want to document how to permanently open port in CentOS linux permanently. You can achieve it with following command:
firewall-cmd --zone=public --add-port=22/tcp --permanent
or with usage of iptables:
iptables -I INPUT -p tcp -m tcp --dport 80 -j ACCEPT
Key --permanent e...
Hello everybody,
today I want to say a few words about interesting program: ngrok. The main idea of it is to allow other computers to see ports which you've configured in your virtual box machine. And surprisingly it is very cross platform. Take note of the list of platforms at download page:&nbs...
Hi,
just small note on topic how to remove and delete all docker containers in ubuntu:
sudo docker stop $(sudo docker ps -a -q)
sudo docker rm $(sudo docker ps -a -q)