Re: Witango-Talk: Witango Studio 5.0 Unexpectedly Quits in OSX

2005-05-12 Thread Christian Platt
Yes,
may i add that the studio is also the only Program i use, where you  
cannot print out from. (which is normally standard of macos)

Christian Platt
Am 12.05.2005 um 03:51 schrieb Robert Garcia:
No offense to Witango, but v5 on OS X should be considered more  
like a beta. It has lots of problems.

That reminds me. I have sent up feature requests to witango, for a  
LONG time, for 5.5 studio OS X to support scroll wheel on the  
mouse. It is the only program I use, that I cannot quickly scroll  
through text/code. I know it seems petty, but it really hinders my  
workflow. I am always going to the mousewheel, forgetting it  
doesn't work, and I have to do it manually.

Anybody else out there? Maybe if we let witango know we would like  
this fixed (more than just me), it will be moved higher on the  
priority list.

Sorry, but it really does drive me nuts. :-)
--
Robert Garcia
President - BigHead Technology
VP Application Development - eventpix.com
13653 West Park Dr
Magalia, Ca 95954
ph: 530.645.4040 x222 fax: 530.645.4040
[EMAIL PROTECTED] - [EMAIL PROTECTED]
http://bighead.net/ - http://eventpix.com/
On May 11, 2005, at 11:52 AM, Dave Lubovinsky wrote:

For anyone with Witango Dev Studio 5 experience on Mac OSX...any  
idea why the studio application frequently unexpectedly quits  
while editing a TAF? It does this on different machines (G4's,  
iMacs, iBooks) under different versions of OSX (10.2 and 10.3) and  
when editing a variety of TAF files on different Macs. Hence, I  
cannot pin it down to a particular machine or OS version. Could  
there be something in the TAF that causes this? This occurs rather  
frequently and is quite troublesome, because it sometimes results  
in a lot of lost work.

(Running: OSX, Witango 5.0, Webstar 5, FileMaker 5.5 Databases)
_ 
___
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


__ 
__
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


Re: Witango-Talk: Witango Studio 5.0 Unexpectedly Quits in OSX

2005-05-12 Thread Susan Brkich

No offense to Witango, but v5 on OS X should be considered more like a beta. It has lots of problems.


I agree with Robert's statement above, most of my Witango Dev. Studio crashes stopped when I upgraded from 5.0 to 5.5 and after I fixed all my old .tafs to get rid of that datasource character that got changed/converted in the newer versions of Witango.

And I still use BBEdit to change my Filemaker datasources, as trying to do so in Dev. Studio usually crashes the application. And if a .taf file seems to stop working for no apparent reason that can be seen in Dev. Studio, I open it in BBEdit to look for the problem -- once found a whole section of datasource information that had gotten corrupted, but I couldn't tell that from opening the file in Dev. Studio.

x-tad-smaller--
Susan A. Brkich '86
Web Administrator
Alumnae and Alumni of Vassar College (AAVC)
161 College Avenue
Poughkeepsie, NY  12603-2804
[EMAIL PROTECTED]
phone: 845.437.5449
fax: 845.437.7425

Founded in 1871, AAVC connects the more than 34,000 Vassar alumnae/i worldwide with each other and Vassar College.

Visit our web site at http://www.aavc.vassar.edu./x-tad-smallerOn May 11, 2005, at 9:51 PM, Robert Garcia wrote:


Witango-Talk: Converting AppleTalk ACGIs

2005-05-12 Thread Wayne Irvine
I have an old AppleScript ACGI on Tango 2000 that creates folders. I pass it
one argument via an external action and it creates a folder of that name.

I wish to convert it to OS X/WiTango. I assume I could still use AppleScript
but possibly a CLI Script would be better.

Can anyone give me some pointers to get me started?

Wayne Irvine

  Byte Services Pty Ltd
   http://www.byteserve.com.au/
  [EMAIL PROTECTED]
   Ph 02 9960 6099   Mob 0409 960 609   Fax 02 9960 6088


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


RE: Witango-Talk: WiTango Lite Version and Apache on Local Machine for Development

2005-05-12 Thread McGriff, Gary
Ok, so far, so good.  Apache is starting up with this line:

LoadModule WitangoModule modules/witango55_apache2.so

I don't seem to have a copy of the dll, witango55_apache2.dll.

I've searched hard drives and no suck file on my computer.

What's next?

Gary McGriff
NASA
[EMAIL PROTECTED]
544-9097

-Original Message-
From: Customer Support [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 11, 2005 8:28 PM
To: witango-talk@witango.com
Subject: Re: Witango-Talk: WiTango Lite Version and Apache on Local Machine
for Development

Gary,
There needs to be a space between the WitangoModule and the  
modules/witango55_apache2.dll.  This will give you the 2 arguments.

LoadModule WitangoModule modules/witango55_apache2.dll
WitangoModule witango55_apache2.so

You may also need to put the path to the module like /usr/libexec/ 
httpd/witango55_apache2.dll depending on where the module is.  Also  
make sure that the apache process has +rx privileges on the module file.

Witango Support

On 12/05/2005, at 10:59 AM, McGriff, Gary wrote:


 Tried calling a non-existent taf file.  HTTP 404 Not Found

 Put the following into the httpd.conf:

 # The following lines load the Witango 5.5 module for Apache 2 to   
 enable
 communication with the Witango Application Server
 LoadModule WitangoModule/witango55_apache2.so
 AddType application/witango-application-file taf tml thtml tcf wws

 When starting Apache, get the following error:

 Syntax Error:

 LoadModule takes two arguments, a module name and the name of a shared
 object file to load it from

 Suggestions?  Ideas?


   _

 From: Customer Support [mailto:[EMAIL PROTECTED]
 Sent: Wed 5/11/2005 6:51 PM
 To: witango-talk@witango.com
 Subject: Re: Witango-Talk: WiTango Lite Version and Apache on Local  
 Machine
 for Development



 Make sure that the plugin is only loading once in the httpd.conf
 file.  Try calling a non existent taf file and see if you receive an
 error message from the Witango plugin or the apache server.  This is
 the easiest way to see if the plugin is loaded and apache is passing
 requests to it.  You can also try adding mime mappings for the
 Witango file extensions after the load module lines (check the name
 of the Witango module):

 # The following lines load the Witango 5.5 module for Apache 2 to
 enable communication with the Witango Application Server
 LoadModule WitangoModule modules/witango55_apache2.dll
 WitangoModule witango55_apache2.so
 AddType application/witango-application-file taf tml thtml tcf wws


 Witango Support


 On 12/05/2005, at 4:36 AM, Jason Pamental wrote:



 Gary,

 You probably need to add the lines to the Apache httpd.conf file to
 load the plugin. It should look something like this (usually the
 last lines of the file):

 # Witango Module
 LoadModule WitangoModule modules/wapache2.so
 WitangoModule wapache2.so


 Hope this helps.

 Jason

 -

 Jason Pamental
 Director of Web Services
 North Sails

 Office: 401.643.1415
 Fax: 401.643.1420
 Mobile: 401.743.4406
 Email: [EMAIL PROTECTED]

 On May 11, 2005, at 2:17 PM, McGriff, Gary wrote:




 Ok, I've got Apache 2 and WiTango 5.5 Lite running on my laptop.

 Using localhost, I can see the html web pages.

 But once I call up a taf file, I get the following:

 ==
 The XML page cannot be displayed
 Cannot view XML input using style sheet. Please correct the error
 and then
 click the Refresh button, or try again later.

 The system cannot locate the object specified. Error processing
 resource
 'http://localhost/tango.dtd' http://localhost/tango.dtd' .
 ==

 What am I missing?

 Thanks in advance.

 Gary McGriff
 NASA
 [EMAIL PROTECTED]
 544-9097
  
 _
 ___
 TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


 http://www.witango.com/developer/maillist.taf



 Visit us at http://www.northsails.com http://www.northsails.com

 [This E-mail scanned for viruses by Declude Virus]







 Visit us at http://www.northsails.com http://www.northsails.com

 [This E-mail scanned for viruses by Declude Virus]

 _ 
 _
 __
 TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


 http://www.witango.com/developer/maillist.taf






 __ 
 __
 TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf
 http://www.witango.com/developer/maillist.taf





TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


Re: Witango-Talk: Witango Studio 5.0 Unexpectedly Quits in OSX

2005-05-12 Thread Wayne Irvine
Robert Garcia at [EMAIL PROTECTED] wrote:

 That reminds me. I have sent up feature requests to witango, for a
 LONG time, for 5.5 studio OS X to support scroll wheel on the mouse.
 It is the only program I use, that I cannot quickly scroll through
 text/code. I know it seems petty, but it really hinders my workflow.
 I am always going to the mousewheel, forgetting it doesn't work, and
 I have to do it manually.
 
 Anybody else out there?

Yeah, me too. The scroll wheel thing is a pain and so are the issues with
pasting from other apps (targeting wrong window or sourcing from wrong
clipboard etc).

As for corrupt files and datasource changes I have become quite adept at
editing entire TAFs in BBEdit. But if I wanted that sort of hassle I would
have learnt PHP. ;)

I have a fair idea of the issues of allocating resources at WiTango towers
but I think it's time us OS X users got our fair share.

Wayne Irvine 

  Byte Services Pty Ltd
   http://www.byteserve.com.au/
  [EMAIL PROTECTED]
   Ph 02 9960 6099   Mob 0409 960 609   Fax 02 9960 6088


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


Re: Witango-Talk: Converting AppleTalk ACGIs

2005-05-12 Thread Bill Conlon
Here's a quick hack, haven't tested it, as I'm just writing it here as  
a response.

Create a shell script, for example folder.sh (make it executable by  
witango)
#!/bin/sh
# folder.sh -- shell script to create a folder
mkdir $path

Then write an external action in witango that calls the script and  
passes the (absolute) path parameter.  You may need to play with  
permissions to set the directory's x-bit so you can open it.

On Thursday, May 12, 2005, at 06:57  AM, Wayne Irvine wrote:
I have an old AppleScript ACGI on Tango 2000 that creates folders. I  
pass it
one argument via an external action and it creates a folder of that  
name.

I wish to convert it to OS X/WiTango. I assume I could still use  
AppleScript
but possibly a CLI Script would be better.

Can anyone give me some pointers to get me started?
Wayne Irvine
  Byte Services Pty Ltd
   http://www.byteserve.com.au/
  [EMAIL PROTECTED]
   Ph 02 9960 6099   Mob 0409 960 609   Fax 02 9960 6088
___ 
_
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


Re: Witango-Talk: Converting AppleTalk ACGIs

2005-05-12 Thread Robert Garcia
There are a few ways, create a shell script on the fly with a file  
action, save it and then run it.

or
make a shell script that can accept a env var as input for the path  
you want to create.

or
Download my witango_cmd CLI utility, and you can easily pass a  
command to it like mkdir through an environment var, and it will run it.

http://www.bighead.net/tools
--
Robert Garcia
President - BigHead Technology
VP Application Development - eventpix.com
13653 West Park Dr
Magalia, Ca 95954
ph: 530.645.4040 x222 fax: 530.645.4040
[EMAIL PROTECTED] - [EMAIL PROTECTED]
http://bighead.net/ - http://eventpix.com/
On May 12, 2005, at 6:57 AM, Wayne Irvine wrote:
I have an old AppleScript ACGI on Tango 2000 that creates folders.  
I pass it
one argument via an external action and it creates a folder of that  
name.

I wish to convert it to OS X/WiTango. I assume I could still use  
AppleScript
but possibly a CLI Script would be better.

Can anyone give me some pointers to get me started?
Wayne Irvine
  Byte Services Pty Ltd
   http://www.byteserve.com.au/
  [EMAIL PROTECTED]
   Ph 02 9960 6099   Mob 0409 960 609   Fax 02 9960 6088
__ 
__
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf



TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


Witango-Talk: Dev studio crash when connecting to Oracle

2005-05-12 Thread MJPinckard
I'm having a problem connecting to Oracle (using Oracle OCI). If I  
attempt to open an existing configured datasource in the dev studio, it 
tells me that it can't reach the datasource, make sure  it is properly 
configured and online... this used to work (yesterday morning) so is 
properly configured, and I know the  database is online because I can 
access it through another tool - SQLGrinder. I doubt anything in the 
database has changed since then (I'm generally notified in advance of 
any changes).

If I attempt to create a new datasource it crashes after submitting from 
the connect string window. This occurs no matter what type of datasource 
I attempt to create (JDBC, Oracle etc).

I have shutdown and restarted my computer in the hopes that that  might 
clear something so it would work, this failed to correct the  problem.

I have upgraded to 10.3.9 since the last time I created a new 
datasource the web servers aren't having a problem connecting it is 
just my Dev Studio.

Mac OS X 10.3.9 Dev Studio 5.5.08, Oracle OCI
Any suggestions on what to do... I need to resolve this quickly. I've 
put in a request to customer service, but if anyone else has an idea on 
things I can do to help research and resolve the problem, I'd appreciate 
the help.

thanks,
Maggie

TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


Re: Witango-Talk: Witango Studio 5.0 Unexpectedly Quits in OSX

2005-05-12 Thread MJPinckard
Would like scroll wheel to work myself in 5.5. on OS X.
Maggie
Wayne Irvine wrote:
Robert Garcia at [EMAIL PROTECTED] wrote:
 

That reminds me. I have sent up feature requests to witango, for a
LONG time, for 5.5 studio OS X to support scroll wheel on the mouse.
It is the only program I use, that I cannot quickly scroll through
text/code. I know it seems petty, but it really hinders my workflow.
I am always going to the mousewheel, forgetting it doesn't work, and
I have to do it manually.
Anybody else out there?
   

Yeah, me too. The scroll wheel thing is a pain and so are the issues with
pasting from other apps (targeting wrong window or sourcing from wrong
clipboard etc).
As for corrupt files and datasource changes I have become quite adept at
editing entire TAFs in BBEdit. But if I wanted that sort of hassle I would
have learnt PHP. ;)
I have a fair idea of the issues of allocating resources at WiTango towers
but I think it's time us OS X users got our fair share.
Wayne Irvine 

 Byte Services Pty Ltd
  http://www.byteserve.com.au/
 [EMAIL PROTECTED]
  Ph 02 9960 6099   Mob 0409 960 609   Fax 02 9960 6088

TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf
 


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


Re: Witango-Talk: WiTango Lite Version and Apache on Local Machine for Development

2005-05-12 Thread Customer Support
Gary,
If you are using a unix based OS then you need to use  
witango55_apache2.so, if you are using windows it will be  
witango55_apache2.dll.  My bad I copied the one line from my config  
so you have a mix of a windows config and a unix config.  For OSX,  
Linux, Solaris it should be:

LoadModule WitangoModule modules/witango55_apache2.so
WitangoModule witango55_apache2.so
The plug ins should be in the WitangoServer/5.5/Install/Plugins  
directory.

Witango Support

TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


Re: Witango-Talk: Dev studio crash when connecting to Oracle

2005-05-12 Thread MJPinckard
further question... I've been able to continue working (got a deadline) 
by copying a search action, then manually editing the taf in BBEdit to 
point to the new columns in the new table... but... how necessary is the 
DataDictionary portion of the search action?

At this point, I've just ignored the old DataDictionary code (so it 
still has the old column information therein)... I'm concerned however 
that I'm likely to let myself in for later problems by leaving a 
mismatch between the DataDictionary and the SearchColumns... so, would 
it better to:

A. Delete the DataDictionary section altogether... it would presumably 
be automatically recreated later when/if I ever get the connection to 
the DB working again?

or
B. Manually edit the DataDictionary to conform to the columns in the new 
search?

FWIW, it does seem to be working on the server at present with the 
current mismatch, but this is of course not under load, and currently 
there isn't any data stored in the columns being referenced.

Maggie
MJPinckard wrote:
I'm having a problem connecting to Oracle (using Oracle OCI). If I  
attempt to open an existing configured datasource in the dev studio, 
it tells me that it can't reach the datasource, make sure  it is 
properly configured and online... this used to work (yesterday 
morning) so is properly configured, and I know the  database is online 
because I can access it through another tool - SQLGrinder. I doubt 
anything in the database has changed since then (I'm generally 
notified in advance of any changes).

If I attempt to create a new datasource it crashes after submitting 
from the connect string window. This occurs no matter what type of 
datasource I attempt to create (JDBC, Oracle etc).

I have shutdown and restarted my computer in the hopes that that  
might clear something so it would work, this failed to correct the  
problem.

I have upgraded to 10.3.9 since the last time I created a new 
datasource the web servers aren't having a problem connecting it 
is just my Dev Studio.

Mac OS X 10.3.9 Dev Studio 5.5.08, Oracle OCI
Any suggestions on what to do... I need to resolve this quickly. I've 
put in a request to customer service, but if anyone else has an idea 
on things I can do to help research and resolve the problem, I'd 
appreciate the help.

thanks,
Maggie

TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf

TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


RE: Witango-Talk: WiTango Lite Version and Apache on Local Machine for Development

2005-05-12 Thread McGriff, Gary
Thanks for your continued help.
 
Here's the list of files I have in the Plugins folder:
 
witango55_apache2.so
witango55_cgi.exe 
witango55_iis.dll
witango55_sun.dll
 
This laptop is running Windows XP Professional.
 
Which file should I use?
 
Thanks.

  _  

From: Customer Support [mailto:[EMAIL PROTECTED]
Sent: Thu 5/12/2005 5:31 PM
To: witango-talk@witango.com
Subject: Re: Witango-Talk: WiTango Lite Version and Apache on Local Machine
for Development



Gary, 
If you are using a unix based OS then you need to use  
witango55_apache2.so, if you are using windows it will be  
witango55_apache2.dll.  My bad I copied the one line from my config  
so you have a mix of a windows config and a unix config.  For OSX,  
Linux, Solaris it should be: 

LoadModule WitangoModule modules/witango55_apache2.so 
WitangoModule witango55_apache2.so 


The plug ins should be in the WitangoServer/5.5/Install/Plugins  
directory. 


Witango Support 

 
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf
http://www.witango.com/developer/maillist.taf  


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


Re: Witango-Talk: WiTango Lite Version and Apache on Local Machine for Development

2005-05-12 Thread Customer Support
Gary,
The lines should be exactly the same.
LoadModule WitangoModule modules/witango55_apache2.so
WitangoModule witango55_apache2.so
Copy the witango55_apache2.so file to the modules directory of the  
Apache server and restart the service.

The other files are for a cgi interface, IIS 5/6 and Sun Web Server  
respectively.

Witango Support

On 13/05/2005, at 8:55 AM, McGriff, Gary wrote:
Thanks for your continued help.
Here's the list of files I have in the Plugins folder:
witango55_apache2.so
witango55_cgi.exe
witango55_iis.dll
witango55_sun.dll
This laptop is running Windows XP Professional.
Which file should I use?
Thanks.
  _
From: Customer Support [mailto:[EMAIL PROTECTED]
Sent: Thu 5/12/2005 5:31 PM
To: witango-talk@witango.com
Subject: Re: Witango-Talk: WiTango Lite Version and Apache on Local  
Machine
for Development


Gary,
If you are using a unix based OS then you need to use
witango55_apache2.so, if you are using windows it will be
witango55_apache2.dll.  My bad I copied the one line from my config
so you have a mix of a windows config and a unix config.  For OSX,
Linux, Solaris it should be:
LoadModule WitangoModule modules/witango55_apache2.so
WitangoModule witango55_apache2.so
The plug ins should be in the WitangoServer/5.5/Install/Plugins
directory.
Witango Support
__ 
__
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf
http://www.witango.com/developer/maillist.taf

__ 
__
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf


RE: Witango-Talk: WiTango Lite Version and Apache on Local Machine for Development

2005-05-12 Thread McGriff, Gary
Well, thank you, thank you, thank you.
 
IT WORKS
 
I appreciate all your help.

  _  

From: Customer Support [mailto:[EMAIL PROTECTED]
Sent: Thu 5/12/2005 6:11 PM
To: witango-talk@witango.com
Subject: Re: Witango-Talk: WiTango Lite Version and Apache on Local Machine
for Development



Gary, 
The lines should be exactly the same. 

LoadModule WitangoModule modules/witango55_apache2.so 
WitangoModule witango55_apache2.so 

Copy the witango55_apache2.so file to the modules directory of the  
Apache server and restart the service. 

The other files are for a cgi interface, IIS 5/6 and Sun Web Server  
respectively. 

Witango Support 



On 13/05/2005, at 8:55 AM, McGriff, Gary wrote: 

 Thanks for your continued help. 
 
 Here's the list of files I have in the Plugins folder: 
 
 witango55_apache2.so 
 witango55_cgi.exe 
 witango55_iis.dll 
 witango55_sun.dll 
 
 This laptop is running Windows XP Professional. 
 
 Which file should I use? 
 
 Thanks. 
 
   _ 
 
 From: Customer Support [mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] ] 
 Sent: Thu 5/12/2005 5:31 PM 
 To: witango-talk@witango.com 
 Subject: Re: Witango-Talk: WiTango Lite Version and Apache on Local  
 Machine 
 for Development 
 
 
 
 Gary, 
 If you are using a unix based OS then you need to use 
 witango55_apache2.so, if you are using windows it will be 
 witango55_apache2.dll.  My bad I copied the one line from my config 
 so you have a mix of a windows config and a unix config.  For OSX, 
 Linux, Solaris it should be: 
 
 LoadModule WitangoModule modules/witango55_apache2.so 
 WitangoModule witango55_apache2.so 
 
 
 The plug ins should be in the WitangoServer/5.5/Install/Plugins 
 directory. 
 
 
 Witango Support 
 
 __ 
 __ 
 TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf
http://www.witango.com/developer/maillist.taf  
 http://www.witango.com/developer/maillist.taf
http://www.witango.com/developer/maillist.taf  
 
 __ 
 __ 
 TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf
http://www.witango.com/developer/maillist.taf  
 

 
TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf
http://www.witango.com/developer/maillist.taf  


TO UNSUBSCRIBE: Go to http://www.witango.com/developer/maillist.taf