Using TTL without ping [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
Are there any ways to use Time-to-live value with a tcp or webrequest? In some networks icmp and echo packets are not allowed. I need a way to limit a request with specific TTL value.

You can use System.Net.Sockets.Socket.Ttl to set the TTL if you are creating the socket yourself. I suppose you could do this if you want to make a web request over it: C#: How to execute a HTTP request using sockets?

Related

Is possible to request a iphone/Ipod/Ipad coordinates from server code? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Exists a way of request a device for his coordinates from the server code (Ex: C# .NET)?
Your question is unclear. You need to clarify on what platform you want. Perhaps you are getting things mixed up.
Do you really mean to run a server on an iPhone using C# code?!? I don't know anyone who's coded a webserver for an iPhone in C#, if that's what you really mean. (But it is possible for someone or a team to do this.)
But more likely you mean you want a C# webpage, running on a webserver to get a client's device coordinates, where the client device is an iPhone. But in this case, I don't believe C# has much to do with it, because this would be the webpage which would do the request, which would be HTML and JavaScript, not C#.
i think what Edward means is "No". :P

Do I need port forwarding? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I'm sending simple messages from an Android client to a PC server using TCP sockets. They are on the same WiFi network (connected to the same router). Do I need port forwarding for this?
No, you do not need to port forward. You might need to open the port on your firewall, however, so make sure you do so. Port forwarding is for opening ports to external networks.

How to Configure VPN Client in Windows CE 6.0 Device [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I have WinCE 6.0 device with internet connection, I want to communicate this device using VPN. But i'm unable to configure VPN Client in the device. Is there any VPN Client software i need install on my device?? Please help me to proceed.
Thank you.
You can try with MOVIAN / ANTHA VPN Client for Windows CE..
Movian/Antha Resouce Page

What is the mean of connection status is suspended? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
when I run the following procedure:
sp_who
#loginame = 'myloginname'
I see a number of rows with "status" = "suspended" column. What does this mean?
Also how can I avoid from this?
Any helps would be appreciated.
From BOL, it is "The session is waiting for an event, such as I/O, to complete." http://technet.microsoft.com/en-us/library/ms174313.aspx

How can i use .net Remoting over internet [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have two application on different computers than connect to each other by Remoting Channel.
I want to control server from client on different network (over Internet).
How i can do that?
Is it possible to configure Remoting to bypass/punch holes in NAT?
In general, I would recommend using WCF instead of Remoting, especially if you're going to try to work over the internet.
Neither technology will bypass your firewalls, though WCF does provide far more options for configuring the channel which is used for the communication. This often makes it simpler to provide an endpoint that will work for internet connections and communication.

Categories