This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Steps to connect Rabbit MQ Server from another PC: | |
Reference: https://github.com/containers/podman/issues/19832 | |
1) Run windows powershell as admin | |
2) run this command: wsl --list --verbose | |
You will get something like this, but with only podman-machine-default in your case | |
Note: If State is stopped, it please run Podman from podman desktop | |
PS C:\Windows\system32> wsl --list --verbose | |
NAME STATE VERSION | |
* podman-machine-default Running 2 | |
docker-desktop Stopped 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Configuration; | |
using System.IO; | |
using System.Net; | |
namespace rdi_server.service | |
{ | |
public class Connector | |
{ | |
private string Host { get; } | |
private WebRequest _request; |