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
Related
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 3 years ago.
Improve this question
I'm working on a desktop application that purpose is saving a backup of a Virtual Machine stored in an ESX without vCenter in local storage. I'm currently using the vSphere SDK for C# and I'm working on a WinForm. I have a box for selecting the machine and a button to make a backup of selected running Virtual Machine on my laptop. I can't find any method in the vSphere SDK to help me for backing up a running VM.
Any advice will be appreciated.
I had the same problem and i found this solution but through PowerCLI.
I made a power shell script that allowed me to export the VM as a .OVA file in a local storage.
You cannot perform the Export command when the VM is powered ON. The only way to perform a backup of a powered on VM ,is having a licence with the vCenter.
Hope it will help you.
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?
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 want to run the file inetmgr.exe so I can deploy a webservice, but I cannot seem to find it.
I have visual studio 2012 installed, and when it installed, it also installed the iis express 8 with it. However, start->run->inetmgr.exe produces an error message as the system does not find the file.
I am very much a beginner, so I apologize if my answer is stupid, and thank any potential answerers for all their patience...
inetmgr.exe is the exe of the regular IIS.
You need the iisexpress.exe. Have you looked at http://www.iis.net/learn/extensions/introduction-to-iis-express/iis-80-express-readme?
Do you need to start that to configure some settings? If so, the link I provided should help you out.
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.
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 want to create 2 applications. i.e, 1 for client and another 1 for server. Client app will be installed in so many computers and service should be run automatically.
If i open the server app, i need the client computer details and select the computer and send some operation like shutdown. then the client computer should execute the shutdown code and it should be turned off.
Please can u tell what type of concepts i have to use in Windows communication service. I'm new to Windows communication service.
what you need is a duplex communication you can start with wsDualHttpBinding the link bellow provide a good example for starting, and in second time you can host your service in windows service on both client and server something like in this link
hope this help