RE: Witango-Talk: OT: ssl and frames

2003-12-18 Thread Tom Ferguson
Thanks to both Scott and Roland for responding. I was pretty sure that there was no way around this easily. I just thought I'd ask in case someone had come up with a quick and dirty workaround. Tom -Original Message- From: Roland Dumas [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Re: Witango-Talk: OT: ssl and frames

2003-12-18 Thread webdude
I had this same problem. The way I solved it was to redefine the frame page on a https connect. In other words, when going to the pages you want to run through SSL, define a frame page to load all your frames in SSL. A bit of a hassle, but it works. ie http://widget.com/frame.html The

RE: Witango-Talk: OT: ssl and frames

2003-12-18 Thread Tom Ferguson
The site is loaded HTTP://www.site.com. The targeted pain in the main frame is loaded HTTPS://www.site.com/page.taf. So the page is secure, it just doesn't show the lock icon. I'll just do it the hard (correct) way... :( -Original Message- From: Scott Cadillac [mailto:[EMAIL

RE: Witango-Talk: OT: ssl and frames

2003-12-18 Thread Troy Sosamon
I put this at the top of my TAF in an IF statement checking the port. If you are not on port 443 for ssl, then I do a redirect. I know there is a better way to do this rather than using a meta tag, but I wrote this a long time ago and have never bothered to change it. [EMAIL PROTECTED] test to

Witango-Talk: OSX, Oracle JDBC read-only access

2003-12-18 Thread Peter Link
Question 1 of 2 OSX 10.2.8, Witango 5.0.1.065 server, JDBC from Oracle, Witango 5.5 beta and Witango 5.0.9 part of jdbc.ini DataSource ID=name DSNname/DSN DriverClassoracle.jdbc.OracleDriver/DriverClass

Witango-Talk: OSX, database password, indirect reference

2003-12-18 Thread Peter Link
Question 2 of 2 OSX 10.2.8, Witango 5.0.1.065 server, JDBC from Oracle, Witango 5.5 beta and Witango 5.0.9 Since we were successful accessing our institutional Oracle databases, we now have to follow their rules when deploying Oracle-accessing web pages. Witango stores the DB-access password

Re: Witango-Talk: @webroot problem with AS 5.01.065

2003-12-18 Thread Robert Garcia
Thanks Scott, That was it. A brain fart on my part. That is why I didn't submit the bug first. I have upgraded several times, and always change the userid and pwd of the service logon, and just completely forgot about it this time. Thanks, Robert. On Dec 17, 2003, at 3:25 PM, Scott

Re: Witango-Talk: @webroot problem with AS 5.01.065

2003-12-18 Thread Bryan Hughes
I am having the same problem with 065 on W2kSP4. What was the verdict on this? Bug? Has anyone found a work around? -B On Dec 17, 2003, at 6:25 PM, Scott Cadillac wrote: Hi Robert, Probably the most obvious thing to check is whether or not the Witango Service still has permission to that

Witango-Talk: config settings

2003-12-18 Thread Alan Wolfe
is it possible to change the value for QUERYTIMEOUT by using a variable? something like.. @assign request$querytimeout value="300" if i wanted to only change it for the current request? TO UNSUBSCRIBE: Go to

RE: Witango-Talk: config settings

2003-12-18 Thread Robert Shubert
QUERYTIMEOUT can only be set in the System scope (and requires the servers config password) -Original Message- From: Alan Wolfe [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 1:52 PM To: [EMAIL PROTECTED] Subject: Witango-Talk: config settings is it possible

Re: Witango-Talk: config settings

2003-12-18 Thread Alan Wolfe
ohthanks, so it would be like this right? @ASSIGN NAME=user$configPasswd VALUE='password here' @assign system$querytimeout value="300" - Original Message - From: Robert Shubert To: [EMAIL PROTECTED] Sent: Thursday, December 18, 2003 12:29 PM Subject: RE:

Witango-Talk: Dev Studio get total number of mathcing rows problem

2003-12-18 Thread Peter Link
OSX, Witango 5/5.5 Dev Studio. When we set up a taf using JDBC to get to Filemaker Pro, the only way we can get a results listing is to turn off the Get total number of matching rows box in the Results tab of the RecordList (using Search Builder). I am told by Jane Olivera, LLNL, that using

RE: Witango-Talk: config settings

2003-12-18 Thread Robert Shubert
Yup. Might want to do a @PURGE user$configPasswd afterwards, just to keep it clean. -Original Message- From: Alan Wolfe [mailto:[EMAIL PROTECTED] Sent: Thursday, December 18, 2003 4:04 PM To: [EMAIL PROTECTED] Subject: Re: Witango-Talk: config settings ohthanks, so it

Re: Witango-Talk: config settings

2003-12-18 Thread Alan Wolfe
ahh cool didnt think of that thank you (: - Original Message - From: Robert Shubert To: [EMAIL PROTECTED] Sent: Thursday, December 18, 2003 2:05 PM Subject: RE: Witango-Talk: config settings Yup. Might want to do a @PURGE user$configPasswd

Witango-Talk: Studio issue with selecting tables

2003-12-18 Thread Bill Conlon
Here's a scenario that is problematic for me. I have db with tables: dbx.t1, dbx.t2, etc. I build an appfile that reference columns in these tables. I now want to create another application that uses similar functionality, so I create a new database, with the same table names: dby.t1, dby.t2,

Re: Witango-Talk: Dev Studio get total number of mathcing rows problem

2003-12-18 Thread Customer Support
There are limitations to the FileMaker JDBC driver for version 6. It does not support count, joins, aggregation functions, etc. If you want this type of info you need to write a FileMaker script and use the call method to access it. The call works as a stored procedure call. I hear/rad there

Re: Witango-Talk: OSX, database password, indirect reference

2003-12-18 Thread Customer Support
This can be done very simply. Use a dynamic usernames and passwords (witango variables) on the deployment data source and embed an @INCLUDE statement in the variables value. This will cause the password to be read in from a file. e.g. @ASSIGN domain$dsnusername @LITERAL VALUE='@INCLUDE

Re: Witango-Talk: OSX, database password, indirect reference

2003-12-18 Thread Fergal Donlon
Just to add to this @ASSIGN domain$dsnusername @LITERAL VALUE='@INCLUDE FILE=' would mean the value of @@domain$dsnusername would be @INCLUDE FILE= Thus when you go to use it remember to call it as @var domain$dsnusername encoding=metahtml so that @INCLUDE FILE= is evaluated and the