NetTalk Central

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Larry Sand

Pages: 1 [2] 3 4 ... 7
16
Web Server - Ask For Help / Re: SSL on a Virtual Server
« on: June 19, 2014, 11:53:34 AM »
The only way to successfully load a sxs assembly at run time is to create an activation context.  So it makes sense that the error is thrown by libssl32.dll.  I'd try installing the MS VC++ 2008 Redistributable on the server.
 
http://www.microsoft.com/en-us/download/details.aspx?id=29

17
Web Server - Ask For Help / Re: How to show a tif or jpg images
« on: June 09, 2014, 11:32:24 AM »
Ashley,

You can display a JPG image in a normal html image control.  Most browser cannot display tiff, but you can use http://clarionfreeimage.com to convert the tiff page to jpg.or png and display that.  If you need multipage support, let me know.  I may have something for you.

Larry Sand

18
Web Server - Ask For Help / Re: MS SQL Tables Locking Part 2
« on: May 05, 2014, 06:24:44 PM »
Hi Trent,

ControlService is a Windows API function: http://msdn.microsoft.com/en-us/library/windows/desktop/ms682108  I'm using Self Service and added properties to let me know on thread one if I should open or close the file, and a method that calls ControlService to send the interrogate message to SCM that in turn ends up causing a derived _ServiceHandler() to be called on thread one where you can evaluate the message sent to the service from the SCM to open or close the file.  I am checking for SS_SERVICE_CONTROL_INTERROGATE and SS_SERVICE_CONTROL_STOP.  If you read the SS source code it's apparent how to do this.  You need your own properties because the SCM will normally send the interrogate message to your service under other circumstances but all services must support this message.

Hope that helps,
Larry Sand

19
FTP - Ask For Help / Re: endless loop done ftp demo nt 7.07
« on: May 05, 2014, 10:04:42 AM »
Thanks Graham,

I'll review your code and see if it makes a difference.  Without looking up the code, I don't remember what our workaround was.

Cheers,
Larry Sand

20
Web Server - Ask For Help / Re: MS SQL Tables Locking Part 2
« on: May 05, 2014, 09:58:39 AM »
Trent,

FWIW, Take a look at PTSS 40719, David shows that the rtl will grab the wrong connection in a transaction sometimes.  Also if your ntws runs as a service with MS SQL Server, I found that you have to get the Service Control Manager to open a file on thread one, otherwise transaction processing doesn't work correctly.  It does a SET IMPLICIT TRANSACTIONS ON and never turns it off.  You'll see this happen in profile on an MDI app too if you do not open a file on thread one.  I ended up sending a message via ControlService() to the SCM and it raises an event that calls a callback on thread one where I open a file. 

Larry Sand

21
FTP - Ask For Help / Re: endless loop done ftp demo nt 7.07
« on: May 01, 2014, 12:25:34 PM »
Sorry Bruce, that was a bit coarse.
I was just annoyed by folks asking for examples and spending a bunch of time making them to never have them reviewed.

22
FTP - Ask For Help / Re: endless loop done ftp demo nt 7.07
« on: April 23, 2014, 11:17:33 AM »
Bruce,
>>
I won't know till I try, and I haven't had a chance to try yet Larry....
<<

It's been a year, did you reproduce this yet or shall I toss this in the pile with all the reports to SV?

Larry Sand

23
This wont help much be we wrote a PayPal interface and the IPN stuff works fine with sites running SSL using NT7.07.

Larry Sand

24
Unless it's changed recently it's hard coded in Netweb.js in the versionCheck() function.

Larry Sand

25
Forgot to reply.  ccc.exe is not installed, wrong kind of video card for it.

Thanks,
Larry Sand

26
Peter,

It's a Win7 32 VM stored on an SSD (512GB) running in a Win8 Host on an i7, the VM has 3GB of Ram and two cpu's allocated to it.  I use Avast and don't normally have a problem with false positives.  But I disabled it anyway.  The IDE is running C8 9759. 

Thanks for your time.

Larry Sand

27
Peter,

No I do not use McAfee, I thought it might be an AV problem so I have that disabled and it's not checking any files.

Thanks for the thoughts,

Larry Sand

28
Does anyone have any solutions for: TPL:(NetWeb.Tpw) Error: Cannot open file PBDY.$$$$ ?  The error points to the Create('PBDY.$$$') in the NetWebPage of NetWeb.Tpw and the file was created and has code generated into it.  The file is in use by the IDE and after closing the IDE It's not locked, I can open,edit, and delete it.

Do you get this error?  Please add to this post if you also get this error.

Thanks,
Larry Sand

29
Web Server - Ask For Help / Re: Niggling problem with FreeImage for Clarion
« on: November 21, 2013, 10:57:43 AM »
Mike,

Yes it has been a while, and nope I was never on TTS.

Two things:
1) What's the zoom level on your browser,  If it's not 100% set it to that and see if that makes a difference.

2) Does the image control on that page have a width and height attribute?  If so what are they.  If the browser resizes the image then you're going to see artifacts.

Here's an example of a large image down sampled to 200 px wide: http://screencast.com/t/AzkX1cHxF

Could you send an original image to me?

Larry Sand

30
Web Server - Ask For Help / Re: Niggling problem with FreeImage for Clarion
« on: November 19, 2013, 04:40:50 PM »
Mike,
Look in the FreeImage docs for the filters, I think Catmull-Rom tends to sharpen.  There are no blur/sharpen functions in the FreeImage library so without an example of your image that's causing the problem there's not much else to do.

Larry Sand

Pages: 1 [2] 3 4 ... 7