RE: Consuming WSDL with PHP - Still looking ...

2004-03-16 Thread Michael Kear
Thank you Rob.  I guess you have to pay for your computer time by the keystroke and that's why it was too much trouble to put a sentence about what was in each url. Anyway the first one seems like it might be useful, it's apparently a tutorial on using a web service, but difficult for me to figur

RE: Same Numbers in List

2004-03-16 Thread Pascal Peters
If the elements in the list are integers: The list is empty They are the same They are different If it could be anything, replace [0-9] by [^,] Pascal > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: dinsdag 16 maart 2004 1:26 > To: CF-Talk > Subj

RE: Consuming WSDL with PHP - Still looking ...

2004-03-16 Thread Rob
On Tue, 2004-03-16 at 00:03, Michael Kear wrote: > Thank you Rob.  I guess you have to pay for your computer time by the > keystroke and that's why it was too much trouble to put a sentence about > what was in each url. um... you're welcome? That was about the rudest thing anyone has said to me

RE: Consuming WSDL with PHP - Still looking ...

2004-03-16 Thread Michael Kear
Yes, I guess you're annoyed with me.  And I'm sorry I was rude.  But it's been very frustrating for me. I'm accused by the PHP developers who want to use my web service of producing invalid code.  It's a FREE web service, from a PRO BONO project- it costs me a great deal of time and therefore incom

cfhttp and cfmailpart

2004-03-16 Thread Thomas Chiverton
According to the docs, if you use cfhttp url... getAsBinary="Auto" then the cfoutput tag is unable to output the response body. If I'm using cfhttp to grab (say) a (binary) PDF document, how can I output this into a cfmailpart to make an attachment to an email ? -- Tom Chiverton Advanced ColdF

CFC Web services wont work with PHP sites

2004-03-16 Thread Michael Kear
I've come to the conclusion that it's not true that CF web services offer a widely available method of syndicating info between sites.  Well not between ColdFusion sites and PHP sites anyway.  It's another myth that goes along with "98% of web browsers have Flash already installed".** The fact is,

Re: CFC Web services wont work with PHP sites

2004-03-16 Thread Jochem van Dieten
Michael Kear said: > > The fact is, that in all these weeks and weeks of looking, there is > NO ONE on the PHP side of things that knows how to use a web service > generated by Coldfusion.  They know how to use RSS feeds and that's > all.  They wont learn if they don't know,  and won't share if the

Re: CFC Web services wont work with PHP sites

2004-03-16 Thread Thomas Chiverton
On Tuesday 16 Mar 2004 09:35 am, Michael Kear wrote: > The fact is, that in all these weeks and weeks of looking, there is NO ONE > on the PHP side of things that knows how to use a web service generated by > Coldfusion.  They know how to use RSS feeds and that's all.  They wont > learn if they don

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Michael Kear
Thanks Tom. I don't know what you put in Google, but I've been googling away for weeks and haven't seen that page. Anyway,   so here's an example in that article: [quote]     include('SOAP/Client.php');     $SOAPClient = new SOAP_Client("http://localhost/SOAP/example/server.php");     $SOAP

Re: CFC Web services wont work with PHP sites

2004-03-16 Thread Neculai Macarie
Mike Kear wrote: > How do I tell these PHP folks who wont learn and don't have a clue, how to > use method getthisweeksevents > >   from the web service at > http://bluegrass.org.au/_cfcs/anniversaries.cfc?wsdl   What code do I > change? And to what? I get the code of the coldfusion component wh

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Jochem van Dieten
Michael Kear said: > > > include('SOAP/Client.php'); > $SOAPClient = new SOAP_Client("http://localhost/SOAP/example/server.php"); > $SOAPOptions = array( > 'namespace'=> 'urn:SOAP_Example_Server', > 'trace'=>1 > ); > $sEquation = $SOAPclient->call( >

get the CFAPPLICATION name

2004-03-16 Thread David Ashworth
might be a really easy one this, but how do I output the CFAPPLICATION name? was thinking request.applicationname or something along those links but haven't figured it out or been able to find the answer thanks in advance [Todays Threads] [This Message] [Subscription] [Fast Unsubscr

Re: CFC Web services wont work with PHP sites

2004-03-16 Thread Thomas Chiverton
On Tuesday 16 Mar 2004 09:54 am, Michael Kear wrote: > Thanks Tom. I don't know what you put in Google, but I've been googling > away for weeks and haven't seen that page. I think it was "consume web service in php". > You see, my problem is I have to write a specific set of instructions and > no

Re: get the CFAPPLICATION name

2004-03-16 Thread Neculai Macarie
> might be a really easy one this, but >   > how do I output the CFAPPLICATION name? >   > was thinking request.applicationname or something along those links but > haven't figured it out or been able to find the answer Application.ApplicationName Regards, [Todays Threads] [This Message] [S

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Michael Kear
Interesting, Jochem.  This is like an onion.  Every time I unwrap one layer, it reveals a dozen new layers underneath. That web service worked on the server this code was running on until last Friday.  It works on my dev server.   The "public" method works on its own web site,  and exactly the sa

Re: CF & Open VMS

2004-03-16 Thread Dan O'Keefe
> Anyone ever tried to tie the two together with some type of data > access? My guess it will be more like data exports/import from VMS to > SQL on my end. > Dan For the sake of the archives, one possible solution I found is at: http://www.synergex.com/oll_files/synergex-2288.asp Dan [Todays

Re: CFC Web services wont work with PHP sites

2004-03-16 Thread Thomas Chiverton
On Tuesday 16 Mar 2004 10:57 am, Michael Kear wrote: > google, all tell me how to create a web service in PHP, but no one gives > any instructions I can understand on how to consume a WSDL web service.    Does http://www.onlamp.com/pub/a/php/2003/07/03/php_amazon_soap.html make things clearer ? -

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Michael Kear
Taking a look at a different part of this issue now . can anyone see what's wrong with this code?  Why this would work as a web service on one server but not another? (Valid SQL Query cut and pasted from Query Builder) hint="This returns the anniversaries happening this week

Re: CFC Web services wont work with PHP sites

2004-03-16 Thread Jochem van Dieten
Michael Kear wrote: > > That web service worked on the server this code was running on until last > Friday.  It works on my dev server.   The "public" method works on its own > web site,  and exactly the same code (but with different query names and > function names) doesn't work as a web service,

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Tim Blair
> Anyway,   so here's an example in that article: That looks overly complex for what you're doing.  The PHP PEAR libraries provide a nice and simple way of using a web service when you've got the WSDL for it, so you don't need to worry about all the SOAP stuff (name spaces etc) directly. I've jus

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Michael Kear
Michael Kear wrote: > > That web service worked on the server this code was running on until last > Friday.  It works on my dev server.   The "public" method works on its own > web site,  and exactly the same code (but with different query names and > function names) doesn't work as a web service,

CFMX 6.1 Strange Behaviour on form posts

2004-03-16 Thread Andrew McNeish
I am currently upgrading from CFMX to 6.1 and am experiencing strange behaviour with regard to the combination of submitting data via HTML forms using the post method and coldfusion. It seems that using the post method to submit a form and then detecting that form post using IsDefined('Form.btnNam

RE: Coldfusion MX 6.1 Security

2004-03-16 Thread John Beynon
Keep an eye on this page, http://www.macromedia.com/support/coldfusion/ts/documents/tn17883.htm jb. Check in cfadmin, system info > java class path section to see which .jar hotfixes you have applied -Original Message- From: Bobby [mailto:[EMAIL PROTECTED] Sent: 16 March 2004 01:49 To:

Re: Coldfusion MX 6.1 Security

2004-03-16 Thread dcooper
The Security Zone is where you can find all Macromedia product security patches, bulletins, recommedation best-practive lock-down guides, etc. Check it out and use it often.  It's also directly linked from the CF Administrator Home Page for handy reference. http://www.macromedia.com/security [To

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Craig Dudley
Returning a query might be your problem, I doubt PHP will be able to understand the returned data type, from memory its a "QueryBean" , even in java you have to write a complex datatype handler to use them. Granted, I'm no java expert but I've not managed it yet. When returning data from web ser

RE: OT: Uh-Oh...another SQl question...should be easy.

2004-03-16 Thread Che Vilnonis
thanks Jeff. appreciate it.   -Original Message-   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]   Sent: Monday, March 15, 2004 5:16 PM   To: CF-Talk   Subject: Re: OT: Uh-Oh...another SQl question...should be easy.   select refkeywords, sum(refcount)     from tableName   g

RE: Same Numbers in List

2004-03-16 Thread kelly
This is correct. Just wanting to see if all the numbers in one list are the same. > I believe Kelly is not attempting to compare two lists, but rather to > compare the individual items in one list. Could be wrong though. > > > > -Original Message- > From: Greg Luce [mailto:[EMAIL PROTECTED

OT: Another SQL Question...

2004-03-16 Thread Che Vilnonis
I know I'm a PITA...but a have another SQL question. Take the following query: SELECT RefKeywords, SUM(RefCount) AS TRefCount FROM Referer GROUP BY RefKeywords ORDER BY SUM(RefCount) DESC How would I write the same query with a WHERE clause that had a 'SUM(RefCount) > 5' ??? I get an error with

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Ian Skinner
It looks like it works to me? I run this url:  http://bluegrass.org.au/_cfcs/anniversaries.cfc?method=getthisweeksevents And I get this wddx packet: 599.0602.01033.01034.01035.01036.01037.01038.01039.01040.0595.0596.0598.0942.0594.0birthd

RE: cfhttp and cfmailpart

2004-03-16 Thread Tom Jordahl
Use CFFile to write it to disk and add it as an attachment. -- Tom Jordahl Macromedia Server Development -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 4:04 AM To: CF-Talk Subject: cfhttp and cfmailpart According to the docs, if you use

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Ian Skinner
You probably do not want to see another URL, but I found this one on Google under -- PHP WDDX --: http://us2.php.net/wddx I just glanced at it, looks like WDDX support may not be native to all versions of PHP, the first page looks like it talks about what to install for older versions. But the mo

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Dave Watts
> Taking a look at a different part of this issue now . can > anyone see what's wrong with this code?  Why this would work > as a web service on one server but not another? > > > > > returntype="query" hint="This returns the anniversaries > happening this week as a query "> Rather than ans

Re: CF & Open VMS

2004-03-16 Thread Kevin Kazmierczak
Dan,     I use CF to connect to our VMS system using CONNX.  With CFMX you need to use the JDBC server and drivers which complicate things a little, but it does work.  When it feels like it ;) Kevin.   - Original Message -   From: Dan O'Keefe   To: CF-Talk   Sent: Monday, March 15, 200

Encryption Tag

2004-03-16 Thread Scott Wilhelm
Can anyone point out a free encryption tag?  I want to be able to take a password & encrypt & decrypt it for a little added security. Thanks, Scott Scott Wilhelm Computer Technician/Web Developer http://www.sllboces.org [EMAIL PROTECTED] Canton (Mon/Tue/Wed) St. Lawrence-Lewis BOCES PO B

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Burns, John D
I think all of the sources mentioned were very reliable.  Web services are very simple to create in CF once you know how to make CFCs.  I don't think you're having a problem with creating them, you're having a problem consuming them from another language (PHP).  I don't think any of them ever said

Re: CFC Web services wont work with PHP sites (Repeated from Web Interface)

2004-03-16 Thread Ian Skinner
It looks like it works to me? I run this url:  http://bluegrass.org.au/_cfcs/anniversaries.cfc?method=getthisweeksevents And I get this wddx packet: 599.0602.01033.01034.01035.01036.01037.01038.01039.01040.0595.0596.0598.0942.0594.0birthd

OT: International Payment Processing

2004-03-16 Thread Haggerty, Mike
A client of mine is looking to set up an ecommerce site that accepts orders from outside the United States. More specifically, he has a large number of clients in places like Malaysia, Singapore, Hong Kong, etc. and is trying to avoid the large fees and wait times that go along with using cashiers

RE: CFC Web services wont work with PHP sites

2004-03-16 Thread Dave Watts
> I thought that what was generated by the CFC using > access="Remote"  was WSDL - a flavour of SOAP. To be precise, WSDL isn't SOAP. SOAP (Simple Object Access Protocol) is an XML language used by services and their clients to exchange data. If this is done over HTTP, those services are web servi

CF OO: Help with implementing DB-persisted object inheritance (i.e. the SQL aspect)

2004-03-16 Thread Jamie Jackson
Say I've modeled the inheritance in this manner (table per class): http://www.agiledata.org/essays/mappingObjects.html#MapEachClassToTable I'm having a tough time figuring out how to join a (subclass's) table whose name comes from a column value. Assuming this is the right way to go about it, how

RE: Another SQL Question...

2004-03-16 Thread Che Vilnonis
sorry, i figured this one out already...   -Original Message-   From: Che Vilnonis [mailto:[EMAIL PROTECTED]   Sent: Tuesday, March 16, 2004 9:18 AM   To: CF-Talk   Subject: OT: Another SQL Question...   I know I'm a PITA...but a have another SQL question.   Take the following query:   SE

Query table names in MySQL

2004-03-16 Thread Burns, John D
Anyone know the syntax for querying a list of tablenames for a given database in MySQL from CF? select tablenames ??? Thanks for any info you can pass along. John [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Another SQL Question...

2004-03-16 Thread Pascal Peters
SELECT RefKeywords, SUM(RefCount) AS TRefCount FROM Referer GROUP BY RefKeywords HAVING SUM(RefCount) > 5 ORDER BY SUM(RefCount) DESC > -Original Message- > From: Che Vilnonis [mailto:[EMAIL PROTECTED] > Sent: dinsdag 16 maart 2004 15:18 > To: CF-Talk > Subject: OT: Another SQL Question

Re: Encryption Tag

2004-03-16 Thread Bryan Stevenson
CF_Cryptnot to be confused with CF_Cryp It encrypts/decrypts and uses a keyworks fine...haven't had a  glitch yet (in 6 months) If you can't find it online...let me know offlist and I can fire it your way Cheers Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Ed

RE: Another SQL Question...

2004-03-16 Thread DURETTE, STEVEN J (AIT)
Che, Just off the top of my head, I believe it is: select refkeywords, sum(refcount) as trefcount from referer group by refkeywords having sum(refcount) > 5 order by sum(refcount) desc I haven't tested it but give it a try. Steve -Original Message- From: Che Vilnonis [mailto:[E

Re: Grabbing username account from Windows login screen

2004-03-16 Thread Mickael
Hi Ian, I would like to see some of that code. Thanks Mike   - Original Message -   From: Ian Skinner   To: CF-Talk   Sent: Monday, March 15, 2004 3:27 PM   Subject: RE: Grabbing username account from Windows login screen   If you check Integrated Windows Authentication and Uncheck a

Re: Query table names in MySQL

2004-03-16 Thread Tom Smith
show tables ? and then dump the variable... don't know if it'll work, but it's gotta be worth a try - Original Message - From: "Burns, John D" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, March 16, 2004 4:14 PM Subject: Query table names in MySQL > Anyone know the

RE: Encryption Tag

2004-03-16 Thread John Beynon
What about hash() Jb. -Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED] Sent: 16 March 2004 14:55 To: CF-Talk Subject: Encryption Tag Can anyone point out a free encryption tag?  I want to be able to take a password & encrypt & decrypt it for a little added security. T

RE: Encryption Tag

2004-03-16 Thread Brendan Avery
Hash() is asymmetric -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 10:02 AM To: CF-Talk Subject: RE: Encryption Tag What about hash() Jb. -Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED] Sent: 16 March 2004 14:55 T

RE: Encryption Tag

2004-03-16 Thread Burns, John D
Hash() will let you decrypt but there's no way to decrypt.  If you're just doing password stuff, you can hash the original entry and store the hashed value in the database, then each time they log in, hash the value they enter and see if it matches.  The only downside is that you can't "recover" lo

RE: Grabbing username account from Windows login screen

2004-03-16 Thread Ian Skinner
First if all, it is very important that Anonymous access is UNCHECKED and Integrated Windows authentication is CHECKED in the Authentication Methods under Directory Security of any website (or directory or file) that one wants to get user information from.   component = "NTSecurity"   method

More on Laszlo

2004-03-16 Thread Dick Applebaum
I have been playing around with Laszlo and here is what I found. Laszlo is a Flash competitor and may also be a competitor to MM Flex nee Royale. I am not sure of the latter because I have not seen either Flex or Royale. Laszlo is used, like Flash, to create the client side of RIA apps. Laszl

RE: Grabbing username account from Windows login screen

2004-03-16 Thread Douglas.Knudsen
what if your webserver is not in the same domain as your users PC?   On the other end, your webserver needs full acces to the AD, correct? Doug -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 11:52 AM To: CF-Talk Subject: RE: Grabbing usernam

Re: Encryption Tag

2004-03-16 Thread Bryan Stevenson
hash() is not encryption...uit's a hash ;-) one way only Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

CF server on a different machine?

2004-03-16 Thread Burns, John D
If there is a Windows 2000 server with CF 5 on it and then another linux server running apache webserver, how would you set up the apache webserver to map the .cfm extensions to the Windows CF5 server for processing?  Is this possible?  Please let me know. John [Todays Threads] [This Message]

RE: More on Laszlo

2004-03-16 Thread Raymond Camden
> Laszlo is a Flash competitor and may also be a competitor to > MM Flex nee Royale. > > I am not sure of the latter because I have not seen either > Flex or Royale. > > Laszlo is used, like Flash, to create the client side of RIA apps. Um, doesn't Laszlo _generate_ Flash? If so, isn't it more

RE: CF server on a different machine?

2004-03-16 Thread Dave Watts
> If there is a Windows 2000 server with CF 5 on it and then > another linux server running apache webserver, how would you > set up the apache webserver to map the .cfm extensions to the > Windows CF5 server for processing?  Is this possible?  Please > let me know. You'll need to install CF o

RE: CF server on a different machine?

2004-03-16 Thread Barney Boisvert
You can do it with mod_proxy and/or mod_rewrite.  This is how I run tomcat behind apache on my personal machine.  Not remarkably scalable, but it works quite well.  If you're interested in the specific apache config, let me know Cheers, barneyb > -Original Message- > From: Burns, John D [

RE: More on Laszlo

2004-03-16 Thread Dave Carabetta
>I have been playing around with Laszlo and here is what I found. > >Laszlo is a Flash competitor and may also be a competitor to MM Flex >nee Royale. > I'm not sure it's a competitor to Flash, seeing as it compiles its file to the SWF format. If anything, it *uses* Flash as its presentation tech

Re: cfhttp and cfmailpart

2004-03-16 Thread Thomas Chiverton
On Tuesday 16 Mar 2004 14:32 pm, Tom Jordahl wrote: > Use CFFile to write it to disk and add it as an attachment. :nods I was afraid that would be that answer. I'd really like to avoid that... -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueF

RE: Grabbing username account from Windows login screen

2004-03-16 Thread Bushy
--Original Message Text--- From: [EMAIL PROTECTED] Date: Tue, 16 Mar 2004 11:03:49 -0600 what if your webserver is not in the same domain as your users PC?   On the other end, your webserver needs full acces to the AD, correct? Doug -Original Message- From: Ian Skinner [mailto:[EMAIL PRO

RE: Grabbing username account from Windows login screen

2004-03-16 Thread Bushy
ok...but whats weird is I UNCHECKED the Anonymous access and CHECKED the Integrated Windows authentication and when I go the the website I still get prompted for a username/password via NT authentication. WTF? --Original Message Text--- From: Ian Skinner Date: Tue, 16 Mar 2004 08:52:27 -0800 Fi

RE: cfhttp and cfmailpart

2004-03-16 Thread Barney Boisvert
You can write it to file directly with CFHTTP (check the 'file' and 'path' attributes) and save yourself the extra step. Cheers, barneyb > -Original Message- > From: Thomas Chiverton [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 16, 2004 9:47 AM > To: CF-Talk > Subject: Re: cfhttp an

RE: Grabbing username account from Windows login screen

2004-03-16 Thread Mike Townend
Assuming you use IE (as Integrated Windows Authentication (AFAIK) only works on IE) then IE will try to send your currently logged in username and password to the server.  If the server doesnt find a match for this then it sends back to the browser a login failure which then prompts IE to prompt th

Re: More on Laszlo

2004-03-16 Thread Dick Applebaum
You are correct, of course -- It does use Flash -- I think that Laszlo sees Flash as a winner (much as New Atlanta sees CFML as a winner). But, since MM gives away the Flash player and Sells The IDE, I think anything that provides an alternative to buying the IDE is a competitor, No? One thing

Dreamweaver extension - CVS Update

2004-03-16 Thread Bickham, Randy
I've been looking for a way to connect Dreamweaver MX 2004 to our CVS repository.  We connect using SSH.  I've been trying to use the demo (lite) version of CVS Update (it's on the MM exchange) that grafxsoftware puts out, but can't get it to connect using ssh and their help files aren't very helpf

RE: Grabbing username account from Windows login screen

2004-03-16 Thread Dave Watts
> ok...but whats weird is I UNCHECKED the Anonymous access and > CHECKED the Integrated Windows authentication and when I go > the the website I still get prompted for a username/password > via NT authentication. By itself, this will not allow IE to automatically send your domain login to the w

Re: Query table names in MySQL

2004-03-16 Thread Butch Zaccheo
Oops... My last post was for ACCESS database... On 3/16/04 8:30 AM, "Tom Smith" <[EMAIL PROTECTED]> wrote: > show tables ? and then dump the variable... don't know if it'll work, but > it's gotta be worth a try > - Original Message - > From: "Burns, John D" <[EMAIL PROTECTED]> > To: "CF-T

Re: More on Laszlo

2004-03-16 Thread Dave Carabetta
>You are correct, of course -- It does use Flash -- I think that Laszlo >sees Flash as a winner (much as New Atlanta sees CFML as a winner). > >But, since MM gives away the Flash player and Sells The IDE, I think >anything that provides an alternative to buying the IDE is a >competitor, No? Well,

Re: More on Laszlo

2004-03-16 Thread Dick Applebaum
On Mar 16, 2004, at 9:37 AM, Dave Carabetta wrote: >  >Laszlo code is written in XML and _javascript_ as opposed to the >  >Movie/ActionScript construct of Flash. > >  I think that this is a key statement because it allows new developers > to >  leverage existing knowledge as opposed to having to

Re: OT: International Payment Processing

2004-03-16 Thread Christopher Dempsey
Mike, Our site is handling credit cards from all over the world.  The only few gotcha's I can think of are: * Authorization timeouts are all over the place.  Some foriegn banks do not timeout auth's without bill's for a long time. * Many foriegn banks do not support the CV number, or address ver

Re: More on Laszlo

2004-03-16 Thread Dick Applebaum
On Mar 16, 2004, at 10:33 AM, Dave Carabetta wrote: >  >One thing I haven;t been able to determine is what LZ (Hate typing >  >Laszlo) sells -- and how much it costs. > >  They sell the J2EE EAR/WAR file that contains the Laszlo engine. It's > akin >  to how Macromedia (most likely) will be offer

OT: Owner of CF-Talk Yahoo group please contact me

2004-03-16 Thread Michael Dinowitz
Will the owner of the CF-Talk list on Yahoo please contact me. The group was set up as a mirror of the HoF list and has not had content since 2000. All posts to the group fail and I'd like to make use of it as a secondary archive of the list. Thanks p.s. I've got [EMAIL PROTECTED] as a secondary a

Re: More on Laszlo

2004-03-16 Thread Dave Carabetta
> >  >One thing I haven;t been able to determine is what LZ (Hate typing > >  >Laszlo) sells -- and how much it costs. > > > >  They sell the J2EE EAR/WAR file that contains the Laszlo engine. It's > > akin > >  to how Macromedia (most likely) will be offering the Flex engine when > > it's > >  don

Oracle9, CF5 and Merant drivers

2004-03-16 Thread Matt Robertson
I hopefully just finished a marathon with a user trying to use CF5 and Oracle 9.  They were having problems we eventually worked out, but I saw this preceding every error message: [MERANT][ODBC Oracle 8 driver] ... error message goes here ... It looks from the above that they're running an Oracle

SOT: using web services the raw way

2004-03-16 Thread Rob
I am writting some low level libarires to access web services from _javascript_, (if you care I am trying to make something like _javascript_ remoting) and I am having a bit of trouble getting information to and from services. Things are going pretty well; however, when I post to a ?wsdl I get the

RE: Oracle9, CF5 and Merant drivers

2004-03-16 Thread Dave Watts
> I hopefully just finished a marathon with a user trying to > use CF5 and Oracle 9.  They were having problems we > eventually worked out, but I saw this preceding every error > message: > > [MERANT][ODBC Oracle 8 driver] ... error message goes here ... > > It looks from the above that they'r

RE: using web services the raw way

2004-03-16 Thread Dave Watts
> I am writting some low level libarires to access web services > from _javascript_, (if you care I am trying to make something > like _javascript_ remoting) and I am having a bit of trouble > getting information to and from services. > > Things are going pretty well; however, when I post to a

RE: Oracle9, CF5 and Merant drivers

2004-03-16 Thread Lofback, Chris
One other thought.  Is there any reason why you are not using the Oracle ODBC driver that comes with the Oracle client?  We've seen the occasional odd error using the Merant driver and prefer to use the Oracle driver whenever possible. Chris -Original Message- From: Matt Robertson [mailto

I really don't know why I care anymore...

2004-03-16 Thread Tyler Silcox
I just ran the glorious updater for DWMX 2K4 and I lost all my precious snippet shortcuts...arrr! All I have to say at this point is that the DWMX developers better have some good solid code lined up in this updater and in the next release or I am jumping ship and never, ever, ever, ever

Re: I really don't know why I care anymore...

2004-03-16 Thread Bryan Stevenson
Sure am glad I still use CF Studio or HomeSite+ ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com -

SOT: My Boolean Logic is very rusty today.

2004-03-16 Thread Ian Skinner
I wrote the following monster compound if statement.  It works and produces the correct results, but my instincts say there is a better way, but my Boolean logic doesn't seem to be up to the task.  Anybody want to see if they can trim this beast down to a more elegant solution? Just to say that you

RE: I really don't know why I care anymore...

2004-03-16 Thread Mark W. Breneman
After running the updater is the only time I have been able to get the snippet shortcuts to work in DWMX04.  I too found that all of my keyboard shortcuts were missing. Then I found that DW had defaulted back to the standard shortcuts.  I found my set still in DW just not selected.  Now I am as hap

Re: CF OO: Help with implementing DB-persisted object inheritance (i.e. the SQL aspect)

2004-03-16 Thread Jamie Jackson
Nevermind. This stuff's starting to come into focus now. Jamie On Tue, 16 Mar 2004 10:27:31 -0500, in cf-talk you wrote: >Say I've modeled the inheritance in this manner (table per class): >http://www.agiledata.org/essays/mappingObjects.html#MapEachClassToTable > >I'm having a tough time figurin

RE: using web services the raw way

2004-03-16 Thread Rob
On Tue, 2004-03-16 at 12:06, Dave Watts wrote: > > Does anyone know, or have some tasty links to information > > about, what http headers the web webservice is expecting? I > > have used web services in java and cfinvoke, but they > > abstract the low level stuff (which is what I am trying to do

"Undefined in Form" when using MSIE

2004-03-16 Thread Michelle Dickens
We are experiencing random occurrences of the error message “element X undefined in form” when using MSIE 6.0.  (X represents the names of various form variables and is always the first form variable referenced in the action file.)  This problem cannot be duplicated using Netscape.  When th

query of query trimming?

2004-03-16 Thread Turetsky, Seth
Looks like when I run a query of query, it's stripping out some carriage returns(which I need).  Has anyone else seen this, known thing? Example: PASSWORD="#app_passwd#"> select text1 from myView where key = 100 select text1 from mainQuery where detail_key = 1 PASSWORD="#app_passwd#">

Re: query of query trimming?

2004-03-16 Thread Jerry Johnson
Are you sure they have a chr(13) (Carriage Return). It might have just a line feed (chr(10)). Try replacing chr(10) instead. Jerry Johnson [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: I really don't know why I care anymore...

2004-03-16 Thread Morgan Senkal
Dreamweaver?  Isn't that a song or something?  :P Never use it...never will ( for the next IT cycle at least! ) >After running the updater is the only time I have been able to get the >snippet shortcuts to work in DWMX04.  I too found that all of my keyboard >shortcuts were missing. Then I found

RE: "Undefined in Form" when using MSIE

2004-03-16 Thread Michael T. Tangorre
What do you have the enctype set to in the form tag? Also, do you have any links to provide us where we might see this happening? Mike > We are experiencing random occurrences of the error message > "element X undefined in form" when using MSIE 6.0.   > (X represents the names of variou

RE: I really don't know why I care anymore...

2004-03-16 Thread Michael T. Tangorre
I use it sparingly, although I am using it more and more now that I think of it. I have not run into losing snippets or shortcuts, etc yet but if I did, I sure would be pved! I am still trying to get it to match the indent spacing used in HS+, everytime I flip flop between the two my code goes

Re: "Undefined in Form" when using MSIE

2004-03-16 Thread Nick Han
I have had the same problem with my sites and raised the subject in this list before.  I guess there's no real fix as far as a patch to fix IE.  The kluge I have to prevent the processing page from erring out on a post action, when this mysterious bug occurs. Before processing the submitted form,

Quick Help

2004-03-16 Thread Matthew Friedman
I forgot the function to get the time a page took to process in CF (ie like in the debugger) I need to run a large scheduled task each night and I would like to see how long it ran. I searched the HOF site but could not find it. Thanks Matthew Friedman [Todays Threads] [This Message] [Subs

RE: Quick Help

2004-03-16 Thread Ben Densmore
I think it's getTickCount(). Ben -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 4:59 PM To: CF-Talk Subject: Quick Help I forgot the function to get the time a page took to process in CF (ie like in the debugger) I need to run a large

RE: Quick Help

2004-03-16 Thread Michael T. Tangorre
GetTickCount()  ? If so, remember to run it at the top of the page and at the bottom then get the difference... Mike > I forgot the function to get the time a page took to process > in CF (ie like > in the debugger) > > I need to run a large scheduled task each night and I would > like to see

RE: Quick Help

2004-03-16 Thread Jerry Johnson
Or put it in your Application.cfm and onRequestEnd.cfm files. (Obvious, but you took my answer) Jerry Johnson >>> [EMAIL PROTECTED] 03/16/04 04:48PM >>> GetTickCount()  ? If so, remember to run it at the top of the page and at the bottom then get the difference... Mike > I forgot the function

RE: "Undefined in Form" when using MSIE

2004-03-16 Thread Burns, John D
As weird as this may sound (and possibly uneducated) is there any chance that it's CF losing the form scope somehow (or maybe it's there but for some reason CF isn't able to read it)?  It seems like a lot of people on the list have mentioned this problem.  Have we narrowed down the CF version being

RE: query of query trimming?

2004-03-16 Thread Turetsky, Seth
Unfortunately yes, I'm sure.  I did a QofQ then a direct query, and they were different, the direct query returned 13, the QofQ returned like 83, the ascii value of T(the first letter in the string) -seth -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Tuesday, Ma

RE: query of query trimming?

2004-03-16 Thread Turetsky, Seth
I meant, I did an asc(first(myString)) and it returned those values -Original Message- From: Turetsky, Seth [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 5:01 PM To: CF-Talk Subject: RE: query of query trimming? Unfortunately yes, I'm sure.  I did a QofQ then a direct query, and

RE: using web services the raw way

2004-03-16 Thread Dave Watts
> Ok good stuff I'll look for it ... do you know what part of > the wsdl that is? is it the: > >   >  > binding="impl:posttest.cfcSoapBinding"> >   > location="http://dev.rohanclan.com/neuromancer/posttest.cfc"/> >  >    > part? Yes, that's it. Note there's no query string on that.

RE: query of query trimming?

2004-03-16 Thread Burns, John D
You can try looping over each character to see if it replaced the chr(13) or chr(10) with some other character by chance?  I don't know of any issue with QofQ removing these characters. John -Original Message- From: Turetsky, Seth [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004

  1   2   >