[Macromedia][Oracle JDBC Driver]No more data available to read.

2009-08-05 Thread Wes Middendorff

Not sure if my last post took since I didn't see it in the list or my email, so 
sorry if this is redundant.

I am getting the following error [Macromedia][Oracle JDBC Driver]No more data 
available to read. when ever I try to execute a stored procedure that returns 
a ref cursor. I am currently running CF7 and have updated to the data direct 
3.5 drivers (required for support of ref cursors). I have tried restarting the 
CF server and other drivers, but have had no luck so far. Just curious if any 
of you have experienced this issue and how you resolved it? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325205
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: [Macromedia][Oracle JDBC Driver]No more data available to read.

2009-08-05 Thread James Holmes

This is a common problem. If it persists, reduce your max pooled
statements to 0.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



2009/8/5 Wes Middendorff wmiddendo...@gmail.com:

 Not sure if my last post took since I didn't see it in the list or my email, 
 so sorry if this is redundant.

 I am getting the following error [Macromedia][Oracle JDBC Driver]No more 
 data available to read. when ever I try to execute a stored procedure that 
 returns a ref cursor. I am currently running CF7 and have updated to the data 
 direct 3.5 drivers (required for support of ref cursors). I have tried 
 restarting the CF server and other drivers, but have had no luck so far. Just 
 curious if any of you have experienced this issue and how you resolved it?

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325206
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Reading / writing ANSI escaped strings

2009-08-05 Thread Francois Levesque

Hi all,

I'm trying to build a web interface to an i18n resource bundle. The problem
is that the values in these files are ANSI escaped:

G\u00E9rer les r\u00F4les instead of Gérer les rôles.

I need a way to unescape these strings so I can display them in an input
field and then ANSI escape them again to save them back in the file.

Any ideas?

Francois Levesque
http://blog.critical-web.com/


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325207
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: [Macromedia][Oracle JDBC Driver]No more data available to read.

2009-08-05 Thread Wes Middendorff

Thanks for the speedy reply James.

I have done as you suggested, but I still recieve the error. Afterwards, just 
to see if it would have an affect, disabled the maintain connections settings 
and it also had no affect. 

Not sure if it matters in this case, but I am using oracle 10gR2.

Wes 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325208
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: [Macromedia][Oracle JDBC Driver]No more data available to read.

2009-08-05 Thread James Holmes

It's possible the DB is actually unavailable (either due to network
congestion, Oracle problems or other issues) when the errors occur.
It's also possible that you're using shared servers rather than
dedicated servers and the shared servers are having an issue. Check
memory on the Oracle server, check for dead Oracle sessions etc.

With maintain connections off, it's less likely to be a problem at the
CF end, since the most common cause of the error is CF attempting to
use a pooled connection that's no longer available.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

2009/8/5 Wes Middendorff wmiddendo...@gmail.com:

 Thanks for the speedy reply James.

 I have done as you suggested, but I still recieve the error. Afterwards, just 
 to see if it would have an affect, disabled the maintain connections settings 
 and it also had no affect.

 Not sure if it matters in this case, but I am using oracle 10gR2.

 Wes

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325209
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Could use some inputs

2009-08-05 Thread Don L

Here's a situation I hope you could provide some thoughtful input.  I've 
converted a cf8-based app into an open source one.  Initially it seemed all's 
well but lately, right when I'm ready to deploy it (not to be hosted like many 
do), some core functionality like automatically data saving, normal data saving 
are no longer reliable, let me explain.  I have a form for data entry with 
multiple fields.  Function 1: auto save the data elements at an interval, 
thanks again Sam.  This feature does not seem to be consistently reliably on 
the new platform but this function is less critical.  Function 2: manually save 
the form, this one now is a MAJOR PROBLEM! the form data is saved/updated all 
right, BUT it deleted 2 or 3 most recent rows of the data table (all with data 
of required columns)!  The query does not delete anything.  Would other scripts 
delete them?  No, here's why.  Here's the basic structure of this table:
id -- title -- content
27 -- 'agri' -- 'one phase of humanity'
28 -- 'indu' -- 'mass production'
-- newest entry
29 -- 'new here' -- 'bla bla'
-- where id is of identity (1,1) not null
Upon clicking on save, rows of id(27 and 28) would be mysteriously gone.  I've 
checked the table does not have any triggers whatsoever, and the machine is 
totally offline.

On some other instances, the newest value and id would replace the second 
newest one,
like upon SAVE, the above would read
27 -- 'agri' -- 'one phase of humanity'
-- newest entry
28 -- 'new here' -- 'bla bla'

Also, please note there's only ONE user.

If it's coding problem, somewhere there's some code like
DELETE from theTABLE where Len(title)  0
or something like that
but there's absolutely not code across board like that, 
absolutely not.  So, how did they disappear?

FYI, I've also provided the open source company a copy of compiled code set (to 
them it's no different from source code) upon their request in hope of 
obtaining an flexible installer of their engine, which didn't happen.  Also, I 
don't mind paying 400 or 500 bucks for service of making my app deployable but 
unlike the online web apps I don't need a full year service... but please do 
not read too much into this...
I'm just laying out facts.

Also, I've been using the app for over a year without any of the above 
mentioned problem.  Now, it's extremely unlikely for cf coding issue regarding 
to this problem, so, who has the motivation and capability to cause this 
problem?
I'm at wits end if any... 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325210
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Reading / writing ANSI escaped strings

2009-08-05 Thread Paul Hastings

Francois Levesque wrote:
 I'm trying to build a web interface to an i18n resource bundle. The problem

ah a man after my own heart ;-)

try this:

http://www.sustainablegis.com/unicode/resourceBundle/javaRB.cfm

but if you want a ready made, web accessible rb manager try jason sheedy's 
rbManager: http://www.jmpj.net/jason/page.cfm/RbMan2

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325211
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Could use some inputs

2009-08-05 Thread Mark Kruger

Don,

You are giving us the wrong information here.  What you should post is the
code in question and a description of the former environment (cf8 + what?
MSSQL?) and the new environment.

-mark


-Original Message-
From: Don L [mailto:do...@yahoo.com] 
Sent: Wednesday, August 05, 2009 8:22 AM
To: cf-talk
Subject: Could use some inputs


Here's a situation I hope you could provide some thoughtful input.  I've
converted a cf8-based app into an open source one.  Initially it seemed
all's well but lately, right when I'm ready to deploy it (not to be hosted
like many do), some core functionality like automatically data saving,
normal data saving are no longer reliable, let me explain.  I have a form
for data entry with multiple fields.  Function 1: auto save the data
elements at an interval, thanks again Sam.  This feature does not seem to be
consistently reliably on the new platform but this function is less
critical.  Function 2: manually save the form, this one now is a MAJOR
PROBLEM! the form data is saved/updated all right, BUT it deleted 2 or 3
most recent rows of the data table (all with data of required columns)!  The
query does not delete anything.  Would other scripts delete them?  No,
here's why.  Here's the basic structure of this table:
id -- title -- content
27 -- 'agri' -- 'one phase of humanity'
28 -- 'indu' -- 'mass production'
-- newest entry
29 -- 'new here' -- 'bla bla'
-- where id is of identity (1,1) not null Upon clicking on save, rows of
id(27 and 28) would be mysteriously gone.  I've checked the table does not
have any triggers whatsoever, and the machine is totally offline.

On some other instances, the newest value and id would replace the second
newest one, like upon SAVE, the above would read
27 -- 'agri' -- 'one phase of humanity'
-- newest entry
28 -- 'new here' -- 'bla bla'

Also, please note there's only ONE user.

If it's coding problem, somewhere there's some code like DELETE from
theTABLE where Len(title)  0 or something like that but there's absolutely
not code across board like that, absolutely not.  So, how did they
disappear?

FYI, I've also provided the open source company a copy of compiled code set
(to them it's no different from source code) upon their request in hope of
obtaining an flexible installer of their engine, which didn't happen.  Also,
I don't mind paying 400 or 500 bucks for service of making my app deployable
but unlike the online web apps I don't need a full year service... but
please do not read too much into this...
I'm just laying out facts.

Also, I've been using the app for over a year without any of the above
mentioned problem.  Now, it's extremely unlikely for cf coding issue
regarding to this problem, so, who has the motivation and capability to
cause this problem?
I'm at wits end if any... 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325212
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: [Macromedia][Oracle JDBC Driver]No more data available to read.

2009-08-05 Thread Wes Middendorff

I wish our DBA gave me that level of access the server, but I will let him know 
what to check into. The servers we are on are most certainly dedicated (I am 
the administrator for the CF side). Also I am able to connect to the DB and 
execute queries using the Oracle JDBC driver with any problem. I would just the 
Oracle provided driver, but there are issues with that driver and using ref 
cursors in CF. 

Thanks again for the ideas!


It's possible the DB is actually unavailable (either due to network
congestion, Oracle problems or other issues) when the errors occur.
It's also possible that you're using shared servers rather than
dedicated servers and the shared servers are having an issue. Check
memory on the Oracle server, check for dead Oracle sessions etc.

With maintain connections off, it's less likely to be a problem at the
CF end, since the most common cause of the error is CF attempting to
use a pooled connection that's no longer available.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325213
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cfgridcolumn dropping 0 zeros from string

2009-08-05 Thread Paul Ihrig

i have a column in a cfgrid
user can put either text or number
like 1234.56
if the enter 1234.50 the display removes the zero. so it look like 1234.5
or if the string is 1234000 it displays 1234  there are also results that at
like xc2000s and those are fine.

cfgridcolumn name=ArtNr header=ArtNr mask=X type=string_nocase


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325214
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfgridcolumn dropping 0 zeros from string

2009-08-05 Thread Scott Stroz

Try prepending a space before the value when you are returning the data to grid.

This is a known issue.

On Wed, Aug 5, 2009 at 10:01 AM, Paul Ihrigpih...@gmail.com wrote:

 i have a column in a cfgrid
 user can put either text or number
 like 1234.56
 if the enter 1234.50 the display removes the zero. so it look like 1234.5
 or if the string is 1234000 it displays 1234  there are also results that at
 like xc2000s and those are fine.

 cfgridcolumn name=ArtNr header=ArtNr mask=X type=string_nocase


 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325215
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Using Active Directory to connect to a database.

2009-08-05 Thread ib webn65

I am use to creating a DSN in the CFAdmin to allow the CF websites to connect 
to a SQL database.  In the CF Admin the DSN’s are created using a SQL login 
id and password to access the database.  I have been asked to use an Active 
Directory account instead of a SQL account to connect to a SQL database.  Is 
this possible?  How?

Using the following systems:
CF Server = 8
SQL = 2005
IIS = 6


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325216
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfgridcolumn dropping 0 zeros from string

2009-08-05 Thread Cutter (ColdFusion)

It'll do that. You'll have to apply a custom column renderer. There is 
an Ext.utils.format class, containing a numeric format function where 
you can set your format.

Steve Cutter Blades
Adobe Certified Professional
Advanced Macromedia ColdFusion MX 7 Developer

Co-Author of Learning Ext JS
http://www.packtpub.com/learning-ext-js/book
_
http://blog.cutterscrossing.com


On 8/5/2009 9:01 AM, Paul Ihrig wrote:
 i have a column in a cfgrid
 user can put either text or number
 like 1234.56
 if the enter 1234.50 the display removes the zero. so it look like 1234.5
 or if the string is 1234000 it displays 1234  there are also results that at
 like xc2000s and those are fine.

 cfgridcolumn name=ArtNr header=ArtNr mask=X type=string_nocase


 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325217
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfgridcolumn dropping 0 zeros from string

2009-08-05 Thread Paul Ihrig

Awesome Scott, Thank You..


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325218
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: removing dups from a two dimensional array using LinkedHashSet

2009-08-05 Thread Tom Chiverton

On Friday 31 Jul 2009, Tony Bentley wrote:
 I can do it using two nested loops but the record set is over 1000

So ? That's not very many.
Does it take a particularly long time ?


-- 
Helping to confidentially fashion professional bleeding-edge total 
developments as part of the IT team of the year, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325219
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


limit date selection in cfinput datefield

2009-08-05 Thread Braden Powers

hello,

I am trying to created a startdate with the cfinput datefield.  The requirement 
is to not allow a user to select a date in the past.

Thanks,

Braden 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325220
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Reading / writing ANSI escaped strings

2009-08-05 Thread Francois Levesque

Paul,

This is awesome. Thanks for the tip!

Francois Levesque
http://blog.critical-web.com/


On Wed, Aug 5, 2009 at 9:37 AM, Paul Hastings p...@sustainablegis.comwrote:


 Francois Levesque wrote:
  I'm trying to build a web interface to an i18n resource bundle. The
 problem

 ah a man after my own heart ;-)

 try this:

 http://www.sustainablegis.com/unicode/resourceBundle/javaRB.cfm

 but if you want a ready made, web accessible rb manager try jason sheedy's
 rbManager: http://www.jmpj.net/jason/page.cfm/RbMan2

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325221
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: removing dups from a two dimensional array using LinkedHashSet

2009-08-05 Thread Tony Bentley

Yes, but this is resolved.

I was looping through the same array twice which took a very long time. Instead 
I used the original query object and while looping the array did a query of 
query to check duplicates - if (recordcount gt 1){delete}.

  cfloop to=#ArrayLen(xlsrry)# from=1 index=i
cfif i lte ArrayLen(xlsrry)
cfquery name=chkdups dbtype=query
select count(column#cmpy#) as temp from objSheet.Query where 
column#cmpy# = '#xlsrry[i][cmpy]#'
/cfquery
!--- if there are duplicates, remove them ---
cfif chkdups.temp gt 1
cfloop from=#ArrayLen(xlsrry)# to=1 step=-1 
index=x
cfif x neq i and xlsrry[i][cmpy] eq xlsrry[x][cmpy]
cfset arrayDeleteAt(xlsrry,x)
/cfif
/cfloop
/cfif
/cfif
/cfloop

If anyone has a script equivalent, that would be cool. I couldn't figure out 
how to do it. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325222
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Web service error

2009-08-05 Thread ch g

Hi all,

I am developing a simple web service, but i am getting an error like this

 Web service operation echoString with parameters {INPUT={hello}} cannot be 
found.
 
Here is the published web service

cfcomponent
cffunction name=echoString returnType=string output=no
cfargument name=input type=string
cfreturn #arguments.input#
  /cffunction

/cfcomponent

And the test file is

 cfinvoke webservice =http://www.ecodes.biz/UserVerif.cfc?wsdl;
  method =echoString
  input = hello 
  returnVariable=foo

cfoutput#foo#/cfoutput 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325223
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: ADA Captcha

2009-08-05 Thread Dan Baughman

Nice, I think I've decided to go with recaptcha, just because this captcha
isn't really part of a form.  This implemntation is being used to restrict
access to certain areas of the site.

On Tue, Aug 4, 2009 at 4:30 PM, Phillip Vector vec...@mostdeadlygame.comwrote:


 I found CFFormProtect to be very hard to configure and set up (in
 fusebox). reCapatcha, I set up in about 4 mins. (just did it) and it
 works perfectly.

 On Tue, Aug 4, 2009 at 3:28 PM, Sebastiaan GMC van
 Dijkseb...@hotmail.com wrote:
 
  Captcha's are SOOO passe!
  Toss out the Captcha and make use of CFFormProtect, available from
 RIAForge.com ;-)
  No extra user input, coupled to Akismet and Project Honeypot, and all CFC
 ;-)
 
  Sebastiaan
  =
  So long and thanx 4 all the fish
 
  == Onlinebase.nl
  Date: Tue, 4 Aug 2009 14:51:58 -0700
  Subject: Re: ADA Captcha
  From: h...@ilsweb.com
  To: cf-talk@houseoffusion.com
 
 
  Dave Watts wrote:
   While I do think you're right about reCAPTCHA being ADA-compliant, I
   would still recommend avoiding the use of CAPTCHAs at all. ADA
   compliant doesn't necessarily equate with easy to use.
 
  While I don't disagree that there are costs and cons to weigh when using
  a captcha.  I find the Carnegie-Mellon one to be less annoying then
  most.  They don't do *really* funky things with the words like toss the
  letters like salad or use horrid backgrounds.  They actually use the
  creative idea of taking a fairly human readable word that has already
  failed computer recognition when it was scanned and OCR'ed from a
  digitalization project, currently the NY Times.  And combines this with
  a word that has already been solved by humans.
 
  Thus you get a pair of fairly straight forward words that have always
  been simple for me to understand at least.  That has not always been
  true with other, more homegrown captcha systems.  Plus you get the
  community benefit of helping digitalize pre-computer printed works.  I
  feel that offsets quite a bit of the cons of captcha's in general.  As
  well as that Carnegie-Mellon has also included the ADA compliance
 portion.
 
  But, as always, your (general) millage may vary and only you (general)
  can make the decision on what is best for your (general) given project
  of the day.
 
 
 
 

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325224
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Web service error

2009-08-05 Thread Mark Kruger

You need to set the access level for the function to remote if you wish to
use it as a WS.

cffunction name=echoString Access=remote

-Mark


 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: ch g [mailto:chr_...@yahoo.com] 
Sent: Wednesday, August 05, 2009 12:07 PM
To: cf-talk
Subject: Web service error


Hi all,

I am developing a simple web service, but i am getting an error like this

 Web service operation echoString with parameters {INPUT={hello}} cannot be
found.
 
Here is the published web service

cfcomponent
cffunction name=echoString returnType=string output=no
cfargument name=input type=string
cfreturn #arguments.input#
  /cffunction

/cfcomponent

And the test file is

 cfinvoke webservice =http://www.ecodes.biz/UserVerif.cfc?wsdl;
  method =echoString
  input = hello 
  returnVariable=foo

cfoutput#foo#/cfoutput 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325225
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Web service error

2009-08-05 Thread ch g

I included that also

 cffunction name=echoString returnType=string output=no access=remote
cfargument name=input type=string required=yes
cfreturn #arguments.input#
  /cffunction

Still receving the same error message

Web service operation echoString with parameters {input={hello}} cannot be 
found. 

Thank you.

You need to set the access level for the function to remote if you wish to
use it as a WS.

cffunction name=echoString Access=remote

-Mark


 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

Hi all,

I am developing a simple web service, but i am getting an error like this

 Web service operation echoString with parameters {INPUT={hello}} cannot be
found.
 
Here is the published web service

cfcomponent
cffunction name=echoString returnType=string output=no
cfargument name=input type=string
cfreturn #arguments.input#
  /cffunction

/cfcomponent

And the test file is

 cfinvoke webservice =http://www.ecodes.biz/UserVerif.cfc?wsdl;
  method =echoString
  input = hello 
  returnVariable=foo

cfoutput#foo#/cfoutput 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325226
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Web service error

2009-08-05 Thread Mark Kruger

A quick test on my own server shows that your function works fine.


cfset x =
createobject(webservice,http://www.ecodes.biz/UserVerif.cfc?wsdl;).echoSt
ring(hello World)/

cfoutput#x#/cfoutput 


I suspect you have compiled the WSDL and the stub is being cached. You need
to refresh the cache... But as a quick fix just rename your file to
UserVerify.cfc or something and try again :)

-mark


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: ch g [mailto:chr_...@yahoo.com] 
Sent: Wednesday, August 05, 2009 12:20 PM
To: cf-talk
Subject: Re: Web service error


I included that also

 cffunction name=echoString returnType=string output=no
access=remote
cfargument name=input type=string required=yes
cfreturn #arguments.input#
  /cffunction

Still receving the same error message

Web service operation echoString with parameters {input={hello}} cannot
be found. 

Thank you.

You need to set the access level for the function to remote if you 
wish to use it as a WS.

cffunction name=echoString Access=remote

-Mark


 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

Hi all,

I am developing a simple web service, but i am getting an error like 
this

 Web service operation echoString with parameters {INPUT={hello}} 
cannot be found.
 
Here is the published web service

cfcomponent
cffunction name=echoString returnType=string output=no
cfargument name=input type=string
cfreturn #arguments.input#
  /cffunction

/cfcomponent

And the test file is

 cfinvoke webservice =http://www.ecodes.biz/UserVerif.cfc?wsdl;
  method =echoString
  input = hello 
  returnVariable=foo

cfoutput#foo#/cfoutput



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325227
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Web service error

2009-08-05 Thread ch g

After i changed the file name it's working, so i developed another service to 
verify the information aganist my database. Now i am receiving this error.

 Cannot perform web service invocation testUser.
The fault returned when invoking the web service operation is:

AxisFault
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
 faultSubcode: 
 faultString: coldfusion.xml.rpc.CFCInvocationException: 
[coldfusion.runtime.UndefinedElementException : Element FIRSTNAME is 
undefined in ARGUMENT.]
 faultActor: 
 faultNode: 
 faultDetail: 

{http://xml.apache.org/axis/}stackTrace:coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.runtime.UndefinedElementException : Element FIRSTNAME is undefined 
in ARGUMENT.]
at 
coldfusion.xml.rpc.CFComponentSkeleton.__createCFCInvocationException(CFComponentSkeleton.java:723)
at 
coldfusion.xml.rpc.CFComponentSkeleton.__invoke(CFComponentSkeleton.java:670)
at serviceTest.testUser(C:\Inetpub\wwwroot\devsite\serviceTest.cfc)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
... ''

And here is my function

cffunction name=testUser access=remote returntype=array output=no
cfargument name=FirstName type=string required=yes
cfargument name=LastName type=string required=yes

cfquery name=getInfo datasource=#data_source#
SELECT *
FROM...
/cfquery

cfif getInfo.recordcount GTE 1
cfset resarry = ArrayNew(1)
cfset i = 1
cfoutput query=getInfo
cfset resary[i] = getInfo.OrderNo
cfset i = i + 1
/cfoutput
/cfif

cfreturn resary
/cffunction

What's wrong with the above function?

Thank you so much for all your time and suggestions.


A quick test on my own server shows that your function works fine.


cfset x =
createobject(webservice,http://www.ecodes.biz/UserVerif.cfc?wsdl;).echoSt
ring(hello World)/

cfoutput#x#/cfoutput 


I suspect you have compiled the WSDL and the stub is being cached. You need
to refresh the cache... But as a quick fix just rename your file to
UserVerify.cfc or something and try again :)

-mark


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

I included that also

 cffunction name=echoString returnType=string output=no
access=remote
cfargument name=input type=string required=yes
cfreturn #arguments.input#
  /cffunction

Still receving the same error message

Web service operation echoString with parameters {input={hello}} cannot
be found. 

Thank you. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325228
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Web service error

2009-08-05 Thread Milburn, Steve

It's hard to tell because you did not include the entire SQL statement, but the 
error message indicates that you neglected to put an s on 
arguments.firstName.  You probably have argument.firstname.

~Steve


From: ch g [chr_...@yahoo.com]
Sent: Wednesday, August 05, 2009 1:40 PM
To: cf-talk
Subject: Re: Web service error

After i changed the file name it's working, so i developed another service to 
verify the information aganist my database. Now i am receiving this error.

 Cannot perform web service invocation testUser.
The fault returned when invoking the web service operation is:

AxisFault
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
 faultSubcode:
 faultString: coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.runtime.UndefinedElementException : Element FIRSTNAME is 
undefined in ARGUMENT.]
 faultActor:
 faultNode:
 faultDetail:

{http://xml.apache.org/axis/}stackTrace:coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.runtime.UndefinedElementException : Element FIRSTNAME is undefined 
in ARGUMENT.]
at 
coldfusion.xml.rpc.CFComponentSkeleton.__createCFCInvocationException(CFComponentSkeleton.java:723)
at 
coldfusion.xml.rpc.CFComponentSkeleton.__invoke(CFComponentSkeleton.java:670)
at serviceTest.testUser(C:\Inetpub\wwwroot\devsite\serviceTest.cfc)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
... ''

And here is my function

cffunction name=testUser access=remote returntype=array output=no
cfargument name=FirstName type=string required=yes
cfargument name=LastName type=string required=yes

cfquery name=getInfo datasource=#data_source#
SELECT *
FROM...
/cfquery

cfif getInfo.recordcount GTE 1
cfset resarry = ArrayNew(1)
cfset i = 1
cfoutput query=getInfo
cfset resary[i] = getInfo.OrderNo
cfset i = i + 1
/cfoutput
/cfif

cfreturn resary
/cffunction

What's wrong with the above function?

Thank you so much for all your time and suggestions.


A quick test on my own server shows that your function works fine.


cfset x =
createobject(webservice,http://www.ecodes.biz/UserVerif.cfc?wsdl;).echoSt
ring(hello World)/

cfoutput#x#/cfoutput


I suspect you have compiled the WSDL and the stub is being cached. You need
to refresh the cache... But as a quick fix just rename your file to
UserVerify.cfc or something and try again :)

-mark


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

I included that also

 cffunction name=echoString returnType=string output=no
access=remote
cfargument name=input type=string required=yes
cfreturn #arguments.input#
  /cffunction

Still receving the same error message

Web service operation echoString with parameters {input={hello}} cannot
be found.

Thank you.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325229
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Web service error

2009-08-05 Thread William Seiter

1.  The scope is arguments, note the s
2.  If the query returns a recordcount of 0, what does the function return?

-Original Message-
From: ch g chr_...@yahoo.com
Sent: Wednesday, August 05, 2009 10:40 AM
To: cf-talk cf-talk@houseoffusion.com
Subject: Re: Web service error


After i changed the file name it's working, so i developed another service to 
verify the information aganist my database. Now i am receiving this error.

 Cannot perform web service invocation testUser.
The fault returned when invoking the web service operation is:

AxisFault
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
 faultSubcode: 
 faultString: coldfusion.xml.rpc.CFCInvocationException: 
[coldfusion.runtime.UndefinedElementException : Element FIRSTNAME is 
undefined in ARGUMENT.]
 faultActor: 
 faultNode: 
 faultDetail: 

{http://xml.apache.org/axis/}stackTrace:coldfusion.xml.rpc.CFCInvocationException:
 [coldfusion.runtime.UndefinedElementException : Element FIRSTNAME is undefined 
in ARGUMENT.]
at 
coldfusion.xml.rpc.CFComponentSkeleton.__createCFCInvocationException(CFComponentSkeleton.java:723)
at 
coldfusion.xml.rpc.CFComponentSkeleton.__invoke(CFComponentSkeleton.java:670)
at serviceTest.testUser(C:\Inetpub\wwwroot\devsite\serviceTest.cfc)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
... ''

And here is my function

cffunction name=testUser access=remote returntype=array output=no
cfargument name=FirstName type=string required=yes
cfargument name=LastName type=string required=yes

cfquery name=getInfo datasource=#data_source#
SELECT *
FROM...
/cfquery

cfif getInfo.recordcount GTE 1
cfset resarry = ArrayNew(1)
cfset i = 1
cfoutput query=getInfo
cfset resary[i] = getInfo.OrderNo
cfset i = i + 1
/cfoutput
/cfif

cfreturn resary
/cffunction

What's wrong with the above function?

Thank you so much for all your time and suggestions.


A quick test on my own server shows that your function works fine.


cfset x =
createobject(webservice,http://www.ecodes.biz/UserVerif.cfc?wsdl;).echoSt
ring(hello World)/

cfoutput#x#/cfoutput 


I suspect you have compiled the WSDL and the stub is being cached. You need
to refresh the cache... But as a quick fix just rename your file to
UserVerify.cfc or something and try again :)

-mark


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

I included that also

 cffunction name=echoString returnType=string output=no
access=remote
cfargument name=input type=string required=yes
cfreturn #arguments.input#
  /cffunction

Still receving the same error message

Web service operation echoString with parameters {input={hello}} cannot
be found. 

Thank you. 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325230
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Web service error

2009-08-05 Thread ch g

Thank you so much for all of your time and suggestions.

Problem is typo mistake in SQL statement, i was in  hurry, so i didn't went 
through the entire error message.

Thank you once again.

 It's hard to tell because you did not include the entire SQL statement, 
 but the error message indicates that you neglected to put an s on 
 arguments.firstName.  You probably have argument.firstname.
 
 ~Steve
 
 
 From: ch g [chr_...@yahoo.com]
 Sent: Wednesday, August 05, 2009 1:40 PM
 To: cf-talk
 Subject: Re: Web service error
 
 After i changed the file name it's working, so i developed another 
 service to verify the information aganist my database. Now i am 
 receiving this error.
 
 
 Cannot perform web service invocation testUser.
 The fault returned when invoking the web service operation is:
 
 AxisFault
 
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.
 userException
 
 faultSubcode:
 
 faultString: coldfusion.xml.rpc.CFCInvocationException:

 [coldfusion.runtime.UndefinedElementException : Element FIRSTNAME is 
 undefined in ARGUMENT.]
 
 faultActor:
 
 faultNode:
 
 faultDetail:

 {http://xml.apache.org/axis/}stackTrace:coldfusion.xml.rpc.
 CFCInvocationException: [coldfusion.runtime.UndefinedElementException 
 : Element FIRSTNAME is undefined in ARGUMENT.]

 at coldfusion.xml.rpc.CFComponentSkeleton.
 __createCFCInvocationException(CFComponentSkeleton.java:723)

 at coldfusion.xml.rpc.CFComponentSkeleton.__invoke(CFComponentSkeleton.
 java:670)

 at serviceTest.testUser(C:\Inetpub\wwwroot\devsite\serviceTest.cfc)

 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

 at sun.reflect.NativeMethodAccessorImpl.
 invoke(NativeMethodAccessorImpl.java:39)

 at sun.reflect.DelegatingMethodAccessorImpl.
 invoke(DelegatingMethodAccessorImpl.java:25)

 at java.lang.reflect.Method.invoke(Method.java:597)
... 
 ''
 
 And here is my function
 
 cffunction name=testUser access=remote returntype=array 
 output=no

 cfargument name=FirstName type=string required=yes

 cfargument name=LastName type=string required=yes
 

 cfquery name=getInfo datasource=#data_source#

 SELECT *

 FROM...

 /cfquery
 

 cfif getInfo.recordcount GTE 1

 cfset resarry = ArrayNew(1)

 cfset i = 1

 cfoutput query=getInfo

 cfset resary[i] = getInfo.OrderNo

 cfset i = i + 1

 /cfoutput

 /cfif
 

 cfreturn resary

 /cffunction
 
 What's wrong with the above function?
 
 Thank you so much for all your time and suggestions.
 
 
 A quick test on my own server shows that your function works fine.
 
 
 cfset x =
 createobject(webservice,http://www.ecodes.biz/UserVerif.cfc?wsdl;).
 echoSt
 ring(hello World)/
 
 cfoutput#x#/cfoutput
 
 
 I suspect you have compiled the WSDL and the stub is being cached. 
 You need
 to refresh the cache... But as a quick fix just rename your file to
 UserVerify.cfc or something and try again :)
 
 -mark
 
 
 Mark A. Kruger, CFG, MCSE
 (402) 408-3733 ext 105
 www.cfwebtools.com
 www.coldfusionmuse.com
 www.necfug.com
 
 I included that also
 
  cffunction name=echoString returnType=string output=no
 access=remote
 cfargument name=input type=string required=yes
 cfreturn #arguments.input#
   /cffunction
 
 Still receving the same error message
 
 Web service operation echoString with parameters {input={hello}} 
 cannot
 be found.
 
 Thank you.
 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325231
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Could use some inputs

2009-08-05 Thread Will Tomlinson

I have help with problems to your motivated issue of capable proportions that 
might hint to the extinction of the not cf coding issue...

 Here's a situation I hope you could provide some thoughtful input.  
 I've converted a cf8-based app into an open source one.  Initially it 
 seemed all's well but lately, right when I'm ready to deploy it (not 


Will 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325232
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Could use some inputs

2009-08-05 Thread Don L

Don,

You are giving us the wrong information here.  What you should post is the
code in question and a description of the former environment (cf8 + what?
MSSQL?) and the new environment.

-mark


Mark, the converted app uses a cfml engine, sql2005express and Ext (2) for UI, 
I've tested the converted app in late July, all working, so, recent hiccups 
struck me as very odd. The query in question did not use cfqueryParam... 
across board for all sql statements, once took the extra care and another minor 
thing, it functions as expected, in this sense, the hiccup isn't really a bad 
thing. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325233
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Could use some inputs

2009-08-05 Thread Don L

What nonsense are you churning out?
 I have help with problems to your motivated issue of capable 
 proportions that might hint to the extinction of the not cf coding 
 issue...


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325234
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Using Active Directory to connect to a database.

2009-08-05 Thread Jason Fisher

If your users have to login to the application using NTFS authorization, 
such as if you disable Anonymous access in IIS, then CF will have access 
to the user's network credentials and you could pass those into the 
query calls:

cfquery name=getMyStuff datasource=mySqlDatasource 
username=#cgi.auth_user# password=#cgi.auth_password#
...
/cfquery

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325235
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Could use some inputs

2009-08-05 Thread Don L

This note is to correct myself, Railo rocks in general and I'm grateful to Gert 
etc.  It's not some sort of promo for them but rather a remedy in case of 
misunderstanding of the op.
 
~As you know, I'm impatient and a great friend of mistakes. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325236
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Could use some inputs

2009-08-05 Thread cftalk

How about you start with a search of your code base for the word DELETE.
Rows can't just be deleted without a DELETE statement. If your app uses
stored procedures, you may need to look there. Also check your database for
any triggers that may be setup to delete rows.

The alternative is that someone is running some sql injection code, but you
said you were the only user right?

Brook

-Original Message-
From: Don L [mailto:do...@yahoo.com] 
Sent: August-05-09 12:29 PM
To: cf-talk
Subject: Re: Could use some inputs


What nonsense are you churning out?
 I have help with problems to your motivated issue of capable 
 proportions that might hint to the extinction of the not cf coding 
 issue...




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325237
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Could use some inputs

2009-08-05 Thread Maureen

You can't delete a row without delete, but you can overwrite it, which
appears to be what is happening here.  The last row written is
overwriting the previous rows because the identity field is not
changing.

On Wed, Aug 5, 2009 at 3:39 PM, cftalkcft...@logiforms.com wrote:

 How about you start with a search of your code base for the word DELETE.
 Rows can't just be deleted without a DELETE statement. If your app uses
 stored procedures, you may need to look there. Also check your database for
 any triggers that may be setup to delete rows.

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325238
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Could use some inputs

2009-08-05 Thread Gerald Guido

Don,
This scenario has been repeated so many times with your posts it is as it
follows a script.  One could call it The Don Show.

Scene 1
You post a nebulous, vague and rambling post where you don't really ask a
question but ask for help. You may provide some pseudo code but nothing that
people can actually use to help you trouble shoot the problem. You never ask
a direct question that can be answered with out people asking further
questions seeking elucidation about whiskey tango foxtrot you are actually
talking about

Scene 2:
PPL who actually want to help ask you to provide more information so they
can help you.

Scene 3:
You state that you have given enough information need for us to solve the
problem and  reiterate the question.

Scene 4: People ask you to post some code because we cannot help you with
out it.

Scene 5: you begrudgingly post the least amount of code humanly possible.

Scene 6: People do your debugging for you and point out that the problem is
a bug in your code.

Scene 7: Rinse and repeat.

Sound about right?

HTH,
G


On Wed, Aug 5, 2009 at 4:15 PM, Don L do...@yahoo.com wrote:


 This note is to correct myself, Railo rocks in general and I'm grateful to
 Gert etc.  It's not some sort of promo for them but rather a remedy in case
 of misunderstanding of the op.
 
 ~As you know, I'm impatient and a great friend of mistakes.

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325239
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Could use some inputs

2009-08-05 Thread Azadi Saryev

i do not think anyone could have said it better, G! though i did laugh
at Will's reply (and even more at DonL's reply to that) :)


Azadi Saryev


On 06/08/2009 07:09, Gerald Guido wrote:
 
 Don,
 This scenario has been repeated so many times with your posts it is as it
 follows a script.  One could call it The Don Show.
 
 Scene 1
 You post a nebulous, vague and rambling post where you don't really ask a
 question but ask for help. You may provide some pseudo code but nothing that
 people can actually use to help you trouble shoot the problem. You never ask
 a direct question that can be answered with out people asking further
 questions seeking elucidation about whiskey tango foxtrot you are actually
 talking about
 
 Scene 2:
 PPL who actually want to help ask you to provide more information so they
 can help you.
 
 Scene 3:
 You state that you have given enough information need for us to solve the
 problem and  reiterate the question.
 
 Scene 4: People ask you to post some code because we cannot help you with
 out it.
 
 Scene 5: you begrudgingly post the least amount of code humanly possible.
 
 Scene 6: People do your debugging for you and point out that the problem is
 a bug in your code.
 
 Scene 7: Rinse and repeat.
 
 Sound about right?
 
 HTH,
 G
 
 
 On Wed, Aug 5, 2009 at 4:15 PM, Don L do...@yahoo.com wrote:
 

 This note is to correct myself, Railo rocks in general and I'm grateful to
 Gert etc.  It's not some sort of promo for them but rather a remedy in case
 of misunderstanding of the op.

 ~As you know, I'm impatient and a great friend of mistakes.


 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325240
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4