Re: [ACFUG Discuss] ColdFusion with ReactJS

2018-02-27 Thread Kevin Hellriegel
While it's not ReactJS, my team is rebuilding our 10+ year old website with AngularJS, Elastic Search and CF2016's Rest Services. Setting up a Rest service in CF is pretty straightforward, although it can be very tricky to debug if there is an issue. For instance, the error reporting when refreshi

Re: [ACFUG Discuss] Adobe Breakfast

2018-02-26 Thread Kevin Hellriegel
Wish I could go, but our project lead is out that day so I need to be in the office to cover for him On Mon, Feb 26, 2018 at 2:29 PM, Kyle Shiflett wrote: > Cameron, > > I saw it on FB: > > https://www.facebook.com/events/150605922271350/ > > To RSVP, you have to email Kishore at kish...@adobe.c

RE: [ACFUG Discuss] CFBuilder

2018-02-23 Thread Kevin Hellriegel
+1 for VS Code. We just switched to it from Eclipse and it's awesome. It's much quicker and lighter weight. Source control is nicely done as well. Kevin On Feb 23, 2018 2:53 PM, "Charlie Arehart" wrote: Yep, and for any wanting to know about still other editors, including those that DO support

Re: [ACFUG Discuss] Hopefully this list still exists

2016-08-31 Thread Kevin Hellriegel
Frank, looking back at CF9, you had to set your variable to the listappend(). Perhaps in CF10 they changed the functionality or was an unintentional "feature"? Here's a link to the CF9 doc http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6d71.html Slightly u

Re: [ACFUG Discuss] Quick Survey - Mura Users? Railo?

2012-11-02 Thread Kevin Hellriegel
1) Yes 2) No. Only played around with it 3) Yes

Re: [ACFUG Discuss] ColdFusion 9 Standard to Enterprise Trial

2011-05-05 Thread Kevin Hellriegel
tion is enforced before the 30 day trial >> expires. >> I would expect you to be able to test with the 50 users. (Otherwise, use >> Kevin's >> idea...) >> >> On 05/05/2011 06:40 PM, Kevin Hellriegel wrote: >> > I'm not sure if this works, but i

Re: [ACFUG Discuss] ColdFusion 9 Standard to Enterprise Trial

2011-05-05 Thread Kevin Hellriegel
I'm not sure if this works, but it's worth a shot to get around the 2 ip restriction. Try setting up a proxy (something like tcpmon or charles. You could also use the ProxyPass directive in Apache web server) that points to the Developer server and have the 50 users connect to the proxy's port/IP a

Re: [ACFUG Discuss] OT: MySQL Error

2009-10-28 Thread Kevin Hellriegel
n idea on how I can run that on all tables that match a > certain name , I tried this and it did not work. > > alter table `mytable_*' convert to character set utf8 collate > utf8_general_ci; > > -Original Message- > From: ad...@acfug.org [mailto:ad...@acfug.org] On Beh

Re: [ACFUG Discuss] OT: MySQL Error

2009-10-28 Thread Kevin Hellriegel
Whoops, forgot to include a link to a thread on the MySQL forums: http://forums.mysql.com/read.php?26,6528,6528#msg-6528 On Wed, Oct 28, 2009 at 2:20 PM, Kevin Hellriegel wrote: > I've run into this a few times. Basically it means the charsets in the > tables are different and My

Re: [ACFUG Discuss] OT: MySQL Error

2009-10-28 Thread Kevin Hellriegel
I've run into this a few times. Basically it means the charsets in the tables are different and MySQL doesn't like that. You're going to have to change the charset type in one of the tables to match the other. hth, Kevin On Wed, Oct 28, 2009 at 2:14 PM, Cody Wehunt wrote: > Anyone have any info

Re: [ACFUG Discuss] Connecting to iSeries DB2

2009-05-21 Thread Kevin Hellriegel
n. I'll have to get with our IBM guy and find out what port I need to use, etc. Thank you for all your help, guys! Kevin On Thu, May 21, 2009 at 3:03 PM, Cameron Childress wrote: > On Thu, May 21, 2009 at 2:55 PM, Kevin Hellriegel wrote: >> Does Standard come with the IBM DB2 UDB dri

Re: [ACFUG Discuss] Connecting to iSeries DB2

2009-05-21 Thread Kevin Hellriegel
M > To: discussion@acfug.org > Subject: Re: [ACFUG Discuss] Connecting to iSeries DB2 > > > I believe there are third party JDBC drivers for this. > > ap > > On May 21, 2009, at 2:27 PM, Kevin Hellriegel wrote: > >> Does anyone have any experience connecting to a

[ACFUG Discuss] Connecting to iSeries DB2

2009-05-21 Thread Kevin Hellriegel
Does anyone have any experience connecting to a DB2 database on an AS400 with ColdFusion MX 7? If I use the example on livedocs: http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=1747.htm#1277913 I get an error: java.sql.SQLException: No suitable driver I

Re: [ACFUG Discuss] Looking for a CF Host

2009-03-10 Thread Kevin Hellriegel
I am very happy with sozo hosting. They are local, have a great support team and communicate with customers very well (planned maintenance, support, etc). I've not had any problems with them and the pricing is competitive. http://www.sozohosting.com Kevin On Mon, Mar 9, 2009 at 3:11 PM, PEYTONTO

Re: [ACFUG Discuss] XML and SOAP

2009-02-19 Thread Kevin Hellriegel
Have you tried putting the xml in a string and sending that to the webservice? http://demo.xxx.com/services/"; xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";> Test Passw

Re: [ACFUG Discuss] XML and SOAP

2009-02-18 Thread Kevin Hellriegel
rnatives. > > > On Wed, Feb 18, 2009 at 10:44 AM, Shane wrote: >> >> Kevin: >> >> Do you know of a good example posted somewhere I could look at? Now that >> I >> have started, I'm not sure how to go about this. >> >> Thanks! >> >

Re: [ACFUG Discuss] XML and SOAP

2009-02-18 Thread Kevin Hellriegel
I think you need to put the Username and Password inside CredentialSoapHeader. Try creating a struct with those two fields in it and pass it to the webservice as CredentialSoapHeader. CF should handle the rest. One tool I like to use is the web service explorer in Eclipse. It is a part of the Web

Re: [ACFUG Discuss] ISO 8601 date

2009-01-29 Thread Kevin Hellriegel
ion. That > appears to be the UTC offset (or the offset from GMT time). You can either > hard code that, of course, or get it programmatically using getTimeZoneInfo. > Is that helpful? > > /charlie > > -Original Message- > From: ad...@acfug.org [mailto:ad...@acfug.org

Re: [ACFUG Discuss] ISO 8601 date

2009-01-28 Thread Kevin Hellriegel
what winners do. > You can't improve what you don't measure. > Quality is never an accident; it is always the result of high intention, > sincere effort, intelligent direction and skillful execution; it represents > the wise choice of many alternatives. > > > On Wed, Ja

Re: [ACFUG Discuss] ISO 8601 date

2009-01-28 Thread Kevin Hellriegel
Forgot to mention the operation I am using is processShipment. Kevin On Wed, Jan 28, 2009 at 8:28 AM, Kevin Hellriegel wrote: > Not at all. http://www.shipwithcts.com/test/fedex/ShipService_v5.wsdl > > On Tue, Jan 27, 2009 at 9:54 PM, Ajas Mohammed wrote: >> ok, what is url for

Re: [ACFUG Discuss] ISO 8601 date

2009-01-28 Thread Kevin Hellriegel
hoice of many alternatives. > > > On Tue, Jan 27, 2009 at 6:36 PM, Kevin Hellriegel > wrote: >> >> I have a theory of what is going on. I believe that it requires a date >> object and won't take a string (which would explain why passing it a >> Now(

Re: [ACFUG Discuss] ISO 8601 date

2009-01-27 Thread Kevin Hellriegel
o it. We'll see what happens tomorrow. Kevin On Tue, Jan 27, 2009 at 3:58 PM, Kevin Hellriegel wrote: > It's funny that you mention Allaire, because I found this post while googling: > > http://www.stylusstudio.com/xmldev/199810/post90220.html > > On Tue, Jan 27, 2009 at

Re: [ACFUG Discuss] ISO 8601 date

2009-01-27 Thread Kevin Hellriegel
th the Java util... > http://www.koders.com/java/fid651395B318F465F02DF87C5C57902DE82FCC2613.aspx?s=cdef%3Aparser > > > On Tue, Jan 27, 2009 at 3:05 PM, Kevin Hellriegel wrote: >> I need to create a dateTime for the Fedex ShipService webservice that >> looks like this: 2009-0

Re: [ACFUG Discuss] ISO 8601 date

2009-01-27 Thread Kevin Hellriegel
ion/8/htmldocs/help.html?content=functions_in-k_45.html > > How is the web service consumed? Perhaps you can more explicity datatype > the parameter being passed. > > > > Teddy R. Payne, ACCFD > Google Talk - teddyrpa...@gmail.com > > > > On Tue, Jan 27, 2

Re: [ACFUG Discuss] ISO 8601 date

2009-01-27 Thread Kevin Hellriegel
R. Payne wrote: > TimeFormat(now(), "HH:MM:SS") & "-05:00"> > > Quick and dirty. > > Teddy R. Payne, ACCFD > Google Talk - teddyrpa...@gmail.com > > > > On Tue, Jan 27, 2009 at 3:05 PM, Kevin Hellriegel > wrote: >> >> I need to create

[ACFUG Discuss] ISO 8601 date

2009-01-27 Thread Kevin Hellriegel
I need to create a dateTime for the Fedex ShipService webservice that looks like this: 2009-01-27T14:45:23-05:00. You've got the date, the letter T, the time and offset from GMT. I've created a string, but the web service blows up with the ever useful "Cannot find webservice..." If I use Now() inst

Re: [ACFUG Discuss] Fedex Webservices

2008-11-27 Thread Kevin Hellriegel
org >> Subject: Re: [ACFUG Discuss] Fedex Webservices >> >> >> >> Kevin >> I have used the FEDEX API on two ecommerce sites for several years now. >> I will be out of town until after Thanksgiving, but would be happy to help >> out when I return. >&

[ACFUG Discuss] Fedex Webservices

2008-11-21 Thread Kevin Hellriegel
I'm trying to use Fedex's rating webservices (v5) with CF8. I've only used webservices that I have created before, so this is a little new to me. I've tried using cfinvoke and createObject("webservice"). I've sent across structures and straight xml as well. None of those worked. I always get the "W

Re: [ACFUG Discuss] Creating a web service

2008-04-22 Thread Kevin Hellriegel
an educated guess. :-) Might be useful to hear confirmation. > > > > /charlie > > > > *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Kevin > Hellriegel > *Sent:* Tuesday, April 22, 2008 10:18 AM > *To:* discussion@acfug.org > *Subj

Re: [ACFUG Discuss] Creating a web service

2008-04-22 Thread Kevin Hellriegel
e > same > > error. > > > > On hunch, I changed the cfinvoke to use the server's IP address instead > of > > the hostname and it worked! Has anyone encountered this before? Is this > a > > bug in cfinvoke? > > > > Kevin > > > > &

Re: [ACFUG Discuss] Creating a web service

2008-04-21 Thread Kevin Hellriegel
t; wrote: > > > > maybe, I am way off, but function returntype is string, while it seems > to > > return boolean > > > > > > Jay Jayaraman > > Central Billing Services > > Financial Management and Planning > > (404) 498-8453 (W) > >

[ACFUG Discuss] Creating a web service

2008-04-21 Thread Kevin Hellriegel
I'm having a slight problem with a web service I'm trying to create. I have a cfc that looks similar to this: [Lots of code to validate the PickupDoc] I created a simple cfm page that tries to use the cfc as a webservice: http:

Re: [ACFUG Discuss] MS Excel to MySQL for Linux

2008-04-15 Thread Kevin Hellriegel
lity.htm > > > > might help. > > > > DK > > > > > > On Tue, Apr 15, 2008 at 10:48 AM, Kevin Hellriegel <[EMAIL PROTECTED]> > > wrote: > > > > > I'm trying to create an internal cf app that allows the user to upload > >

[ACFUG Discuss] MS Excel to MySQL for Linux

2008-04-15 Thread Kevin Hellriegel
I'm trying to create an internal cf app that allows the user to upload an Excel spreadsheet and populate a mysql database. I found http://poi.apache.org/";>Apache's POI, but I'm not much of a java programmer. Does anyone know of an app/script that can do this? Thanks, Kevin

Re: [ACFUG Discuss] CF 8.0.1 update is out!

2008-04-04 Thread Kevin Hellriegel
Sadly, the x64 is only for Enterprise edition :( Kevin On Fri, Apr 4, 2008 at 2:35 AM, John Mason <[EMAIL PROTECTED]> wrote: > So ColdFusion 8's update to 8.0.1 finally includes support for 64 bit :) > > > http://kb.adobe.com/selfservice/viewContent.do?externalId=kb403277&sliceId=1 > > John Maso

Re: [ACFUG Discuss] looking for opinions on duplicate form submissions

2008-03-20 Thread Kevin Hellriegel
I think validating before submitting makes sense (less bandwidth if users are submitting large files for example). I use mxAjax [ http://www.indiankey.com/mxajax/] for simple validations/lookups in applications I've written. It is fairly simple to set up and use. You create a CFC, add it to the set

RE: [ACFUG Discuss] XML and CF question

2006-10-04 Thread Kevin Hellriegel
XMLParse turns your xml into a nice structured array. You can get the customer's name using myXML.xml-root.customer-rec.name.xmltext. So your code would look like:   name:#myXML.xml-root.customer-rec.name.xmltext#   HTH   Kevin Hellriegel Capital Transportation Solutions

RE: [ACFUG Discuss] United States Postal Service APIs

2006-05-11 Thread Kevin Hellriegel
I could use that as well. Can you send me a link off list? Thanks! -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Richard WestSent: Thursday, May 11, 2006 10:16 AMTo: discussion@acfug.orgSubject: RE: [ACFUG Discuss] United States Postal S