Search results for query: *

  1. Marcos Santos

    Bind new port Http Client (ipv4)

    That's not the problem. Every request has a different IPV4, I am passing which IP I want. This specific api I can't bind another port, but any other api I can.
  2. Marcos Santos

    Bind new port Http Client (ipv4)

    I checked, I can only use port 0. I dont know why.
  3. Marcos Santos

    Bind new port Http Client (ipv4)

    If I specify the port, I get an error. The problem is, with another api works fine, I guess there is some protection?
  4. 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 =>...
  5. Marcos Santos

    Resolved HttpClient custom dns/ip

    Actually it works, I wanted to send the same request but with a different ip, my vps has multiples IPs
  6. 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...
  7. Marcos Santos

    Resolved Socket over UDP (its not coming)

    I was accepting for a new connection everytime instead of leave the connection open.
  8. Marcos Santos

    Resolved Socket over UDP (its not coming)

    Actually its the same model. The serialization works fine on localhost, the problem is when I put the server on a VPS, a byte can be send, but the object does not get there.
  9. 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...
  10. Marcos Santos

    Resolved Empty body http client.

    I tired the first as well and did not work. PS: I have sorted it, it was my faulty! It was missing something on my header.
  11. 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