Search results for query: *

  1. Marcos Santos

    Bind new port Http Client (ipv4)

    I have a vps with multiples IP and every request I send to my API I use a different IP (I specify on the request, see the method). The problem is, if I bind on port 0 only, port gets so slow due, but If I use a different port I get the error: Error Unknown Error =>...
  2. Marcos Santos

    Resolved HttpClient custom dns/ip

    I have a vps with a console program in C# which makes a request to my api. my vps has 3 ips and I wanted to achieve to send each request over the different ips. How do I do it? This is what I found so far, but I am still confused if its. public static HttpClient GetHttpClient(IPAddress...
  3. Marcos Santos

    Resolved Socket over UDP (its not coming)

    Hi guys, I am trying to send my object over UDP. Its working fine when server and client are in the same machine, but If I put the server on my VPS, and try from my PC, it does not arrive on the server. I thought the problem was the port, but if I send any byte empty like ( byte[] data = new...
  4. Marcos Santos

    Resolved Empty body http client.

    Hello guys, I am in trouble with a problem. I want to send a post to a rest api and it does not need a body or require. with Java, I was able to use: var body = RequestBody.create(null, new byte[]{}); I was able to create an empty body passing => null, new byte[]{} as parameters if I use var...
Back
Top Bottom