Re: [cfaussie] CF 11 creating barcodes

2015-04-22 Thread Dmitry Yakhnov

Hi Brian,

I am using BBQ library in one of the projects, had same problem, but in 
CF10.


 In headless env there is no default font. It causes that text isn't 
added.

http://sourceforge.net/p/barbecue/patches/3/

You have to upgrade to version 1.9-alpha1, which has that patch:

1. Download [trunk] snapshot from 
http://sourceforge.net/p/barbecue/code/HEAD/tree/

2. Unzip file and run build.bat
3. Get barbecue-1.9-alpha1.jar from build/dist folder and replace 
barbecue-1.5-beta1.jar with it


Good luck!

Cheers,
Dmitry.

On 23/04/2015 10:43 AM, Brian Knott wrote:

Hi Guys.
I running the Barbecue barcode application on CF V8.  No issues works 
well.
I'm in the process of doing a migration to CF11.  The barcodes do 
generate but in CF11 there are no numbers below the barcode.  I think 
it has something to do with the font.
I'm running V1.5 beta 1.  Which appears to be the latest version 
http://barbecue.sourceforge.net/
Has anyone had an experience with this product and CF 10 or 11.  Does 
anyone use a different produce to produce barcodes.

Code snippet below.
bc = createobject(java,net.sourceforge.barbecue.Barcode);
bcFactory = 
createobject(java,net.sourceforge.barbecue.BarcodeFactory);
bcEnv = 
createObject(java,net.sourceforge.barbecue.env.EnvironmentFactory);

   os = createobject(java,java.io.FileOutputStream);
   number = orderNumber;
   bcImage = 
createobject(java,net.sourceforge.barbecue.BarcodeImageHandler);

   bc = bcFactory.createCode128(*2175#number#);
   bc.setLabel(*2175 #number#);
   bc.setBarWidth(0.35);
   bcEnv.setHeadlessMode();
   bc.setFont(bcEnv.getEnvironment().getDefaultFont());
   bc.setDrawingText(true);
   bc.setDrawingQuietSection(true);
   fileName = c:\inetpub\wwwroot\iMine Prod\BBQ\#url.id#.jpg;
   bcImage.writeJPEG(bc, os.init(fileName));
   os.flush();
   os.close();
Brian
--
You received this message because you are subscribed to the Google 
Groups cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.

Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] SOme Sql / Logic assistance

2014-08-27 Thread Dmitry Yakhnov

Hi Gavin,

To me it looks like you have to do QoQ on stuff and select distinct 
employeeID. Results will be used for outer loop, instead of original stuff.


Cheers,
Dmitry.


On August 27, 2014 5:55:18 PM Gavin Baumanis gavinbauma...@gmail.com wrote:


Hi Everyone,

I am having  one of those days when I just can't think creatively and would
like to ask for some help, please.

I realise what I am doing wrong... what I don't have is a sense of how to
do it correctly.
Please, let me give you the details in pseudo-code...

query stuff //gets lots of rows
loop stuff
employeeid =  stuff.employeeid[i]
qoq = query of queries from stuff all rows that have stuff.employeeid
= employeeid
   qoq also includes a sythetic column of max(date) as maxDate
so all rows of an employee have the same maxDate value
loop qoq
update a different table with a subset of qoq
do stuff based on employee with aggregated employee data


So assuming I have 3 rows of id 20,
I do something like;

update other table
set
columna = qoq.columnA[i],
--  --   B = qoq.columnB[i],

newDate = maxdate


So the issue I have is that for each of the 3 instances of employeeid = 20
in STUFF, I do 3 updates
What I really want is just to do 1 set of updates per employeeid.
How do I exclude the 2nd and 3rd lot of updates? (in my example of
employeeid appearing 3 times in STUFF?

Obviously it gets worse - the more times a single employee appears in the
initial resultset!


As always thanks!
Gavin.



--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an 
email to cfaussie+unsubscr...@googlegroups.com.

To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] Unable to read WSDL from URL

2014-07-10 Thread Dmitry Yakhnov

Hi Scott,

This seems to be a well known bug:

https://bugbase.adobe.com/index.cfm?event=bugid=3531653
https://forums.adobe.com/message/5207697

Cheers,
Dmitry,

On 10/07/2014 10:37 AM, Scott Thornton wrote:


Hi,

I am working with webservices for the first time, and my knowledge is 
very rudimentary.


Scenario:

I need to implement NT Authentication on my intranet app. My CF6.1 
server can't process the  cfntauthenticate tag.


I also have a CF9 9,0,1,274733 server that I can use to process a 
webservice to provide authentication.


So, working locally at present on CF9...

My NTLoginService.cfc looks like :

cfcomponent displayname=NT Login Service hint=Provides NT Domain 
Authentication output=false


cffunction

access=remote

name=loginUserNT

output=no

returntype=struct

displayname=Authenticates A User 
Against A Windows Domain


hint=Authenticates a user against a 
Microsoft Windows Domain 


cfargument name=NTusername type=string required=yes 
displayname=username


cfargument name=NTpassword type=string required=yes 
displayname=password


cfargument name=NTdomain   type=string required=yes 
displayname=domain


cfntauthenticate username=#Arguments.NTusername#


password=#arguments.NTpassword#



domain=#arguments.NTdomain#


result=authUser

listgroups=false

throwonerror=false

cfreturn authUser

/cffunction

/cfcomponent

I hope to return the result of the cfntauthenticate call.

I can browse the cfc via URL http://localhost/login/NTLoginService.cfc 
and see the methods\parameters okay.


But if I browse to http://localhost/login/NTLoginService.cfc?wsdl

I receive the error:

*AXIS error*

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

Fault - Error attempting to create Java skeleton for CFC web service.; 
nested exception is:


coldfusion.xml.rpc.CFCInvocationException: 
[java.lang.NullPointerException : null]


AxisFault

faultCode: 
{http://schemas.xmlsoap.org/soap/envelope/}Server.generalException


faultSubcode:

 faultString: Error attempting to create Java skeleton for CFC web 
service.; nested exception is:


coldfusion.xml.rpc.CFCInvocationException: 
[java.lang.NullPointerException : null]


faultActor:

 faultNode:

 faultDetail:

{http://xml.apache.org/axis/}hostname:WSHBILL032

If I try to invoke the webservice with :

cfinvoke


webservice=http://localhost/login/NTLoginService.cfc?wsdl;


method=loginUserNT

returnvariable=authentication

refreshWSDL=yes

cfinvokeargument name=NTusername  value=#form.username#/

cfinvokeargument name=NTpassword   value=#form.password#/

cfinvokeargument name=NTdomain  
value=#form.domain#/


/cfinvoke

I receive the error:


  Unable to read WSDL from URL:
  http://localhost/login/NTLoginService.cfc?wsdl.



Error: 500 Internal Server Error.

http://localhost/login/ is a IIS virtual directory that points to 
c:\websites\login\


I have restarted the local CF server multiple times.

I wouldn't be surprised if I have missed something simple.

Would any one have any ideas on what to do next? Googling hasn't been 
very informative.


Thanks for any assistance.

--
You received this message because you are subscribed to the Google 
Groups cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.

Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] ORMExecuteQuery error on CF10

2014-06-11 Thread Dmitry Yakhnov

Hi Stephen,

Usually [undefined array element] error is referring to NULL value:

cfset a = [1, 2, 3, javaCast(null, true), 5] /
cfdump var=#a# abort



I am not an expert on ORM, but probably CF is expecting small_int while 
database has null value, so CF holds null until you want to use it 
(display or dump).


And probably CF9 convert is smart enough to convert null to 0, while 
CF10 allows to keep null as value.


The workaround could be to check if element 4 of your array isNull and 
convert it to 0 if required.


Cheers,
Dmitry.

On 11/06/2014 5:22 PM, Stephen M wrote:
I get the following error back as an element of the array returned 
from an ORMExecuteQuery


[undefined array element] Element 4 is undefined in a Java object of 
type class coldfusion.runtime.Cast$1.


This is on my local dev box which has CF10.  But, on production which 
runs CF9, the same code and the same data run fine.


That element should simply be a small integer.

The first element of the outer array looks like this

C:\www\\views\user\view.cfm 48 - array
1   4340
2   Customer
3   Admin
4 	[undefined array element] Element 4 is undefined in a Java object 
of type class coldfusion.runtime.Cast$1.

5   Customer.Admin
6   0

Element 4 of that inner array should just be 0, 1 or 2.  Why is it 
undefined?


regards,
Stephen
--
You received this message because you are subscribed to the Google 
Groups cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.

Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] CFIMAP Error

2014-05-14 Thread Dmitry Yakhnov

Hi Brian,

Looking into Java code handling IMAP... it could be Outlook server 
forcibly closing connection (due to maintenance, compression, etc.).


If this is a case, you can try to use cftry - cfcatch - cfrethrow 
combination.


Cheers,
Dmitry.

On 15/05/2014 10:41 AM, Brian Knott wrote:

Having issues with CFIMAP and a Outlook server.



I can open a connect (most fo the time) and access email, save 
attachement etc.




The problem is that when i try to move emails form the inbox to an 
archived folder I sometines get an erro rmessage4 saying 'This 
operation is not allowed on a closed folder'.  This works about 50% of 
the time and mail is moved, the rest of the time I get the error.




Code



cfimap connection=curragh_mail action=movemail folder=inbox 
newfolder=archived/Thiess_prod 




Anyone see this before?

Brian





--
You received this message because you are subscribed to the Google 
Groups cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.

Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


[cfaussie] Re: CF10 Cross Domain sessions with HTTPS

2014-04-03 Thread Dmitry Yakhnov
Hi Phil,

This post seems to be pretty relevant to your problem:
http://www.shilpikhariwal.com/2012/02/how-to-secure-coldfusion-session.html

In the end it says:
*Note: all these configurations we discussed are valid for CF session 
cookies and Authentication cookies. For JSESSIONID, one needs to make 
changes in server related configurations.*

So probably direct edit of config files is involved.

Cheers,
Dmitry.

On Thursday, 3 April 2014 09:26:13 UTC+11, Phil Rasmussen wrote:

 Hi Guys

 Just wondering if anyone has come across an issue in CF10 whereby sessions 
 are dropped when crossing between HTTP and HTTPS, even though the 
 JSESSIONID is being explicitly passed in these links which had worked for 
 us for over 5 years without fail prior to CF10. From what I have read there 
 appears to be a big change to address the Session Fixation security issues 
 which would explain the HTTP/HTTPS drops but I can't find a workaround for 
 this.

 Essentially we have CF10 installed with J2EE Session Management turned on, 
 and the default HTTPOnly set to true. In the application the domain 
 structure looks as follows:

 https://book.domain.com
 http://profile.domain.com
 http://approve.domain.com

 When crossing between the domains (which had worked for many years prior) 
 the session drops and CF issues a new set of session identifiers. In order 
 to try and bypass the SSL issue, i've switch the entire application over 
 the HTTPS so at no stage will the session or cookies be served over HTTP, 
 which works fine if the user doesn't cross domains, but the moment a 
 different subdomain is clicked (ie to make a booking) then the session 
 drops.

 Even setting a cookie  in the onSessionStart() as follows has no effect:

 cfcookie name=jsessionid value=#session.sessionid# domain=.
 domain.com

 Has anyone come across this behaviour migrating to CF10?

 Cheers
 Phil


-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to cfaussie+unsubscr...@googlegroups.com.
To post to this group, send email to cfaussie@googlegroups.com.
Visit this group at http://groups.google.com/group/cfaussie.
For more options, visit https://groups.google.com/d/optout.


Re: [cfaussie] Coldfusion Builder 2 is now available to buy or try

2011-05-03 Thread Dmitry Yakhnov
Why do I need to buy CFB, if Eclipse + CFEclipse = FREE !?

-Original Message-

From: Zac Spitzer zac.spit...@gmail.com

To: cfaussie@googlegroups.com

Date: Tue, 3 May 2011 15:39:10 +1000

Subject: Re: [cfaussie] Coldfusion Builder 2 is now available to buy or try




the pricing is a bloody outrage



$299 USD == $274 AUD, but they list it as $407 AUD



FFS adobe!

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] Security update: Hotfix available for ColdFusion

2010-08-11 Thread Dmitry Yakhnov
 Procheckup has discovered that the ColdFusion admin console (and 
various programs within) are vulnerable to multiple directory traversal 
attacks related to a input parameter. No authentication is needed; all 
that is needed is that the admin console is accessible to the Internet.


*The exploit strings will be published within seven days.*

http://www.procheckup.com/vulnerability_manager/vulnerabilities/pr10-07


On 12/08/2010 10:22 AM, Steve Onnis wrote:

They couldn't give more information about the actual security issue??

-Original Message-
From: Kai Koenig [mailto:k...@koeni.de]
Sent: Thursday, 12 August 2010 8:39 AM
To: cfugauckl...@googlegroups.com; cfaussie@googlegroups.com
Subject: [cfaussie] Security update: Hotfix available for ColdFusion

Sorry for the crosspost to the NZ and AU lists, but you might want to
install this one rather sooner than later:

http://www.adobe.com/support/security/bulletins/apsb10-18.html

Cheers
Kai

--
Kai Koenig - Ventego Creative Ltd
ph: +64 4 476 6781 - mob: +64 21 928 365 /  +61 450 132 117
web: http://www.ventego-creative.co.nz
blog: http://www.bloginblack.de
twitter: http://www.twitter.com/agentK
--









--
Best regards,
Dmitry.

---
Yakhnov Studio, www.yakhnov.info http://www.yakhnov.info/

--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] Trying To Create A Basic Shopping Cart

2010-06-21 Thread Dmitry Yakhnov
Hi Claude,

 

Run this line of code only once to remove your session variable, which is a
string:

 

cfset StructDelete(session,cart) /

 

And here is the correct code:

 

cfparam name=session.cart type=array default=#ArrayNew(1)# /

cfset ArrayAppend(session.cart,StructNew()) /

cfset thisCartItem = ArrayLen(session.cart) /

cfset session.cart[thisCartItem].itemID = form.itemID /

cfset session.cart[thisCartItem].quantity = form.quantity /

cfset session.cart[thisCartItem].itemName = form.itemName /

 

Best regards,

Dmitry.

 

---

Yakhnov Studio,  http://www.yakhnov.info www.yakhnov.info

  _  

From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of rai...@ozemail.com.au
Sent: Tuesday, June 22, 2010 12:10 AM
To: cfaussie@googlegroups.com; coldfusion-ho...@yahoogroups.com
Subject: [cfaussie] Trying To Create A Basic Shopping Cart

 

Hi

 

I am trying my hand at a basic shopping cart

 

I have found an example online that uses the following code

 

cfparam name=session.cart default=arrayNew()

cfset session.cart = arrayAppend( session.cart, structNew() )

cfset thisCartItem = arraylen( session.cart )

cfset session.cart[thisCartItem].itemID = form.itemID

cfset session.cart[thisCartItem].quantity = form.quantity

cfset session.cart[thisCartItem].itemName = form.itemName

 

 

However the code generates the following error message:

 

Object of type class java.lang.String cannot be used as an array 

 

 

If someone would like to advise where the above code is causing the error
message I would be grateful

Regards

Claude Raiola (B.Econ Acc; B.Hot. Mngt)
Samaris Software
Email: i...@samaris.net mailto:i...@trackingcentral.om.au 
Website: www.SAMARIS.net http://www.TrackingCentral.com.au 
Mobile: 0414 228 948

 

-- 
You received this message because you are subscribed to the Google Groups
cfaussie group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] Australian Payment Gateways - recommendations?

2010-05-24 Thread Dmitry Yakhnov
Hi Mike,

 

+1 to eWay and/or NetRegistry, http://www.netregistry.com.au/

 

Best regards,

Dmitry.

 

---

Yakhnov Studio,  http://www.yakhnov.info www.yakhnov.info

  _  

From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Mike Kear
Sent: Monday, May 24, 2010 11:24 AM
To: cfaussie
Subject: [cfaussie] Australian Payment Gateways - recommendations?

 

It's a while since I last set up a payment gateway for my clients.  I have
to do another one and I'm updating my research on them.Does anyone have
any recommendations?  Are any of them particularly ColdFusion-friendly?  (I
dont want to have to deal with one like i did years ago with Commonwealth
Bank who told me they dont support ColdFusion because it's not a significant
technology)

 

At this stage I'm not asking about cost structure - that's the easy part to
research.   I'm asking about the other factors.

 

Here's what we need: 

 

Non-bank - if we deal with a third party gateway, we can change banks and
not have a huge problem

Reasonably intelligent support people who know at least something about
coldfusion

Can handle transactions on their own site, but still make the pages look
like our site

Is speed a factor or are they all pretty much the same in terms of
processing speed?

Are there any other non-cost factors I should take into account nowdays?

 

 

I have used Camtech in the past, and they are definitely a possibility.
Does anyone have any recommendations for any others that they think are
better than Camtech?



-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month

-- 
You received this message because you are subscribed to the Google Groups
cfaussie group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] JB-HI Moving to dotnet

2010-05-24 Thread Dmitry Yakhnov
Hi Dale,

They have changed CEO in February, http://bit.ly/jbhificeo

Best regards,
Dmitry.
 
---
Yakhnov Studio, www.yakhnov.info
-Original Message-
From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Dale Fraser
Sent: Monday, May 24, 2010 9:13 PM
To: cfaussie@googlegroups.com
Subject: RE: [cfaussie] JB-HI Moving to dotnet

Interesting,

Anyone know who the IT manager is, I'd love to email him about the factors
that led to the decision. 

Regards
Dale Fraser

http://dale.fraser.id.au
http://cfmldocs.com
http://learncf.com
http://flexcf.com

-Original Message-
From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Dawesi
Sent: Monday, 24 May 2010 4:57 PM
To: cfaussie
Subject: [cfaussie] JB-HI Moving to dotnet

Looks like JB-HI is moving to .net
http://www.seek.com.au/job/software-developer/melbourne-east/17358904/72/1/

Another misinformed IT manager.

-- 
You received this message because you are subscribed to the Google Groups
cfaussie group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.

-- 
You received this message because you are subscribed to the Google Groups
cfaussie group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



RE: [cfaussie] looking for CF version 7.02 download

2010-01-12 Thread Dmitry Yakhnov
Hi Stephen,

I have Windows 7.0.1 package and update to 7.0.2 version:

coldfusion-701-win.exe (276Mb)
coldfusion-70-updater2-win.exe (46Mb)


Best regards,
Dmitry.
 
---
Yakhnov Studio, www.yakhnov.info
-Original Message-
From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf
Of Stephen M
Sent: Wednesday, January 13, 2010 1:07 PM
To: cfaussie
Subject: [cfaussie] looking for CF version 7.02 download

I've been searching high and low through the Adobe site for a full
7.02 installation package but I can't find it.  I can find updates and
hotfixes for version 7 but not the full installation. The link from
the CF 7 updater page just throws you back to the CF9 page.

Can anyone point me in the right direction?


-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaus...@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.




[cfaussie] Re: Google PageRank calculated in CF

2008-01-03 Thread Dmitry Yakhnov
Follow me =)

 

http://www.yakhnov.info/go/projects/getrank/

This library will help you to get Alexa Rank and Google PR using ColdFusion.

 

 

Best regards,

 

Dmitry Yakhnov

Technical Director

 

Yakhnov Studio

 http://www.yakhnov.info/ http://www.yakhnov.info/

  _  

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Taco 
Fleur
Sent: Wednesday, January 02, 2008 11:38 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Google PageRank calculated in CF

 

how do you get it from google without the tool bar?

On 1/2/08, M@ Bourke [EMAIL PROTECTED] wrote: 

I thought they simply got the page rank from google, thats the best way to get 
your page rank.
the google tool bar tells you the page rank of each page. 

M@ 



www.clickfind.com.au
blog: http://australian-search-engine.blogspot.com/ 





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: ANN: ColdFusion 8 Launch Party - 8th Aug - Melbourne

2007-07-29 Thread Dmitry Yakhnov

If we still have a free pizza, than I am in ;-)

Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/
-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark 
Mandel
Sent: Monday, July 30, 2007 9:36 AM
To: cfaussie@googlegroups.com; [EMAIL PROTECTED]
Subject: [cfaussie] ANN: ColdFusion 8 Launch Party - 8th Aug - Melbourne


All! It's a special CF8 Launch party

Location:

NGA.net, Level 2, 17 Raglan St, South Melbourne
Map: http://link.toolbot.com/google.com/73016

When:

8th of August, Meeting starts at 6:30, so get there before hand -
** Please note, we are starting a little bit early this time, due to
the crossover between states.

Agenda:

This is the official ColdFusion 8 Launch Party!

We will have presentations from Ben Forta via Connect, crossovers
between the launch parties at all the other CFUGs across Australia and
New Zealand, and prizes from Adobe for those people that attend!

Everyone is welcome, and if you haven't attended a single CFUG meeting
yet, now is the time to come down!

If you are going to attend, please RSVP to [EMAIL PROTECTED]

See the CFUG Melbourne Calendar at:
http://www.cfcentral.com.au/Events/index.cfm

Or add to your Google Calendar - search for 'CFUG Melbourne'.

As per usual, we'll grab pizza during the evening, so we have
something to scoff down!

Look forward to seeing you all there.

-- 
E: [EMAIL PROTECTED]
W: www.compoundtheory.com





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: SMS providers

2007-06-21 Thread Dmitry Yakhnov
http://www.messagenet.com.au/

 

They have simple SMS and MMS too, but so far I've never tried them :-)

 

http://www.messagenet.com.au/software/ (API)

 

Best regards,

 

Dmitry Yakhnov

Technical Director

 

Yakhnov Studio

 http://www.yakhnov.info/ http://www.yakhnov.info/

  _  

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Ryan Sabir
Sent: Friday, June 22, 2007 11:48 AM
To: 'cfaussie@googlegroups.com'
Subject: [cfaussie] SMS providers

 

Hi all,

 

Who are people using for interactive SMS services in Australia these days?
Are there any that play nice with the CF SMS gateway? How about MMS?

 

thanks

 


  http://www.newgency.com/footerImages/logo.gif 

Ryan Sabir
Technical Director

p: (02) 9274 8030
f: (02) 9274 8099
m: 0411 512 454
w:  http://www.newgency.com/ www.newgency.com

  http://www.newgency.com/footerImages/divider.gif 

Newgency Pty Ltd
Web | Multimedia | eMarketing

115 Cooper St
Surry Hills NSW 2010
Sydney, Australia

 





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Safari for window

2007-06-13 Thread Dmitry Yakhnov

The only website Safari for Windows works fine with is www.apple.com :)

Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Wednesday, June 13, 2007 4:40 PM
To: cfaussie@googlegroups.com; [EMAIL PROTECTED]
Subject: [cfaussie] Safari for window


Hey all

Don't know how many people know about this but I thought I would post it
anyway.  There is a Windows version of the Safari browser available from the
apple website (http://www.apple.com/safari/download/).  I am giving it a but
of a look-see to see if rendering issues are the same for the windows
version and the MAC version to save me running a MAC just for testing.

Steve






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Safari for window

2007-06-13 Thread Dmitry Yakhnov

No, I can browse any website with my installation of Safari with no problem
at all.

But most of websites looks a bit crappy -- lists are broken, colours
inverted, hyperlinks disappears, etc. -- although I definitely know that
some of them were built using MacOS Safari in first instance.

Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Haikal Saadh
Sent: Wednesday, June 13, 2007 4:59 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Safari for window


I think Dmitry has been bitten by the URL-Bar-does-not-work bug.

I got bit by it when I tried it on OSX as well.

Andrew Scott wrote:
 Actually it works fine for all our websites as well, but they had already
 been tested for Safari on a Mac. Except www.aegeon.com.au which doesn't
seem
 to have a problem with being shown in Safari.



 Andrew Scott
 Senior Coldfusion Developer
 Aegeon Pty. Ltd.
 www.aegeon.com.au
 Phone: +613  8676 4223
 Mobile: 0404 998 273



 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
 Of Dmitry Yakhnov
 Sent: Wednesday, 13 June 2007 4:48 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: Safari for window


 The only website Safari for Windows works fine with is www.apple.com :)

 Best regards,
  
 Dmitry Yakhnov
 Technical Director
  
 Yakhnov Studio
 http://www.yakhnov.info/

 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf
 Of Steve Onnis
 Sent: Wednesday, June 13, 2007 4:40 PM
 To: cfaussie@googlegroups.com; [EMAIL PROTECTED]
 Subject: [cfaussie] Safari for window


 Hey all

 Don't know how many people know about this but I thought I would post it
 anyway.  There is a Windows version of the Safari browser available from
the
 apple website (http://www.apple.com/safari/download/).  I am giving it a
but
 of a look-see to see if rendering issues are the same for the windows
 version and the MAC version to save me running a MAC just for testing.

 Steve








 

   






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: CFAussie Community Head Count

2007-05-31 Thread Dmitry Yakhnov

ping www.adobe.com -t


Best regards,
 
Dmitry Yakhnov
Technical Director
 
Yakhnov Studio
http://www.yakhnov.info/
-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Matt Voerman
Sent: Friday, June 01, 2007 12:02 PM
To: cfaussie
Subject: [cfaussie] CFAussie Community Head Count


Hi Guys,
Just a quick note to let you guys know that we at the Adobe Australia
office haven't forgotten about you, and do monitor this (and several
other) lists on a regular basis.

We have a couple of Community related irons in the fire and will
communicate more on them as they solidify.

What would be of great help to us in the meantime would be a hands up
(head count) on how many Aussie CF'ers are reading this list on a
regular basis. If you could just ping a response to to this thread
that would be grouse.


Thanks in advance

Matt Voerman

Senior Consultant
Adobe Systems Pacific






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: OT: Melbourne CFUG

2007-03-15 Thread Dmitry Yakhnov
Hi ppl,

 

I am both hands up for monthly CFUG meetings and even can do presentation on 
OpenID next time.

 

 

Best regards,

 

Dmitry Yakhnov

Technical Director

 

Yakhnov Studio

 http://www.yakhnov.info/ http://www.yakhnov.info/

  _  

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark 
Mandel
Sent: Thursday, March 15, 2007 11:29 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Melbourne CFUG

 

All,

I just got off the phone with Steve, we had a good chat, and things aren't 
nearly as heated as they seem to be in email.

Basically we've decided that we will share the load of running and organising 
the CFUG meetings between the two of us, and whoever else wants to help share 
in the responsibility. 

(Dale - willing to put your money where you mouth is and help organise 
presentations? :oD )

This may well be a relatively free form situation where there may be a roster 
to organise a presentation for the coming month(s), but I think it will end up 
being pooled into a combined effort. 

Steve and I both agree that there should be a return to monthly meetings with 
presentations - but there is often difficulty in organising people for every 
single month.  I think that between a group of us, this should mean there will 
be a variety of presentations on a variety of interesting topics. 

Steve and I discussed doing the next meeting post WebDU, so keep your ears to 
the ground for that.

But on that note - 

If *anyone* is willing to step and up and help organise presentations, please 
contact either me, or Steve, and we will coordinate our efforts together. 

Also if anyone is willing to do presentations on pretty much ANYTHING (high 
level, low level, CF related, Database related, Case Study, whatever), please 
contact me, or Steve, and let us know.  

This is the time to really get things happening people, but we really do need 
your help.

Regards,

Mark

On 3/15/07, Dale Fraser [EMAIL PROTECTED] wrote:

Steve,

 

I really hope that you're not upset, the tone of that suggests otherwise. I 
really hope that you still come and contribute to the meeting and I'm sure that 
all the regulars do also.

 

I agree with marks Monthly meetings and discussion type sessions, hopefully we 
will get good attendance and build the group.

 

PS: To all the slackers at my work who never attend, I want to see you there 
this year. You know who you are. I've also worked with lots of good people in 
the past who I know silently read this list and never comment, it's time to 
join in, you will learn some good stuff and meet some good people.

 

Regards

Dale Fraser

 

http://dale.fraser.id.au/blog 

 

  _  

From: cfaussie@googlegroups.com [mailto: mailto:cfaussie@googlegroups.com  
[EMAIL PROTECTED] On Behalf Of Steve Onnis
Sent: Thursday, 15 March 2007 10:40 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Melbourne CFUG

 

Its all yours Mark

 

Good luck with it all

 

  _  

From: cfaussie@googlegroups.com [mailto: mailto:cfaussie@googlegroups.com  
[EMAIL PROTECTED] On Behalf Of Mark Mandel
Sent: Thursday, 15 March 2007 10:35 AM


To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: OT: Melbourne CFUG

All,

First off, non of this should put down any of the hard work that Steve has put 
into the Vic CFUG, He's done an excellent job over the past few years.

But, Just to be clear on my position here, since people seem to enjoy talking 
on my behalf - 

*   I'm more than happy to be nominated for the Role of CFUG user manager, 
If, and only If Steve wants to step down 
*   I would honestly like to see a return to monthly meetings where there 
is a presentation each month.  I know this is a lot of work, but I have several 
ideas: 

*   Case Studies - people can present work they have done, and discuss what 
went well, and what went bad about it 
*   'Try a Framework' evening. Everyone gets together with their laptops 
and we all get a framework up and running and try out various things in a 
collaborative environement 
*   CF Certification Study groups 
*   Presentation on technologies (i.e. like what we have now) 
*   Multi-session free training on CF (even beginner stuff)

*   NGA.net is still available as a venue (tho we have started filling up 
the space we used last time, but I think we can find somewhere to do it), as 
long as people still like South Melbourne as a venue. 

I think that last year showed that there were plenty of people in the group 
that were more than willing to share their time and their efforts in doing 
multiple presentations, and they were great (big kudos to Bjorn for his Flex 
presos).  We should be able to capitalise on that and really get some momentum 
going.  I have to admit, it does seem a little stop-start. 

But at the end of the day, that is simply my *opinion*, Steve puts in a lot of 
work into the CFUG, and much thanks to him for the work he does, but I figured 
I would

[cfaussie] OpenID

2006-12-12 Thread Dmitry Yakhnov
Hi guys,

 

Has anyone used ColdFusion to implement the OpenID authentication framework?

http://openid.net/

 

There are few implementations in Java, so might be worth to use their
libraries.

 

Best regards,

 

Dmitry Yakhnov

Technical Director

 

Yakhnov Studio

 http://www.yakhnov.info/ http://www.yakhnov.info/

 



--~--~-~--~~~---~--~~
 You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---


[cfaussie] Re: Encrypted Source

2006-10-15 Thread Dmitry Yakhnov








Hi Dale,



This might be helpful ;-)

http://www.cse.unsw.edu.au/~matthewc/files/cfdecrypt.zip





Best regards,



Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/











From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dale Fraser
Sent: Friday, October 13, 2006
6:48 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Encrypted
Source





I have some encrypted CFM
templates that I need to decrypt.



I tried using a tool to
decrypt them but it asks for a password, surely if they need a password to
decrypt CF server must know this password. Can someone tell me where this
lives.



Or some other way to decrypt
the files.



Regards
Dale Fraser

http://dale.fraser.id.au













--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: AUTH_USER question

2006-10-03 Thread Dmitry Yakhnov








Hi Grant,



What is the problem? Provide
us with more details such as:

-
What kind of OS do you use, versions of CF and Apache?

-
What kind of auth do you use? Basic, DB, AD?

-
What CGI dump is showing?



Look at REMOTE_USER
variable as AUTH_USER is not the primary one.







Best regards,



Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/













From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grant
Sent: Tuesday, October 03, 2006
12:52 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] AUTH_USER
question





Hi All

How do you set up apache to pass through the cgi.auth_user values? I can't find
any doc's on it... if someone can help...
*warning* Apache n00b *warning*

Thanks
Grant





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] CF vs ...

2006-08-07 Thread Dmitry Yakhnov








Hi ppl,



Just couple other reasons to move out from CF to
ASP.NET (as few clients told):



-
CF hosting is expensive

-
Easy to find employees
with Java/.NET experience

-
Trends to keep everything
around MS









Best regards,



Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/








--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: CF vs ...

2006-08-07 Thread Dmitry Yakhnov








Whatta nice discussion has raised my post, LOL ;-)



Jeremy is right that company directors makes the decisions, not developers;
while my message was about why directors thinking that .NET is better than CF
 trends, jobs market and someone told me.



Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of
cfgroupie
Sent: Tuesday, August 08, 2006 9:02 AM
To: cfaussie
Subject: [cfaussie] Re: CF vs ...





Guys Guys Guys,



Like I said many posts ago. Its not only hosting,
trends, and

programmers that are the issue. It is the company
directors that make

the decesions. i.e. I have reason to believe we are
sleeping with the

enemy...(MS that is) and because we get special
treats to work in

.NET or convert our CF code over to .NET (god for bid
but its only a

matter of time), owners of companys go wow that
sounds like a deal.



Not to mention I have to deal with brain washed .net
programming morons

coming out of University everyday saying we could do
this or that

better in .NET. idiots.



Jeremy (once a CF programmer with a heart, now i'm a
.NET newbie)

p.s. Linux Rox windows sucks.thats for chad!
HAHAHAHAHA











--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: CF to ASP programmer wanted

2006-07-27 Thread Dmitry Yakhnov

Hi Rod,

I thought that your point was to hire someone with broad knowledge of
languages, who can do job in 2-3 days (looks like advanced level).

I think that better to know one language, but at advanced level, rather than
five at intermediate. There are a lot of guys these days, who knows syntax
of few languages, but lacks of programmer turn of mind, hence we have a lot
of sites with crooked logic and crappy scripts.

The problem of language choice is definitely a business analyst deal, not a
developer, so analyst need to have an open mind and know bits and pieces of
everything to come up with right decision.

I like job ads where people are looking for Java/ASP/PHP/CF programmer
(especially the ones who need Admin+DBA+Programmer+Security+Tester in one
person). 

First, select language for your needs, than hire someone at advanced level
to do development in this particular language.


Best regards,
 
Dmitry Yakhnov
Web Developer
http://www.yakhnov.info/
-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, July 27, 2006 12:12 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: CF to ASP programmer wanted


Hi Dmitry,

So your trying to say there is no point in learning a new language unless
your a guru at it? How does one become at guru at any language (or surgery
for that matter) unless they start learning and using it at the beginner's
level? I'm not quite sure what your trying to say here? My point was
simply ppl should remain open minded and look at all options, cfml is
great but for some cases / projects other languages are better. What is
your point?

rgds
Rod


 Hi Rod,

 Why not to learn something in addition?

 If you are driving a car with automatic transmission, it might be good to
 learn how to drive a manual transmission car, while could be useful to
 learn
 how to drive a bus, or even a train, not talking about tank or jet. Anyway
 its pretty the same damn things with purpose to transport you from point A
 to point B, why not to gain something in addition?

 Do you want to be in surgery with dude, who mostly learnt something in
 addition or with the one, who has a real clue in his business?

 Best regards,

 Dmitry Yakhnov
 Web Developer
 http://www.yakhnov.info/
 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf
 Of [EMAIL PROTECTED]
 Sent: Thursday, July 27, 2006 11:21 AM
 To: cfaussie@googlegroups.com
 Cc: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: CF to ASP programmer wanted


 One thing I have always wondered on this list is why developers limit
 themselves to only cfml? Sure cfml is a great language that is easy to
 learn but vbscript, php, .Net, jsp, svg, even vrml all have their place in
 the development realm - well maybe not vrml anymore. Why not just learn as
 much as you can so you can develop in what ever language your clients
 require? Doesn't it enable you to improve your skillset, enable you to
 find work more easily and also give your clients a range of choices? With
 visual studio 2005 (and the features it ships with such as ui components)
 using a framework like atlas, .Net programming *can* be as quick as cfml
 coding.

 I personally don't mind working in any language, but I prefer cfml.


 Don't think so...

 What I think we can conclude is that this is the wrong list if you are
 looking for someone who *wants* to work in ASP! ;)

 B)


 Steve Onnis wrote:
 Have we concluded if its ASP or ASP.Net he needs?

 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf
 Of Barry Beattie
 Sent: Wednesday, 26 July 2006 9:02 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: CF to ASP programmer wanted


 sigh!

 pleze don't start another pissing contest on who's used what
 language the longest. it's such a bore!

 I suggest if yiu're *really* interested go look it up on wikipedia. I
 think CF is a touch older than asp but since there was a really good
 interview with Jeremy Allaire covering this, I invite ppl to track it
 down and have a read

 ... it's not helping Graham find someone


 On 7/26/06, M@ Bourke [EMAIL PROTECTED] wrote:
 11 years ago I chose CFML over ASP for the most productive language.

 does that mean ASP is older then CFML ?




 








 








--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: CF to ASP programmer wanted

2006-07-26 Thread Dmitry Yakhnov

Hi Rod,

Why not to learn something in addition?

If you are driving a car with automatic transmission, it might be good to
learn how to drive a manual transmission car, while could be useful to learn
how to drive a bus, or even a train, not talking about tank or jet. Anyway
its pretty the same damn things with purpose to transport you from point A
to point B, why not to gain something in addition?

Do you want to be in surgery with dude, who mostly learnt something in
addition or with the one, who has a real clue in his business?

Best regards,
 
Dmitry Yakhnov
Web Developer
http://www.yakhnov.info/
-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, July 27, 2006 11:21 AM
To: cfaussie@googlegroups.com
Cc: cfaussie@googlegroups.com
Subject: [cfaussie] Re: CF to ASP programmer wanted


One thing I have always wondered on this list is why developers limit
themselves to only cfml? Sure cfml is a great language that is easy to
learn but vbscript, php, .Net, jsp, svg, even vrml all have their place in
the development realm - well maybe not vrml anymore. Why not just learn as
much as you can so you can develop in what ever language your clients
require? Doesn't it enable you to improve your skillset, enable you to
find work more easily and also give your clients a range of choices? With
visual studio 2005 (and the features it ships with such as ui components)
using a framework like atlas, .Net programming *can* be as quick as cfml
coding.

I personally don't mind working in any language, but I prefer cfml.


 Don't think so...

 What I think we can conclude is that this is the wrong list if you are
 looking for someone who *wants* to work in ASP! ;)

 B)


 Steve Onnis wrote:
 Have we concluded if its ASP or ASP.Net he needs?

 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On
 Behalf
 Of Barry Beattie
 Sent: Wednesday, 26 July 2006 9:02 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: CF to ASP programmer wanted


 sigh!

 pleze don't start another pissing contest on who's used what
 language the longest. it's such a bore!

 I suggest if yiu're *really* interested go look it up on wikipedia. I
 think CF is a touch older than asp but since there was a really good
 interview with Jeremy Allaire covering this, I invite ppl to track it
 down and have a read

 ... it's not helping Graham find someone


 On 7/26/06, M@ Bourke [EMAIL PROTECTED] wrote:
 11 years ago I chose CFML over ASP for the most productive language.

 does that mean ASP is older then CFML ?




 








--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: Calling Page

2006-07-17 Thread Dmitry Yakhnov








Hi Dale,



If you will have a look at
{your_path}\CFusionMX7\wwwroot\WEB-INF\debug\classic.cfm example, following
code could be used to trace down calling stack:



 



cfif isDebugMode()

cfset
objFactory =
CreateObject(java,coldfusion.server.ServiceFactory)
/

cfset
objDebugging = objFactory.GetDebuggingService() /

cfset
qEvents = objDebugging.GetDebugger().GetData() /

cfdump
var=#qEvents# /

/cfif



 





Best regards,

 

Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of
Dale Fraser
Sent: Friday, July 14, 2006 1:26 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Calling Page





Haha,



It's purely for logging



Ie



Ice.cfc ran @ 12:45pm called by Decrypt.cfc



Regards

Dale Fraser









-Original Message-

From: cfaussie@googlegroups.com
[mailto:[EMAIL PROTECTED] On Behalf

Of Barry Beattie

Sent: Friday, 14 July 2006 13:23 PM

To: cfaussie@googlegroups.com

Subject: [cfaussie] Re: Calling Page





Dale, are you really sure you want to tie your CFC up
with whatever

view runs the request?



sure I don't know the full details but are you
*really, really, REALY*

sure that's what you want inside your CFC?



forgive me for asking, I heard an alarm
ringing...

(the bells! the bells!)







On 7/14/06, Blair McKenzie [EMAIL PROTECTED]
wrote:

 GetCurrentTemplatePath()



 As for the component that calls a given function,
possibly caller scope is

 available (like in tags/modules) but you may have
to pass it into the

 function as an argument.



 Blair







 On 7/14/06, Dale Fraser [EMAIL PROTECTED]
wrote:

 

  Not sure that's what I want.

 

  From a cfc I need to be able to work out.

 

  What page called me

 

  Or

 

  What component called me

 

  Regards

  Dale Fraser

 

 

 

 

  -Original Message-

  From: cfaussie@googlegroups.com
[mailto:[EMAIL PROTECTED] On

 Behalf

  Of cfgroupie

  Sent: Friday, 14 July 2006 11:10 AM

  To: cfaussie

  Subject: [cfaussie] Re: Calling Page

 

 

  I can by puttin it in the url. Like a refer.
then I program it so it

  says I'm coming from this component.

 

  Is that what you mean?

 

  Jeremy

 

 

 

 

 

 

   

 

















--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: TONIGHT : Melbourne Coldfusion Design and Development User Group Meeting (Was CFUG)

2006-06-22 Thread Dmitry Yakhnov

Hi Mark,

I would like to thank you for your excellent presentation and new ideas and
techniques you shared with us.

Many thanks to Steve, who did organise the venue and made this event
happened as well as nice Macromedia and WebDU t-shirts.

Thanks for other mates, who did manage to arrive, even later.

That was my first CFUG meeting in Melbourne and it went well, but I was
quite disappointed to be the only newcomer at this event.

Anyway it was a good start and I hope to have such meetings on regular basis
and might be contributing to it at some point.

Best regards,
 
Dmitry Yakhnov
Web Developer
http://www.yakhnov.info/

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Mark Mandel
Sent: Friday, June 23, 2006 10:26 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: TONIGHT : Melbourne Coldfusion Design and
Development User Group Meeting (Was CFUG)


Guys,

I was a bit dissapointed to see that the majority of people who came
down to the meeting where mostly the guys that I had pulled down from
work.

We had a total of 6 people at the meeting, including myself and Steve
- and 3 of the others were people I work with.

Considering that every 3 months or so we have a huge flame war about
how apparently there are no CF jobs out there - I would have thought
there would have been more people around looking to boost the strength
of Coldfusion in out local area.

What's going on guys? What can we do to get this User Group up and
running again?

Mark


On 6/22/06, Steve Onnis [EMAIL PROTECTED] wrote:





 With the merger complete between Macromedia into  Adobe, a new User Group
has been formed to roll the ColdFusion User Group and  Macromedia User Group
in a super group called the ColdFusion Design and  Development User Group.
This new group will not only cover the  classic ColdFusion development
topics, but will also begin to cover other  developer and design products
such as FLASH, Photoshop, PDF development and  other Adobe products. Moving
away from our past core audience of developers, we  will be looking at
expanding into the design audience introducing them to  website development
techniques and introducing developers to the design product  set, giving
everyone something to look forward to.

 Our next  scheduled meeting for the Victorian ColdFusion Design and
Development User Group  will be Thursday, the 22nd of June, at VTR
Consulting starting at 7:00pm.

 VTR  Consulting has moved and is now  located at Level 2, 212 Barkly
Street, St Kilda.

 Special guest presenter Mark Mandel,  will be giving us all a run down on
his open source project Transfer Object  Relational Mapping library for
ColdFusion.

 Transfer automates the process of writing a Data  Access Object and
Business Object code by generating Business Objects on the fly  and
automating the SQL for creating, reading, updating and deleting these
objects.

 The presentation will look at what an Object  Relational Mapping tool
does, the capabilities of Transfer, how to use it, and a  small example
application. Visit http://www.compoundtheory.com/transfer/ to check out what
it's all about.

 We will also be taking a look at using Video in FLASH  and a short FLASH
Remoting primer for those people who are looking at embarking  on using
FLASH and ColdFusion together.

 The introduction of a short but sweet Tips and Tricks  segment will be our
closing. This segment is designed to shed some light on some  cool program
shortcuts and tricks to make developing and designing that much  faster.
This meeting we will be looking at some nifty Adobe Photoshop shortcuts  to
make your life easier.

 As always there will be giveaways, giveaways and more  giveaways including
books, t-shirts and webDU merchandise from the last webDU  Conference in
Sydney.

 After the meeting we can go to one of the many  pubs/cafes nearby for a
drink or a feed.

 Just a reminder about the CFAUSSIE lists, anyone who  isn't registered
should be. It's the best place to get help or even just have a  rant:P
 Go to the cfaussie  google group to  register.

 To subscribe to the ,  send an email to [EMAIL PROTECTED] with
SUBSCRIBE in the subject line.

 Hope to see you there.
-- 
E: [EMAIL PROTECTED]
W: www.compoundtheory.com
ICQ: 3094740





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cfaussie
-~--~~~~--~~--~--~---



[cfaussie] Re: CFDIRECTORY dateModified accuracy

2006-02-19 Thread Dmitry Yakhnov








Hi Ryan,



Try to use this function:

http://cflib.org/udf.cfm?ID=126



If this would not help,
please provide us with more details, like CF version, OS version, example of
code, etc.





Best regards,



Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/











From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Sabir
Sent: Monday, February 20, 2006
11:38 AM
To: 'cfaussie@googlegroups.com'
Subject: [cfaussie] CFDIRECTORY
dateModified accuracy







Heya,











I'm checking the modified date ofa file using CFDIRECTORY, and
its returning the mod date down to the minute. But I need it more accurate than
this, I need to know the actual second the file was modified.











Is there a way to find out the exact mod date for a file?











thanks.
















 
  
  
  
  
  Ryan
  Sabir
  Technical Director
  
  p:
  (02) 9274 8030
  f:
  (02) 9274 8099
  m:
  0411 512 454
  w:
  www.newgency.com
  
  
  
  
  
  Newgency Pty Ltd
  Web | Multimedia | eMarketing
  
  224 Riley St
  Surry Hills NSW 2010
  Sydney, Australia
  
 













--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---






[cfaussie] Re: Images in email

2006-02-19 Thread Dmitry Yakhnov








Hi Brian,



Do you want to put image inside
the message or as an attachment?



Here is a quote from
official CFMX7 online documentation:



Including images in a message

You
can use the cfmailparam to include images from other files in an HTML message, as follows:


 Put a cfmailparam tag for each image following the cfmail start tag. 
 In each cfmailparam tag, do the following 
 
  Set the file attribute to the location of the image.
  Specify disposition=inline
  Set the contentID attribute to a unique identifier; for example, myImage1.
 
 In the location in your HTML where you
 want the message included, use an img tag such as the following: 


4. img src="">

The
following example shows a simple mail message with an inline image. In this
case, the image is located between paragraphs, but you could include it
directly inline with the text. To test this example, replace the cfmail to parameter
with a valid email address and change the file parameter to the path to a valid image.

cfmail type=HTML to = [EMAIL PROTECTED] from = [EMAIL PROTECTED] subject = Sample inline image cfmailparam file=C:\Inetpub\wwwroot\web.gif disposition=inline contentID=image1 PThere should be an image here/p img src=""> p This text follows the picture/p/cfmail







Best regards,



Dmitry Yakhnov

Web Developer

http://www.yakhnov.info/











From:
cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KNOTT, Brian
Sent: Monday, February 20, 2006
3:34 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Images in
email





Has any one got a good example of using cfmailparam
to include a image in a mail message.



Brian Knott

---


This e-mail is
sent by Suncorp-Metway Limited ABN 66 010 831 722 or one of its related
entities Suncorp. 

Suncorp may be
contacted at Level 18, 36 Wickham Terrace, Brisbane or on 13 11 55 or at
suncorp.com.au. 

The content of
this e-mail is the view of the sender or stated author and does not necessarily
reflect the view of Suncorp. The content, including attachments, is a
confidential communication between Suncorp and the intended recipient. If you
are not the intended recipient, any use, interference with, disclosure or
copying of this e-mail, including attachments, is unauthorised and expressly
prohibited. If you have received this e-mail in error please contact the sender
immediately and delete the e-mail and any attachments from your system. 

If this e-mail
constitutes a commercial message of a type that you no longer wish to receive
please reply to this e-mail by typing Unsubscribe in the subject line. 






--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups cfaussie group.  To post to this group, send email to cfaussie@googlegroups.com  To unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/cfaussie  -~--~~~~--~~--~--~---