Re: RE: openssl clients for windows

2007-06-04 Thread Victor B. Wagner
On 2007.06.01 at 07:35:37 -0700, gary clark wrote: Hey Simon, I pushed the MSVCR71.dll into windows system32 directory. I am building the application with code Generation /MD. I then ran the client application If you use /MD you might need debug version of dll. MSVCR71D.DLL. And this is if

Re: RE: openssl clients for windows

2007-06-04 Thread gary clark
Ok finally got it to run in standalone. Using an XP machine that does not have VC2005 installed best is the: \Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bootstrapper\Packages\vcredist_x86\vcredist_x86.exe and run that for 2000 machines you will need the Windows Installer 3.0. --- Victor

Re: openssl clients for windows

2007-06-03 Thread Gerrit E.G. Hobbelt
Gary, since you mentioned that you call LoadLibrary() in your code, depwalker will not find those SSL DLLs for your app itself. However, looking at your problem it may very well be that the SSL DLLs themselves do not properly initialize: they may also need additional DLL for their C

Re: openssl clients for windows

2007-06-01 Thread Victor B. Wagner
On 2007.05.31 at 22:28:27 -0700, gary clark wrote: Hello, Using 0.8.9e. Attempting to port my openssl testclient to a XP machine which does not have the complete install of openssl. I took the ssleay32.dll and libeay32.dll and installed them in the system32 directory. When running

Re: openssl clients for windows

2007-06-01 Thread gary clark
Hey Victor, Thanks for the response. I dont think its an attribute issue of dlls or files. I checked and they seem to be ok. Not read only. The two dlls I'm using are ssleay32.dll and libeay32.dll and of type application extension. I want to load the libraries dynamically using

Re: openssl clients for windows

2007-06-01 Thread Joe Flowers
Gary, Have you tried running your application in a Dependency Walker profile? http://support.microsoft.com/kb/256872 Joe gary clark wrote: Hey Victor, Thanks for the response. I dont think its an attribute issue of dlls or files. I checked and they seem to be ok. Not read only. The two dlls

Re: openssl clients for windows

2007-06-01 Thread gary clark
Hey Joe, Never heard of it before. Will give it a try. Much appreciated, Garyc --- Joe Flowers [EMAIL PROTECTED] wrote: Gary, Have you tried running your application in a Dependency Walker profile? http://support.microsoft.com/kb/256872 Joe gary clark wrote: Hey Victor,

RE: openssl clients for windows

2007-06-01 Thread Simon Edwards
PROTECTED] On Behalf Of gary clark Sent: 01 June 2007 13:55 To: openssl-users@openssl.org Subject: Re: openssl clients for windows Hey Joe, Never heard of it before. Will give it a try. Much appreciated, Garyc --- Joe Flowers [EMAIL PROTECTED] wrote: Gary, Have you tried running your application

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
--Amit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simon Edwards Sent: Friday, June 01, 2007 9:14 AM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hi Gary, I've seen this message when a dependent library is missing. Try using

RE: openssl clients for windows

2007-06-01 Thread gary clark
, 2007 10:36 AM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hey Simon, I pushed the MSVCR71.dll into windows system32 directory. I am building the application with code Generation /MD. I then ran the client application again. It then gave me the failed to start

RE: openssl clients for windows

2007-06-01 Thread gary clark
@openssl.org Subject: Re: openssl clients for windows Hey Joe, Never heard of it before. Will give it a try. Much appreciated, Garyc --- Joe Flowers [EMAIL PROTECTED] wrote: Gary, Have you tried running your application in a Dependency Walker profile? http

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
To: openssl-users@openssl.org Subject: Re: openssl clients for windows Hey Joe, Never heard of it before. Will give it a try. Much appreciated, Garyc --- Joe Flowers [EMAIL PROTECTED] wrote: Gary, Have you tried running your application in a Dependency Walker profile? http

RE: openssl clients for windows

2007-06-01 Thread gary clark
PROTECTED] On Behalf Of Simon Edwards Sent: Friday, June 01, 2007 9:14 AM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hi Gary, I've seen this message when a dependent library is missing. Try using dumpbin or depends from the platform SDK on the affected system

RE: openssl clients for windows

2007-06-01 Thread Simon Edwards
:[EMAIL PROTECTED] On Behalf Of gary clark Sent: 01 June 2007 15:45 To: openssl-users@openssl.org Subject: RE: openssl clients for windows Thanks Amit. --- Amit Hakoo [EMAIL PROTECTED] wrote: Hi Gary, Try using the dependency walker. It's a great tool. http://www.dependencywalker.com

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
on. You can find that information via the Dependency walker UI --Amit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: Friday, June 01, 2007 11:52 AM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hello, I changed my

RE: openssl clients for windows

2007-06-01 Thread gary clark
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: Friday, June 01, 2007 11:52 AM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hello, I changed my codeGeneration for the console application to be /MT. It appears to be the only way I can at least

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
@openssl.org Subject: RE: openssl clients for windows Thanks Amit. I have never built the openssl libraries in visual studio. I built it for windows machine but never use Visual Studio to build the libraries. Using openssl-0.9.8e. cd /d C:\build\openssl-0.9.8e perl Configure enable-camellia

RE: openssl clients for windows

2007-06-01 Thread gary clark
the batch file (double click will also do). Try it out --Amit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: Friday, June 01, 2007 12:18 PM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Thanks Amit

RE: openssl clients for windows

2007-06-01 Thread Amit Hakoo
Try to drop in MSVCR80.dll in system32 --Amit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: Friday, June 01, 2007 4:13 PM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hey Amit, I built the visual studio

RE: openssl clients for windows

2007-06-01 Thread gary clark
To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hey Amit, I built the visual studio project very similar except without the batchfile you created. I managed to successfully run the testclient on this machine. However I did build it with Visual Studio 2005. I'm not sure

RE: openssl clients for windows

2007-06-01 Thread gary clark
--Amit -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of gary clark Sent: Friday, June 01, 2007 4:13 PM To: openssl-users@openssl.org Subject: RE: openssl clients for windows Hey Amit, I built the visual studio project very

openssl clients for windows

2007-05-31 Thread gary clark
Hello, Using 0.8.9e. Attempting to port my openssl testclient to a XP machine which does not have the complete install of openssl. I took the ssleay32.dll and libeay32.dll and installed them in the system32 directory. When running the client I am seeing it crash with the message The application