Re: [fpc-pascal] FastCGI on Windows IIS

2016-04-26 Thread Marcos Douglas
On Tue, Apr 26, 2016 at 10:55 AM, Marcos Douglas wrote: > On Tue, Apr 26, 2016 at 3:39 AM, Michael Van Canneyt > wrote: >> Well, time is of course an issue, but more importantly, I do not have ISS to >> test with. >> >> I think that PATHINFO needs to be corrected in custcgi.pp: >> >> Procedure T

Re: [fpc-pascal] FastCGI on Windows IIS

2016-04-26 Thread Marcos Douglas
On Tue, Apr 26, 2016 at 3:39 AM, Michael Van Canneyt wrote: > Well, time is of course an issue, but more importantly, I do not have ISS to > test with. > > I think that PATHINFO needs to be corrected in custcgi.pp: > > Procedure TCGIRequest.InitFromEnvironment: > > Something like If Pos('IIS', Se

Re: [fpc-pascal] FastCGI on Windows IIS

2016-04-26 Thread Marcos Douglas
On Mon, Apr 25, 2016 at 4:51 AM, Michael Schnell wrote: > Not believing that FCGI will work decently with IIS, my colleagues > successfully used a different approach to use their (Delphi) programs via > IIS in the Internet. FCGI works very well on IIS (until now). Regards, Marcos Douglas ___

Re: [fpc-pascal] Class/Record helpers on genericd?

2016-04-26 Thread Anthony Walter
Okay. Thanks. Just FYI here is my use case. { User defined vertex type } type TColorLitVertex = record Position: TVec3; Normal: TVec3; Color: TVec4; end; { Contiguous data to be fed to an opengl vertex shader attribute } var VertexData: TArray; It would be nice to have both o