RE: [cfaussie] Paid template sites

2009-11-17 Thread charlie arehart
Besides those offered so far, I have still more options for you in a category of my CF411 site: Web Site Design Repositories http://www.cf411.com/#sitedesign The site has over 100 categories and over 1000 links to resources and tools of interest to CFers. Anytime you might ask, does anyone know

[cfaussie] Re: Paid template sites

2009-11-17 Thread karan
Thanks Charlie Your site is a great resource. Might come in handy regarding resouces for other stuff too... On Nov 18, 3:29 am, charlie arehart charlie_li...@carehart.org wrote: Besides those offered so far, I have still more options for you in a category of my CF411 site: Web Site Design

[cfaussie] Re: Paid template sites

2009-11-17 Thread karan
Thanks Charlie Your site is a great resource. Might come in handy regarding resouces for other stuff too... On Nov 18, 3:29 am, charlie arehart charlie_li...@carehart.org wrote: Besides those offered so far, I have still more options for you in a category of my CF411 site: Web Site Design

[cfaussie] Calculate variable size in bytes

2009-11-17 Thread BarryC
Hi, Does anybody know if there is a way in coldfusion (or the underlying java language) to calculate the size of a variable in bytes? I want to calculate the size of a struct in bytes, but I cannot find a way to calculate it and there doesn't look to be any function that does it? Thanks :)

Re: [cfaussie] Calculate variable size in bytes

2009-11-17 Thread Mark Mandel
The only way I know to reliably do this is through the sizeOf Project: http://sizeof.sourceforge.net/ But this does mean you have to include an agent with your JVM, and I don't know what the overhead of that agent will be. Mark On Wed, Nov 18, 2009 at 11:38 AM, BarryC barrychester...@gmail.com

Re: [cfaussie] Calculate variable size in bytes

2009-11-17 Thread Barry Chesterman
Cool, thanks I'll give it a try On Wed, Nov 18, 2009 at 1:53 PM, Mark Mandel mark.man...@gmail.com wrote: The only way I know to reliably do this is through the sizeOf Project: http://sizeof.sourceforge.net/ But this does mean you have to include an agent with your JVM, and I don't know

Re: [cfaussie] Calculate variable size in bytes

2009-11-17 Thread Barry Chesterman
unfortunately it requires java 5 and we only have java 4 :( On Wed, Nov 18, 2009 at 1:57 PM, Barry Chesterman barrychester...@gmail.com wrote: Cool, thanks I'll give it a try On Wed, Nov 18, 2009 at 1:53 PM, Mark Mandel mark.man...@gmail.comwrote: The only way I know to reliably do this

Re: [cfaussie] Calculate variable size in bytes

2009-11-17 Thread Mark Mandel
Do you need to be calculating at run time? Or is this for tracking down a memory issue? Mark On Wed, Nov 18, 2009 at 1:16 PM, Barry Chesterman barrychester...@gmail.com wrote: unfortunately it requires java 5 and we only have java 4 :( On Wed, Nov 18, 2009 at 1:57 PM, Barry Chesterman

[cfaussie] Re: Persistent Scopes and Memory

2009-11-17 Thread BarryC
Just in case anyone is interested, Today I did a test to answer my original question; Does data in the application and server scopes get stored in the tenured generation memory, or the permanent generation memory? I found that Application, Session and Server scopes all stored their 'data' in the

Re: [cfaussie] Re: Calculate variable size in bytes

2009-11-17 Thread Mark Mandel
I use Eclipse Memory Analyser for things like that: http://wiki.eclipse.org/index.php/MemoryAnalyzer You could also look at visualVM as well. Mark On Wed, Nov 18, 2009 at 3:57 PM, BarryC barrychester...@gmail.com wrote: for tracking down a memory issue. I have a suspicion that we are

[cfaussie] Trying to consume .Net Webservice

2009-11-17 Thread Dawesi
I'm looking for someone who can help me connect to a .Net webservice from Dept Of Education... I'm about to look at the CFX_HTTP5 com object from the component store... before that I was wondering if there was anyone with experience with common errors when consuming .Net webservices. I can see

[cfaussie] Re: Calculate variable size in bytes

2009-11-17 Thread BarryC
oh, so that actually lets you see scopes like server, session, application to see what overall size they have, and sizes of things within them? I was under the impression that you could only see the low level data in memory. If that's the case, then I'll give it a go :) On Nov 18, 6:00 pm, Mark

[cfaussie] Re: Trying to consume .Net Webservice

2009-11-17 Thread BarryC
Is there any directory authentication going on such as .htaccess or IIS NTLM authentication? Can you paste a copy of the error you get when you request the web service? a .Net web service should be just like consuming any other web service, as web services are supposed to be a standard protocol.

Re: [cfaussie] Trying to consume .Net Webservice

2009-11-17 Thread skateboard.com.au
I tried for ages to get it to work with cf6, maybe it works with later versions I dont know. That said, in cf6 you can't do it natively because .net used the schema that allows multi return values and such. I ended up just using straight cfhttp and doing it all at the soap level. cheers

Re: [cfaussie] Trying to consume .Net Webservice

2009-11-17 Thread skateboard.com.au
yeah, because i suck -Original Message- From: Zac Spitzer zac.spit...@gmail.com To: cfaussie@googlegroups.com Date: Wed, 18 Nov 2009 16:45:13 +1100 Subject: Re: [cfaussie] Trying to consume .Net Webservice any reason you haven't tried a modern release like CF8 or cf9 ? On Wed, Nov

Re: [cfaussie] Trying to consume .Net Webservice

2009-11-17 Thread Christophe Albrech
Connection error might very well be a certificate problem. - does it run over SSL, and if so have you downloaded the cert file and installed it? - you said department of education. I integrate with DECSSA (department of education and children services SA). same guys? - one great tool to play

Re: [cfaussie] Re: Calculate variable size in bytes

2009-11-17 Thread Mark Mandel
You can see individual objects in memory... so yes, you just need to know the Java class names of Application, Session etc (pretty easy to guess), and work from there. Mark On Wed, Nov 18, 2009 at 4:31 PM, BarryC barrychester...@gmail.com wrote: oh, so that actually lets you see scopes like