C# program Time synchronization between Windows and linux [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to add a function in my C# program that can synchronize the time between linux and windows, is there any way to do this?

One solution is to run an ntp server on the Linux server (many distributions either include one or make it easy to install), then use some sort of NTP client from within your program. One approach to the .NET side is here, but instead of using a public time server, you would want to use the address of the Linux server.

Related

Build Windows software with JQuery [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is there a way to make windows standalone program which will have JQuery powering its UI?
Since it will be a file manager, I would need to be able to access local files and folders so using HTML5+CSS+JQuery in browser is not possible due to limitation of access to local file system.
I would be most comfortable using c# and VS2008 environment if possible. Any ideas?
You can use jQuery in HTA applets.
You can give a try to javaFX if you are ready to give a try to java. A sample DatePicker for JavaFX using jQuery UI can be found here DatePicker

Automatically detect whether there is a projector connected to a computer [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to write a program to automatically detect whether there is a projector connected to a computer, and whether the projector is open? I don't know how to do this. Could you give me some suggestions on how to do it. I use the C# language.
Maybe you could check if another display is connected? Im not sure but you may be able to get details from the display and see if it is a projector.
Possibly check out these links:
How to detect if additional monitor is connected and active
It looks like WMI might be the way, Detect if monitor is on c#

Multithreaded TCP server in C#? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to get up and running quickly with a MT TCP server implemented in C#, as a proof of concept. I am looking for an open source implementation of such a multi-threaded TCP server in C#.
I came across this link, but it is almost a decade old!. I can't seem to find anything more recent. Is anyone aware of a more recent implementation of a MT TCP server?
There is a relatively complete sample of a highly scaleable TCP server at http://msdn.microsoft.com/en-us/library/system.net.sockets.socketasynceventargs.aspx.

How to implement TOTP C/S (Time One Time Password Client/Server) in C#? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to create a client/server application using C#, and my application must have the ability to deal with time one time passwords, meaning that my server can authenticate a client after a (TOTP) entry.
I searched over the internet for any example that might be close to something like this or thing but coudln't find anything at all.
Do you happen to have an idea about implementing TOTP, even if its not the same situation I have in here , I just need someone to give me some clues.

C# window application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am developing c# application, in which this application is act as server.My front end is flex application.when i am testing my application through browser i passed a url as below.
http://serverip:8082/item/detail/2210
As response it was showing not serviced, no valid session.
But when I tried from different machine I got the response back perfectly.
Can any one please tell why it is happening.
its a non standard port, you may have to open the firewall to allow eternal address or subnet to access? A good way I usually use to test this is using Telnet
telnet.exe serverip serverport
Other things could be DNS or Host Headers in IIS
Cheers

Categories