RE: ListQualify problem

2005-09-19 Thread Mike Nicholls
The PreserveSingleQuotes function stops ColdFusion from automatically
escaping the apostrophes for you.  Try this:


SELECT MIN(CalendarDate) as MinDate, MAX(CalendarDate) as 
MaxDate, EventName, GroupID
FROM Calendar
WHERE GroupID IN (#PreserveSingleQuotes(MovementList)#)
GROUP BY EventName, GroupID 





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:218663
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Compiling Java ?%$/%??

2005-09-07 Thread Mike Nicholls
You're using the Java 1.5 JDK, CF uses the 1.4 JVM.  You need to tell the
compiler to target Java 1.4.  

Try changing your command to 
"C:\Program Files\Java\jdk1.5.0_04\bin\javac" -target 1.4 -source 1.4
-classpath 
C:\CFusionMX\lib\cfx.jar -d C:\CFusionMX\wwwroot\WEB-INF\classes %1 
 >C:AAA.txt

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 8 September 2005 3:04 p.m.
To: CF-Talk
Subject: Re: Compiling Java ?%$/%??

 >>So I'm trying to define a command in a custom button in CF Studio, and I
have problem to get the stdout to be piped to a file.

Ok, I managed to define a custom button in the Tools menu in CF Studio.
This button calls the bat file below and passes the file name as first 
parameter
(gee, DOS is really far away!)
"C:\Program Files\Java\jdk1.5.0_04\bin\javac" -classpath 
C:\CFusionMX\lib\cfx.jar -d C:\CFusionMX\wwwroot\WEB-INF\classes %1 
 >C:AAA.txt

It works, I got the compile class at the right place, CF has recognized 
the CFX, but it is complaining that
"Unsupported major.minor version 49.0" about my tag ???
What the heck is that? "version" of WHAT?

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:217596
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


ColdFusion Security Vulnerabilities

2005-09-07 Thread Mike Nicholls
Does anyone have any experience with reporting security vulnerabilities
to Macromedia?  I reported a vulnerability in ColdFusion using the
Macromedia Security Report Form
(http://www.macromedia.com/devnet/security/security_zone/alertus.html)
three days ago, and haven't heard anything back yet.  From what I can
tell, the example code I provided a URL for hasn't been downloaded
either.

 

Does anyone know if it is usual to receive a response in this situation?
Obviously I'm not expecting a hotfix the very next day, but just an
acknowledgement that my report has been received and is being
investigated would be reassuring.



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:217593
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: WSDL CFC Problem

2005-07-17 Thread Mike Nicholls
We've had this error too; it's a ColdFusion bug with webservices that's
been present since CFMX 6.1 Updater 1.  See
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=
7&threadid=881689&forumid=1 for some possible workarounds.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:212081
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFCs within a web service

2005-05-25 Thread Mike Nicholls
Any calls within the CFC to other webservices should be irrelevant if it
can't serve up the WSDL, from my (limited) understanding the WSDL really
just lists details of the available remote methods.  Try putting a very
simple webservice that just returns a hardcoded string or something in the
same directory as your existing one and see if you get the same error. 

If you do, I think you're experiencing the same bug as in
http://www.houseoffusion.com/cf_lists/messages.cfm/forumid:4/threadid:39728.
It's been around since CFMX6.1 Updater 1, but Macromedia haven't fixed it
yet.  There are a couple of workarounds mentioned at
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=7&th
readid=881689&forumid=1, but they can be a pain to implement.

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 26 May 2005 8:20 a.m.
To: CF-Talk
Subject: RE: CFCs within a web service

Well I've done quite a few calls from one CFC to another. Based on the
error, the custom datatype you're attempting to use is what's choking. If
you're sure that the path is correct, maybe you should check to make sure
that there isn't an error within the datatype file itself.

Cheers,

Kevin

-Original Message-
From: Peters, Chris [mailto:[EMAIL PROTECTED]
Sent: Wednesday, May 25, 2005 1:46 PM
To: CF-Talk
Subject: CFCs within a web service


I have a CFC web service that tries to access another CFC for its
business logic.  The problem is that I get this error message if I try
to access the web services directly from my browser
(http://localhost:8500/pr/PRService.cfc?wsdl):

AXIS error
Sorry, something seems to have gone wrong... here are the details:

Fault -
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: business.pr.Gateway][; nested exception
is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: business.pr.Gateway][
AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode:
 faultString:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: business.pr.Gateway][; nested exception
is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException :
Could not resolve CFC datatype: business.pr.Gateway][
 faultActor:
 faultNode:
 faultDetail:


I have the following web service call which also generates an error:

http://127.0.0.1:8500/pr/PRService.cfc?wsdl')>



  
  



   #DateFormat(dateReleased, "mm/dd/")# -
#headline#
#ListGetAt(body, 1, '.')#
  


Here is the code for the web service:













  
  







  
  
  
  

  

  

  





I am CERTAIN that I have the correct mapping set up for /business (which
is being referenced in the CreateObject() function call).

Can you not have other CFC calls in your Web services?  Is this a bug?

My Configuration: ColdFusion MX 6.1 J2EE server instance on Windows XP.


Chris Peters
New Media Production Specialist
614-508-7241
[EMAIL PROTECTED]


-Original Message-
From: CF-Talk [mailto:[EMAIL PROTECTED]
Sent: Wednesday, May 25, 2005 3:01 PM
To: CF-Talk
Subject: CF-Talk: Digest every hour

CF-Talk  25-May-05 Issue:17412
In this issue:
 cfform / cfform.js issues
 Database Schema Options
 open link in new tab in FF?
 open link in new tab in FF?
 open link in new tab in FF?
 open link in new tab in FF?
 open link in new tab in FF?
 OT: Database Schema Options
 Running MS Access macro in Coldfusion







~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207695
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: degugging and dockable pane

2005-04-28 Thread Mike Nicholls
It's possibly in violation of your license agreement to do so, but you can
edit {cfroot}/wwwroot/WEB-INF/debug/dockable.cfm to do this.  I believe that
all you have to do is remove the last block of JavaScript at the bottom.

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Friday, 29 April 2005 10:04 a.m.
To: CF-Talk
Subject: degugging and dockable pane

Hey All,

Well I'm finally trying the dockable debugging pane over the classic
debugging.  How the heck can I keep the friggin debugging window (I've got
it floating) from popping up on each request??

I'd dock it, but the CSS or something else in the layout of the client's
site is messing with debugging (classic or dockable) when it's shown in the
same window and not floating.  Basically debugging is killing the site
layout and showing mixed in with the site (it's a demo site...many things
wrong...probably a missing end tag somewhere).

TIA

Cheers

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:205020
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Simple Webservice Error from hell.....

2005-04-20 Thread Mike Nicholls
Hi Tom,

I don't have a bug number sorry, I'm going by what was said in the thread on
the Macromedia forums
(http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=7&t
hreadid=881689&forumid=1).  

jsevlie said he'd called Macromedia support and had been talking to an
engineer over the course of a week, which lead to the workarounds mentioned
in the thread.  He said Macromedia had recognised the problem as a bug and
refunded his money, so I'd assumed that it would have been filed.

It's been a while since I've looked at this issue, but from what I recall
it's reproducible if you specify a non-default root mapping in the
ColdFusion Administrator, create a directory under the new root, put a CFC
in it, create a virtual site in Apache or IIS with the root being the
directory with the CFC in and browse to /cfcname.cfc?wsdl.

As far as I know this bug first appeared in CFMX 6.1 Updater 1 - we're
currently running CFMX 6.1 without the updater, as when we installed it on
our test servers it broke webservices on a number of sites.  I really
appreciate your offer to take a look, because this is probably the only
issue that's keeping us from upgrading to CFMX 7.

Regards,

Mike Nicholls

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 21 April 2005 4:19 p.m.
To: CF-Talk
Subject: RE: Simple Webservice Error from hell.

I don't know about it. And generally if a web service bug doesn't get to
me, it doesn't get fixed.

We did fix CFMX to respect CF mappings when dealing with web services, I
believe in the 6.1 updater.  Are you saying that this fix caused this
problem? i.e. it worked like you wanted before the updater?

You got a bug number?  I can take a look.

--
Tom Jordahl
ColdFusion Web Service Guy



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:203788
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Simple Webservice Error from hell.....

2005-04-20 Thread Mike Nicholls
Hi Tom,

I don't have a bug number sorry, I'm going by what was said in the thread on
the Macromedia forums
(http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=7&t
hreadid=881689&forumid=1).  

jsevlie said he'd called Macromedia support and had been talking to an
engineer over the course of a week, which lead to the workarounds mentioned
in the thread.  He said Macromedia had recognised the problem as a bug and
refunded his money, so I'd assumed that it would have been filed.

It's been a while since I've looked at this issue, but from what I recall
it's reproducible if you specify a non-default root mapping in the
ColdFusion Administrator, create a directory under the new root, put a CFC
in it, create a virtual site in Apache or IIS with the root being the
directory with the CFC in and browse to /cfcname.cfc?wsdl.

As far as I know this bug first appeared in CFMX 6.1 Updater 1 - we're
currently running CFMX 6.1 without the updater, as when we installed it on
our test servers it broke webservices on a number of sites.  I really
appreciate your offer to take a look, because this is probably the only
issue that's keeping us from upgrading to CFMX 7.

Regards,

Mike Nicholls

-Original Message-
From: Tom Jordahl [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 21 April 2005 4:19 p.m.
To: CF-Talk
Subject: RE: Simple Webservice Error from hell.

I don't know about it. And generally if a web service bug doesn't get to
me, it doesn't get fixed.

We did fix CFMX to respect CF mappings when dealing with web services, I
believe in the 6.1 updater.  Are you saying that this fix caused this
problem? i.e. it worked like you wanted before the updater?

You got a bug number?  I can take a look.

--
Tom Jordahl
ColdFusion Web Service Guy

-Original Message-
From: Mike Nicholls [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 20, 2005 1:42 PM
To: CF-Talk
Subject: RE: Simple Webservice Error from hell.

It's a bug in CFMX 6.1 Updater 1 and CFMX 7, Macromedia have known about
it since October last year but it hasn't been fixed.

See
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=
7&threadid=881689&forumid=1 for a few workarounds - unfortunately they
all make using webservices on a multihomed server unnecessarily painful.

-Original Message-
From: jonese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 21 April 2005 7:01 a.m.
To: CF-Talk
Subject: Simple Webservice Error from hell.

Ok i have this CFC.





 I hit the url http://myinternalDomain.com/contentExplorer.cfc?wsdl
 and get this error:
AXIS error 

Sorry, something seems to have gone wrong... here are the details:

Fault -
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][

AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][
 faultActor: 
 faultNode: 
 faultDetail: 


 I've searched high and low and while the question is asked alot i never

find a solid answer. ANY ideas?
 jonese








~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:203787
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Simple Webservice Error from hell.....

2005-04-20 Thread Mike Nicholls
It's a bug in CFMX 6.1 Updater 1 and CFMX 7, Macromedia have known about
it since October last year but it hasn't been fixed.

See
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=
7&threadid=881689&forumid=1 for a few workarounds - unfortunately they
all make using webservices on a multihomed server unnecessarily painful.

-Original Message-
From: jonese [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 21 April 2005 7:01 a.m.
To: CF-Talk
Subject: Simple Webservice Error from hell.

Ok i have this CFC.





 I hit the url http://myinternalDomain.com/contentExplorer.cfc?wsdl
 and get this error:
AXIS error 

Sorry, something seems to have gone wrong... here are the details:

Fault -
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][

AxisFault
 faultCode:
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
 faultSubcode: 
 faultString:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][; nested
exception is:
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.xml.rpc.SkeletonClassLoader$UnresolvedCFCDataTypeException
: Could not resolve CFC datatype: /contentExplorer.cfc][
 faultActor: 
 faultNode: 
 faultDetail: 


 I've searched high and low and while the question is asked alot i never

find a solid answer. ANY ideas?
 jonese




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:203736
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Google Suggest-like functionality with CF

2005-03-20 Thread Mike Nicholls
It looks like this does most of the Javascript side of things for you - I
haven't looked at it beyond playing with the demos, but it seems pretty
slick.

http://fnjordy.cus.org.uk/auto/


-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Monday, 21 March 2005 3:36 p.m.
To: CF-Talk
Subject: Re: Google Suggest-like functionality with CF

Yeah, it's not particularly complex.  There's two distinct parts you
have to consider: 1) the UI, and 2) the server interaction.

The latter is quite simple.  Check out Neuromancer (hit google).  It's
an abstraction layer for doing asynchronous HTTP requests from
javascript.  Basically two lines of code and you can make requests to
the server without loading a page.  There are various other methods as
well, but that's a really simple one that I use with great success.

The UI is a little more complex, depending on how "slick" you need it
to be.  Simplest is probably to just populate a SELECT dropdown with
the dynamic options.  Google Suggest goes for broke with a div,
higlighting, keyboard trapping for moving the selection, etc.

cheers,
barneyb

On Sun, 20 Mar 2005 21:42:26 -0500, Pete Ruckelshaus
<[EMAIL PROTECTED]> wrote:
> Anyone done anything like Google Suggest on CF?  Care to share any
> tricks or tips?
> 
> Thanks
> 
> Pete

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199516
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: java.lang.IllegalStateException: corrupt table

2005-03-15 Thread Mike Nicholls
I don't the error has anything to do with queries or cfcache, the stack
trace seems to indicate it is being thrown by an cache used by the CF
classloader.

-Original Message-
From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 16 March 2005 5:23 p.m.
To: CF-Talk
Subject: Re: java.lang.IllegalStateException: corrupt table

I can't say that I've seen the error before, but my first guess would
be that it has something to do with cached queries... Remove the
cachedafter / cachedwithin attributes on your queries temporarily --
run it for a day (or less) -- at least that would tell you precisely
what is failing (if it is in fact query caching) if not how to fix it.


Could also be cfcache, although it sounds more likely to be cfquery
caching to me personally.

> Any ideas what this error might mean? We have a server
> spontaneously
> generating this error on most pages after running for
> periods of 30
> minutes to two hours. Restarting the CF service seems to
> resolve it. Any
> indication of what the error means, what might be causing
> it, or what to
> do about it? Server is CF6.1. It is not running the latest
> updater due
> to a bug in the updater that was causing us problems.

> As far as we can tell, the error is thrown when CF
> attempts to remove
> the oldest key from a cache and finds upon doing this that
> the size of
> the cache hasn't decreased. Why that might happen, we have
> no clue.

> Here are the first few lines of the stack trace...

> java.lang.IllegalStateException: corrupt table
> at coldfusion.util.LruCache.reap(LruCache.java:219)
> at coldfusion.util.LruCache.get(LruCache.java:196)
> at
> coldfusion.compiler.ExprClassLoader$ExprCache.fetchSerial(
> ExprClassLoade
> r.java:335)
> at
> coldfusion.util.AbstractCache.fetch(AbstractCache.java:58)
> at coldfusion.util.SoftCache.get(SoftCache.java:81)
> at
> coldfusion.compiler.ExprClassLoader.compileStatement(ExprC
> lassLoader.jav
> a:211)
> at
> coldfusion.compiler.ExprClassLoader.evaluate(ExprClassLoad
> er.java:134)
> at coldfusion.runtime.CFPage.Evaluate(CFPage.java:2329)



s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:198915
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Webservices issues with CFMX7?

2005-03-06 Thread Mike Nicholls
They are shared servers, and each site potentially has different CFCs
with the same path from the site root.

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 5 March 2005 4:46 p.m.
To: CF-Talk
Subject: RE: Webservices issues with CFMX7?

Why can't you create a mapping to the CFC directory? 

-Original Message-
From: Mike Nicholls [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 5 March 2005 5:48 
To: CF-Talk
Subject: RE: Webservices issues with CFMX7?

What do you get when you view the WSDL URL in your browser Dave?
We've had problems with the bug described in
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=
7&th
readid=881689&forumid=1 making our webservices unusable.  

None of the workarounds described are really an option for us, so we're
stuck on CFMX 6.1 without updater 1.  From what I can tell Macromedia
haven't fixed this bug in CFMX 7.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197633
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Webservices issues with CFMX7?

2005-03-04 Thread Mike Nicholls
Looks like you're not having the same issue we're having; our CFCs weren't
even generating WSDL.

-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 5 March 2005 11:18 a.m.
To: CF-Talk
Subject: RE: Webservices issues with CFMX7?

heres the webservice
http://www.icandfashion.com/components/GuestBook.cfc?wsdl

 i'll go check that link out though

----
From: Mike Nicholls <[EMAIL PROTECTED]>
Sent: Friday, March 04, 2005 4:49 PM
To: CF-Talk 
Subject: RE: Webservices issues with CFMX7? 

What do you get when you view the WSDL URL in your browser Dave?
We've had problems with the bug described in
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=7&th
readid=881689&forumid=1 making our webservices unusable. 

None of the workarounds described are really an option for us, so we're
stuck on CFMX 6.1 without updater 1. From what I can tell Macromedia
haven't fixed this bug in CFMX 7.

-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 5 March 2005 10:28 a.m.
To: CF-Talk
Subject: Re: Webservices issues with CFMX7?

im having a hard time as well but on a server with 6.1 on it. Works fine on
my local machine with 7 but not from the host. It's just a cfc?wsdl that I
call into a flash swf.
 Sean, do you know if on a hosted site this has to be registered in the
cfadmin?

 ty


From: Sean Corfield 
Sent: Friday, March 04, 2005 11:29 AM
To: CF-Talk 
Subject: Re: Webservices issues with CFMX7? 

On Fri, 04 Mar 2005 10:34:06 -0500, Alex Sherwood wrote:
> Anyone else have problems registering Webservices with CFMX 7?

No.

> In fact, I can register the CFC that is stored on the 6.1 box from the
> CFADMIN in the CFMX7 box, but cannot register an exact copy of the CFC
> that his hosted on the CFMX7 box.

Very strange. Makes no sense since CF shouldn't care where the web
service is hosted... Is it a public web service we can try to register
to debug it? Or maybe you can send me the CFC off-list to try out?
-- 
Sean A Corfield -- http://www.corfield.org/
Team Fusebox -- http://www.fusebox.org/
Breeze Me! -- http://www.corfield.org/breezeme
Got Gmail? -- I have 49, yes 49, invites to give away!

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197541
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Webservices issues with CFMX7?

2005-03-04 Thread Mike Nicholls
What do you get when you view the WSDL URL in your browser Dave?
We've had problems with the bug described in
http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid=7&th
readid=881689&forumid=1 making our webservices unusable.  

None of the workarounds described are really an option for us, so we're
stuck on CFMX 6.1 without updater 1.  From what I can tell Macromedia
haven't fixed this bug in CFMX 7.

-Original Message-
From: dave [mailto:[EMAIL PROTECTED] 
Sent: Saturday, 5 March 2005 10:28 a.m.
To: CF-Talk
Subject: Re: Webservices issues with CFMX7?

im having a hard time as well but on a server with 6.1 on it. Works fine on
my local machine with 7 but not from the host. It's just a cfc?wsdl that I
call into a flash swf.
 Sean, do you know if on a hosted site this has to be registered in the
cfadmin?

 ty


From: Sean Corfield <[EMAIL PROTECTED]>
Sent: Friday, March 04, 2005 11:29 AM
To: CF-Talk 
Subject: Re: Webservices issues with CFMX7? 

On Fri, 04 Mar 2005 10:34:06 -0500, Alex Sherwood  wrote:
> Anyone else have problems registering Webservices with CFMX 7?

No.

> In fact, I can register the CFC that is stored on the 6.1 box from the
> CFADMIN in the CFMX7 box, but cannot register an exact copy of the CFC
> that his hosted on the CFMX7 box.

Very strange. Makes no sense since CF shouldn't care where the web
service is hosted... Is it a public web service we can try to register
to debug it? Or maybe you can send me the CFC off-list to try out?
-- 
Sean A Corfield -- http://www.corfield.org/
Team Fusebox -- http://www.fusebox.org/
Breeze Me! -- http://www.corfield.org/breezeme
Got Gmail? -- I have 49, yes 49, invites to give away!

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197537
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: AOL and IPs

2005-02-23 Thread Mike Nicholls
It's a way of representing subnet mask - it basically tells you how many
bits of the IP address are for the network portion.  It's a little
complicated and I'm no expert on it, but that should give you something to
Google for ;-)

-Original Message-
From: Phill B [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 24 February 2005 8:49 a.m.
To: CF-Talk
Subject: Re: AOL and IPs

Can some one explain what the /number means at the end of the IP
addresses? I read the page but I didn't see anything that would
explain it. I thought they were trying to show the IP range but I have
AOL traffic out side of those ranges.

152.163.240.0/21
152.163.248.0/22
152.163.252.0/23
152.163.96.0/22
152.163.100.0/23


On Wed, 23 Feb 2005 16:27:12 -, Robertson-Ravo, Neil (RX)
<[EMAIL PROTECTED]> wrote:
> Some more info
> 
> http://webmaster.info.aol.com/proxyinfo.html
> 
>



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:196165
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Limitations of CFMX 7.0 Developer Version Gateways?

2005-02-09 Thread Mike Nicholls
On a slightly related note, the first thing I tried out when I installed
CFMX7 was the XMPP gateway.  The gateway was ignoring messages I sent it,
and the CF logs seemed to indicate that this is because the gateway is only
allowed to talk to one person at a time in developer mode.  

The error listed the Jabber server the gateway was connecting to
(jabber.org) as the user it was allowed to talk to, so I guess a server
message of some sort causes the gateway to ignore everyone but the server.
Has anyone else had better luck with the XMPP gateway in developer mode?

-Original Message-
From: Brandon Harper [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 10 February 2005 1:31 p.m.
To: CF-Talk
Subject: Limitations of CFMX 7.0 Developer Version Gateways?

I'm currently working with the CFML asynch gateway in CFMX 7.0 using
the Developer edition and I seem to be having various problems with
events not running.   Essentially I'll fire off about 5 events, and
only 2 of them ever complete even though they are queued successfully.
 Nothing shows-up in any of the JRun or CF logs, so it doesn't quite
make sense.

I also tried Damon Cooper's demo file app and it doesn't work
correctly either-- it seems to die after about 10 threads or so.  I've
played around with the various settings available via the CF Admin as
well as the jrun.xml file just in case, and nothing seems to change
anything.

I was wondering if someone from MM could comment on the limitations of
the event gateway in the Developer version of CFMX 7.0 as I couldn't
find any documentation for it?  I suppose I'll probably try installing
the Enterprise trial tomorrow to test out this particular
functionality, but it would be good to know what the limitations are
in the Developer's edition.

Thanks,

- Brandon

-- 
--
http://devnulled.com



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:194012
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Homesite+ Tag Updates for CFMX7

2005-02-09 Thread Mike Nicholls
The Dreamweaver stuff is at
http://download.macromedia.com/pub/coldfusion/7/dwextend/dwmx2004_extensions
_for_cfmx7.mxp - both are linked from
http://www.macromedia.com/software/coldfusion/downloads/  

-Original Message-
From: Parker, Kevin [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 10 February 2005 11:50 a.m.
To: CF-Talk
Subject: RE: Homesite+ Tag Updates for CFMX7

I couldn't find them either and I was also looking for any DW stuff 



++
Kevin Parker
Web Services Manager
WorkCover Corporation

p: 08 8233 2548
m: 0418 806 166
e: [EMAIL PROTECTED]
w: www.workcover.com

++

-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 10 February 2005 9:06 AM
To: CF-Talk
Subject: Homesite+ Tag Updates for CFMX7

Does anyone know where the Homesite+ tag updates for CFMX7 are?

Thanks!





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193982
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Homesite+ Tag Updates for CFMX7

2005-02-09 Thread Mike Nicholls
http://download.macromedia.com/pub/coldfusion/7/hsextend/hsplus_extensions_f
or_cfmx7.zip 

-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 10 February 2005 11:36 a.m.
To: CF-Talk
Subject: Homesite+ Tag Updates for CFMX7

Does anyone know where the Homesite+ tag updates for CFMX7 are?

Thanks!



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193980
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: PostgreSQL problem and cfqueryparam

2005-02-01 Thread Mike Nicholls
That is pretty strange - does setting the "null" attribute on the
cfqueryparam help?



>From that error message it looks like you're going through the SequeLink
drivers - you might want to try using the PostgreSQL JDBC drivers,
there's a technote at
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18338
that goes over how to set them up.

-Original Message-
From: Rick Root [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 2 February 2005 5:01 a.m.
To: CF-Talk
Subject: SOT: PostgreSQL problem and cfqueryparam

I'm having a strange issue with postgresql...

I have a database table containing a field defined as follows:

ABSTRACT text not null default ''

When I insert data, I use cfqueryparam as follows:



And I'm seeing this error:

[Macromedia][SequeLink JDBC Driver][ODBC Socket]ERROR: ExecInsert: Fail 
to add null value in not null attribute abstract

This works great in tables defined the same way in MySQL ...

I would think that cfqueryparam would be sending an empty string, not a 
null...

The simpler solution is just to allow null values in fields that are not

required... but I tend to avoid null values as a general rule (I read 
somewhere that indices on not null fields are more efficient)

  - Rick



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:192640
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Error using MSXMLDOM

2005-01-27 Thread Mike Nicholls
You're going to kick yourself ;-)
It looks like you forgot to double up the quotes in your XPath expression to
escape them from CF.  Try this: 



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, 28 January 2005 5:09 a.m.
To: CF-Talk
Subject: Error using MSXMLDOM

 I'm experimenting with using the MSXMLDOM. I getting an error I cant get
around..


Here's the code








 



And here's the error

Invalid CFML construct found on line 20 at column 89.  
ColdFusion was looking at the following text:
#

The CFML compiler was processing:an expression beginning with
"objXMLDOM.SelectSingleNode", on line 20, column 35.This message is usually
caused by a problem in the expressions structure.

a CFSET tag beginning on line 20, column 18.  
  
The error occurred in
C:\inetpub\wwwroot\Docwf\StandardParagraphs\act_KillPG.cfm: line 20
Called from C:\inetpub\wwwroot\Docwf\StandardParagraphs\fbx_Switch.cfm: line
55
Called from C:\inetpub\wwwroot\Docwf\fbx_fusebox30_CF50.cfm: line 241
Called from C:\inetpub\wwwroot\Docwf\fbx_fusebox30_CF50.cfm: line 1
Called from C:\inetpub\wwwroot\Docwf\fbx_fusebox30_CF50.cfm: line 1
Called from C:\inetpub\wwwroot\Docwf\index.cfm: line 37
 
18 :
19 : 
20 :
21 :
22 : 



-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.8.0 - Release Date: 01/27/2005
 





~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:191988
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CF calling a page itself

2005-01-19 Thread Mike Nicholls
You could also fire off a CFHTTP request to the page you are calling with a
timeout of 1 - not quite instant, but possibly better than waiting.  I seem
to remember that a timeout of 0 causes your page to wait as long as
necessary for the request to finish before continuing, so be careful ;-)

Apparently Blackstone is supposed to have Asynchronous CFML Gateways that
make this sort of thing a lot more elegant:
http://www.dcooper.org/Blog/client/index.cfm?mode=entry&entry=24BEF3D6-4E22-
1671-55146EEC011D18D4


-Original Message-
From: Matthew Walker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 20 January 2005 9:32 a.m.
To: CF-Talk
Subject: RE: CF calling a page itself

How about loading the page into a hidden iframe? When the page is finished,
you can get the page in the iframe to call some JavaScript in the parent
page:

parent.myJSMethod();

-Original Message-
From: Matthew Small [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 20 January 2005 9:23 a.m.
To: CF-Talk
Subject: CF calling a page itself

Hi,

I need to have a CF page make a call to another CF page on the
same server but not wait for a response.  What I really need is just to do
some processing in the background but have the presentation send an "Action
complete" message to the user instead of timing out.  Can anybody help?

 

Thank you,

Matthew Small







~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:191114
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: regex help (Almost)

2005-01-16 Thread Mike Nicholls
Regular expressions are "greedy" by default, they match as much as they can.
Adding "?" to a qualifier makes it non-greedy - this seemed to do the job
for me, but I haven't looked too closely at your expression.

str = rereplace(str,
"(\[quote\](.*?)\[/quote\])(?!((?!\[code\]).)*?\[/code\])",
"\2", "ALL")

-Original Message-
From: Ewok [mailto:[EMAIL PROTECTED] 
Sent: Monday, 17 January 2005 10:01 a.m.
To: CF-Talk
Subject: RE: regex help (Almost)

The regex works for most cases... but it's not stopping at the next ending
tag...

For example, the quote replac regex...

I have 

[quote]heres a quote[/quote]
Here's some text
[quote]here's another quote[/quote]

The expression replaces quote tags with blockquote tags unless it false
between [code][/code] tags (which it doesntin this case)

The result is 

heres a quote[/quote]
Heres some text
[quote]here's another quote

Which of course should be 
Heres a quote
Heres some text
here's another quote

This is the regex that's causing this...

str = rereplace(str,
"(\[quote\](.*)\[/quote\])(?!((?!\[code\]).)*?\[/code\])",
"\2", "ALL");

How can I change it to stop at the first [/quote] tag?

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 265.6.12 - Release Date: 1/14/2005
 




~|
Stay Ahead of Hackers - Download ZoneAlarm Pro
http://www.houseoffusion.com/banners/view.cfm?bannerid=65

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190635
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Homesite

2005-01-13 Thread Mike Nicholls
> why complain its less money than it was before?

Because Dreamweaver MX 2004 with Homesite+ costs nearly 4 times as much as a
standalone copy of Homesite, it's a bit on the nose that developers have to
fork out an extra $280 US dollars if all they want is the few extra features
of Homesite+.



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190371
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Homesite

2005-01-13 Thread Mike Nicholls
The problem with the standalone copy is that it's plain Homesite, it's not
quite the same as Homesite+.  I forget the exact differences, but I think
that Homesite+ has better CFML support.  Homesite+ is only available with
Dreamweaver sadly.

-Original Message-
From: Rebecca Wells [mailto:[EMAIL PROTECTED] 
Sent: Friday, 14 January 2005 1:38 p.m.
To: CF-Talk
Subject: Re: Homesite

>What's the deal with Homesite?  Is it still available?  From what I know, 
>HomeSite was merged into DW as of the MX release, and is no longer 
>available.

In addition to being included on the DW CD, t's also available to buy
(without DW) from MM:
http://www.macromedia.com/software/homesite/



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:190359
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Debugging Server Hangs

2005-01-11 Thread Mike Nicholls
I find that stack traces are invaluable for this sort of debugging.

See http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18339
for details, it tells you how to generate and interpret them.

Mike

-Original Message-
From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 12 January 2005 9:06 a.m.
To: CF-Talk
Subject: Debugging Server Hangs

What does everyone do about tracking down pages/code that cause the cf
server to slow down or hang and you are left with restarting the
services/ machine to solve it?

 

Every once in a while our CF server comes to a crawl or get a "JRUN
closed connection" error.   Looking in the log files doesn't give too
much information.  Wouldn't it be nice if there was a "CF Profiler" like
the SQL Server "SQL Profiler" to see what code was being processed and
such?

 

What does everyone else do about this?  

 

Kevin.





~|
Sams Teach Yourself Regular Expressions in 10 Minutes  by Ben Forta 
http://www.houseoffusion.com/banners/view.cfm?bannerid=40

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189979
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54