 |
|
 |
Is there a more up to date version of this framework?
It won't compile by default on VS2008.
Thanks
|
|
|
|
 |
|
 |
Hello you again!
I don't understand the class CSystemTray. Would you mind explaining it for me? thanks!
|
|
|
|
 |
|
 |
I got it directly from Chris Maunder's code at http://www.codeproject.com/shell/systemtray.asp . You'll find the information there. Best of luck!
|
|
|
|
 |
|
 |
I'm a beginer. Can you tell me the structure of file users.ini Because When I finished making the file, I couldn't connect to server. the password is incorrecr. help me!
thanks!
|
|
|
|
 |
|
 |
Hi,
The file should have the following structure:
[username]
Password=
Note that everything is case sensitive, substitute the user's name with 'username' (keep the []), and substitute the user's password with their password (don't keep the <>).
Ensure that on the server if you click Edit Users File that it shows up, signifying that you are looking at the correct ini file.
Hope that helps!
|
|
|
|
 |
|
|
 |
|
 |
Hi
i have tested the app working very good.
You have CFile destFile; variable,....Can you add a part that sending
file from server to the client?
Thanks!!
|
|
|
|
 |
|
 |
I originally was attempting to have file sending functionality, but it didn't work out. It looks like I forgot to remove those variables, they don't have any functionality.
If you do modify the code to provide file sending support, please let the rest of us know! Thanks.
|
|
|
|
 |
|
 |
you would maybe have a look at unolibs.net v2, it's on codeproject
<- true inside to understand outside ->
|
|
|
|
 |
|
 |
you would maybe have a look at unolibs.net v2, it's on codeproject.
<- true inside to understand outside ->
|
|
|
|
 |
|
 |
Hi
Please I would like to know as using these applications in two PC connected via
internet
Thank you
Only this detail
CRegistry::CRegistry()
{
m_hKey = NULL; <<<<<<
//Open( m_hKey, m_strUseKey );
}
Nelson
|
|
|
|
 |
|
 |
i downloaded the program and started trying to get a connection between computers. using my ip address and the port number 4306 i was able to connect from the local computer but when a friend on a different computer tried to connect using the same settings he was unable to... ido you think this is a port number problem or something else? i dont have alot of experience in this area so any pointers would be had.
tks
|
|
|
|
 |
|
 |
Sounds like you have your firewall on your host computer blocking the port. Thus, either temporarily disable your firewall while connecting, or simply set a rule on your firewall to allow incoming TCP connections on the port you are using. (If you're using the default Win XP firewall, you can modify this by viewing your network connections->properties->advanced->settings)
Good luck,
Jeff.
|
|
|
|
 |
|
 |
Hi
i have tested the app working very good.
Can you add a part that sending
data strea, or file from client to the server ?
Thanks !!
pel-nn
|
|
|
|
 |
|
 |
you would maybe have a look at unolibs.net v2, it's on codeproject
<- true inside to understand outside ->
|
|
|
|
 |
|
 |
I have used your project for making client application, but server part is written for Linux OS, so there is some problems with connection. can you tell what do I have to do to make it steady, may be there are some important details I don't know, or smth. like that? thank you for attention.
|
|
|
|
 |
|
 |
Sorry, I am not at all familiar with how Linux works, so I cannot offer any suggestions.
Best of luck,
Jeff
|
|
|
|
 |
|
 |
this is exactly what i've been searching for......although i think this is a great project for beginners like me, it would help greatly in my understanding if more explanations are provided within the article itself. well, regarding the security issue, i think it's a good idea not to include complex security codes at this moment to allow the main concentration on the client server itself....however, perhaps this should be noted in the article so that readers are made aware of this. again, thanks for the project!
|
|
|
|
 |
|
 |
I have been searching for this for some time since I wanted to make a program just like this but was not very succesful with it since I am new to winsock programming. Thnx for the ideas and code
What is it if it is not it? - E-Mail me if you think you have the answer @ snyp_@hotmail.com
|
|
|
|
 |
|
 |
Plain text authentication? Why not to use challenge/response for this? It's easy to implement and secure enough for gaming.
It seems you never tested this on slow networks, too. You are assuming that a Receive(buffer, 1000000) will succeed and return a 1000000 bytes message on a single call.
You can quickly achieve a 100% server CPU sending login messages with very long usernames (a bit less than 1000000 chars) followed by a pipe char.
Not to mention a DOS attack that can be easily done using the 'C' message with 1000000 chars.
My latest article:
SQL Server DO's and DONT's[^]
|
|
|
|
 |
|
 |
I agree with you that this code is not perfect. You raise excellent points that should be addressed. In fact, I believe that fellow users challenging code is the essence of this Web site.
Of course, my code is intended mainly for the recreational programmer, where security is not top priority, but a more secure framework may be helpful for some.
Thanks for the suggestions, and keep them coming!
|
|
|
|
 |
|
 |
Although an interesting subject, the article is very poor.
How did you implement "activity logging", "password checking" and "version checking"? What protocol did you use? Did you use the WinInet SDK, MFC sockets or raw sockets?
Explaining these concepts would benefit a lot of CodeProject users.
VictorV
|
|
|
|
 |
|
 |
My article was merely a very general overview of the ACTUAL framework that I created. The code is commented, and all of these questions are answered within.
|
|
|
|
 |