Re: Forms not passing data?

2014-09-22 Thread .jonah
But the correct answer is to correct the enctype so this won't be an issue. On 9/22/14, 12:21 PM, Phillip Vector wrote: AAAa... There we go. That's the most logical answer (since I blocked the error emails from that one user and when that specific error shows up and it's been quiet).

Re: Forms not passing data?

2014-09-22 Thread Phillip Vector
Already corrected it and it's still doing it. I'm willing to try anything at this point. On Mon, Sep 22, 2014 at 1:16 PM, .jonah jonah@creori.com wrote: But the correct answer is to correct the enctype so this won't be an issue. On 9/22/14, 12:21 PM, Phillip Vector wrote: AAAa...

Re: Forms not passing data?

2014-09-22 Thread .jonah
Gotit. Apologies for not tracking the thread closely. It might be interesting to log ALL the variables in the various scopes when that happens and see what's coming through. Good luck! On 9/22/14, 1:25 PM, Phillip Vector wrote: Already corrected it and it's still doing it. I'm willing to

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread Michael Dinowitz
According to zendesk, the file with the ColdFusion sample code does not exist. I'm using php code as my sample for a ColdFusion app. Not the way things should be. If anyone has any First Data Global Gateway sample code that they want to send to First Data and/or Adobe, please do so. It's

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread Bryan Stevenson
I'll 2nd thatIF I have seen CF examples in payment processing APIs, they has generally looked like a 5th grader wrote it with a crayon ;-) c'est la vie! *Bryan Stevenson*B.Comm. President CEO Electric Edge Systems Group Inc. - makers of FACTS^(TM) phone: 250.480.0642 cell: 250.920.8830

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread Maureen
I have a client who uses First Data, but the gateway code is in PHP. I could take a crack at doing a CF version if you still need it. On Mon, Sep 22, 2014 at 6:27 PM, Michael Dinowitz mdino...@houseoffusion.com wrote: According to zendesk, the file with the ColdFusion sample code does not

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread .jonah
Create it as a gateway to plug in to CFPayment. It's a nice framework for handling payment processing stuff. On 9/22/14, 4:39 PM, Maureen wrote: I have a client who uses First Data, but the gateway code is in PHP. I could take a crack at doing a CF version if you still need it. On Mon, Sep

Re: First Data Global Gateway e4 sample code

2014-09-22 Thread Casey Dougall - Uber Website Solutions
https://firstdata.zendesk.com/entries/407571-First-Data-Global-Gateway-e4-Web-Service-API-Reference-Guide slacker On Sep 22, 2014 7:58 AM, Michael Dinowitz mdino...@houseoffusion.com wrote: I'm updating a payment gateway to the First Data e4 spec and after looking through their site, I can't

Re: Forms not passing data?

2014-09-21 Thread Dan G. Switzer, II
Are you posting the data via AJAX? There's a known issue w/IE9 and earlier w/AJAX POST operations, where if the server's keep alive timeout is lower than 60 seconds, it can cause IE problems and what you get is a request that doesn't post the data back to the server. -Dan On Sun, Sep 21, 2014

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
No. Just a straight form. No AJAX. I THINK I traced it down to a bug in Railo in that it needs write access to the Web-Inf directory. But we will see if the issue is solved or not later. On Sun, Sep 21, 2014 at 8:47 AM, Dan G. Switzer, II dswit...@pengoworks.com wrote: Are you posting the

Re: Forms not passing data?

2014-09-21 Thread Dave Watts
I don't know if this is a CFML issue or what... But perhaps someone has run across this and can offer a hand... form action=#myself#Login.CheckLogin method=post enctype=multipart/form-data input type=text name=username input type=Password

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
It was just a copy over from an old form. The old login page was a combo login/create account that had a picture upload as part of the creation process. I removed the enctype and I'm still getting the error. On Sun, Sep 21, 2014 at 10:12 AM, Dave Watts dwa...@figleaf.com wrote: I don't know

Re: Forms not passing data?

2014-09-21 Thread Russ Michaels
ISTR fusebox apps by default always used FormURL2Attributes tag o convert all the form and url scope to attributes scope. obviously it has been many many years since I looked at fusebox, although the thought of it still makes me ill :-) but perhaps this tag kills off the original scope in certain

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
The issue mainly is that it's not always happening all the time. So it's not repeatable as far as I can tell. On Sun, Sep 21, 2014 at 1:07 PM, Russ Michaels r...@michaels.me.uk wrote: ISTR fusebox apps by default always used FormURL2Attributes tag o convert all the form and url scope to

Re: Forms not passing data?

2014-09-21 Thread Russ Michaels
ok a few couple of reasons I can think of. you have an un-closed tag somewhere in the form, but it doesn't always get rendered, maybe some conditional logic causes it to only display for some people. Some other conditional logic that causes the page to get redirected or reloaded, thus without

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
Thanks for the tips. I'll see what I can find. On Sun, Sep 21, 2014 at 1:59 PM, Russ Michaels r...@michaels.me.uk wrote: ok a few couple of reasons I can think of. you have an un-closed tag somewhere in the form, but it doesn't always get rendered, maybe some conditional logic causes it

Forms not passing data?

2014-09-20 Thread Phillip Vector
I don't know if this is a CFML issue or what... But perhaps someone has run across this and can offer a hand... form action=#myself#Login.CheckLogin method=post enctype=multipart/form-data input type=text name=username input type=Password

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-19 Thread Brian FitzGerald
Can you post the code for the set_first_name.cfm? Thanks for chiming in Byron. set_first_name.cfm is not a real file, but if it were, it would just look like this: cfset firstName = Brian And it would work in all cases, except for the scenario that I'm describing (where the byte code is

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-19 Thread Russ Michaels
did you check the settings I suggested previously ? as this do affect the generation of the class files which contain the java byte code On Fri, Sep 19, 2014 at 2:37 PM, Brian FitzGerald bmfitzgera...@gmail.com wrote: Can you post the code for the set_first_name.cfm? Thanks for chiming in

Re: IIS not being recognized by CF 11 install

2014-09-18 Thread Russ Michaels
Yes from add/remove features in roles manager or using web platform installer On Thu, Sep 18, 2014 at 4:23 AM, Dave Watts dwa...@figleaf.com wrote: Yep, that's why I re installed IIS. Thanks Russ! I think what Russ is getting at is that you can install individual IIS components without

cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Brian FitzGerald
Hey guys, I am wondering if many others have run into this issue. Basically, when we deploy certain high volume .cfm files (i.e. index.cfm), they are sometimes incorrectly compiled to java byte code. What I believe is happening is when several requests come in while ColdFusion is trying to

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Dave Watts
I am wondering if many others have run into this issue. Basically, when we deploy certain high volume .cfm files (i.e. index.cfm), they are sometimes incorrectly compiled to java byte code. How do you know this? What do you mean exactly by incorrectly compiled? What version of CF are you

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Gonzo Rock
I have just opened up wide all the permission on the Default Web Site in IIS... I am still not getting CF 11 Std Install to see that IIS is running. wsconfig.exe is not seeing it either. What am I doing wrong? Totally baffled now. On Tue, Sep 16, 2014 at 3:51 PM, Gonzo Rock

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Dave Watts
from the cf logs... Sep 16, 2014 17:49:10 PM Information [localhost-startStop-1] - Starting WebSocket... Sep 16, 2014 17:49:10 PM Information [localhost-startStop-1] - WebSocket server listens on port: 8577 Sep 16, 2014 17:49:11 PM Information [localhost-startStop-1] - ColdFusion started

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Dave Watts
I have just opened up wide all the permission on the Default Web Site in IIS... I am still not getting CF 11 Std Install to see that IIS is running. wsconfig.exe is not seeing it either. What am I doing wrong? Totally baffled now. My guess is that there's some sort of network port

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Russ Michaels
have you installed the following REQUIRED IIS components ? - ASP.NET - .NET Extensibility - CGI - ISAPI Extensions - ISAPI Filters On Wed, Sep 17, 2014 at 5:51 PM, Gonzo Rock gonzor...@gmail.com wrote: I have just opened up wide all the permission on the Default Web Site in

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Russ Michaels
do you have cf set set to save compiled files to disk ? this is the default so probably yes. if so, then try disabling this and deleting all those compiled class files from the server. The only benefit having this option enabled gives you is that when CF is restarted, it loads all those files

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Brian FitzGerald
How do you know this? What do you mean exactly by incorrectly compiled? What version of CF are you running? What are the exact error messages you're seeing? The reason I know it's not being compiled correctly is because when this issue occurs, the errors that happen are indicative of the

RE: IIS not being recognized by CF 11 install

2014-09-17 Thread Eric Roberts
I am sure someone has already suggested it, but have you created the jakarta folder and pointed it to ColdFusion11\config\wsconfig\1? I have had instances where this and the CFIDE folder weren't automatically created in the default web root... -Original Message- From: Dave Watts

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Dave Watts
How do you know this? What do you mean exactly by incorrectly compiled? What version of CF are you running? What are the exact error messages you're seeing? The reason I know it's not being compiled correctly is because when this issue occurs, the errors that happen are indicative of

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Gonzo Rock
Okay it's running now... I will detail what I did and the order I did it in so that others can find this in the future. CF11 connector install problems trouble failure CF 11 connector install problems trouble failure I took Dave's advice above and installed the web server that comes with CF11

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Russ Michaels
I did actually ask earlier if you had installed all the required IIS features. As you have now stated that you did indeed not have these installed, simply installing these features as suggested would have resolved your problem, negating the need to re-install everything,. On Wed, Sep 17, 2014 at

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Gonzo Rock
Yep, that's why I re installed IIS. Thanks Russ! On Wed, Sep 17, 2014 at 2:59 PM, Russ Michaels r...@michaels.me.uk wrote: I did actually ask earlier if you had installed all the required IIS features. As you have now stated that you did indeed not have these installed, simply installing

Re: cf incorrectly thinks compiled java byte code is correct

2014-09-17 Thread Byron Mann
Can you post the code for the set_first_name.cfm? firstName variable is undefined. I have seen this type of error before when the variable is set to null. Something like a web service call that fails or really does not return anything. In this instance setName might be a function that returns

Re: IIS not being recognized by CF 11 install

2014-09-17 Thread Dave Watts
Yep, that's why I re installed IIS. Thanks Russ! I think what Russ is getting at is that you can install individual IIS components without uninstalling and reinstalling IIS itself, for future reference. Dave Watts, CTO, Fig Leaf Software 1-202-527-9569 http://www.figleaf.com/

Re: Could not initialize class coldfusion.security.ESAPIUtils

2014-09-16 Thread Adam Parker
I found this proposed solution elsewhere and am trying it: Add a file read permission to the esapi.properties file present in CF_HOME\lib directory for each sandbox. If you can not access CF Admin console manually add this permission in neo-security.xml which can be found in CF_HOME\lib

Re: Could not initialize class coldfusion.security.ESAPIUtils

2014-09-16 Thread Russ Michaels
thanks for the info. I had this issue with CF9 a few months back, although it is the first time ever it has occured, so I presume it must be caused by one of the more recent patches. On Tue, Sep 16, 2014 at 1:44 PM, Adam Parker adgpa...@iupui.edu wrote: I found this proposed solution

RE: Test - Ignore

2014-09-16 Thread Robert Harrison
Test from new account... also ignore. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Sandra Clark
I'm trying to take a sample that they have written and convert it to ColdFusion. I have the Java in the signature code which is creating the HMAC exactly the same as their JSP code and I'm still getting rejected. Their technical help is less than stellar and I'm thinking it has less to

Re: Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Captain Obvious
http://www.bennadel.com/blog/2412-crypto-cfc-for-hmac-sha1-hmac-sha256-and-hmac-md5-code-generation-in-coldfusion.htm ~| Order the Adobe Coldfusion Anthology now!

RE: Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Sandra Clark
Found that, used it. Still using the basics of the javas.crypto library. I get the hmac issue now. But getting the system to accept a test sample is turning my hair gray. -Original Message- From: Captain Obvious [mailto:mr.happ...@gmail.com] Sent: Tuesday, September 16, 2014 1:58 PM

Re: Anyone have experience running CyberSource Secure Acceptance

2014-09-16 Thread Jon Clausen
Sandra, I just sent you a couple of files off-list that may help. Jon On Sep 16, 2014, at 2:05 PM, Sandra Clark sclarkli...@gmail.com wrote: Found that, used it. Still using the basics of the javas.crypto library. I get the hmac issue now. But getting the system to accept a test sample

Re: IIS not being recognized by CF 11 install

2014-09-16 Thread Dave Watts
IIS not being recognized by CF 11 install... at least that is what I am thinking now. It's there... it's running... it has a Default Web Site with a couple of user installed folders... which serve up .html files across the net no problem. Are you explicitly right-clicking on wsconfig.exe and

Re: IIS not being recognized by CF 11 install

2014-09-16 Thread Gonzo Rock
Yep... that idea was outlined in the link I shared... I also tried the install that way as well. Then I uninstalled IIS on the 2008 box ... rebooted it and then installed IIS again. No luck with that either. from the cf logs... Sep 16, 2014 17:49:10 PM Information [localhost-startStop-1] -

Re: cfmail and special characters

2014-09-13 Thread Uwe Degenhardt
Hi David, thank you. I ended up with a workaround similar to it: cfmail to=x...@xxx.com from=x...@xxx.com subject=Eine neue Datei ist verfuegbar type=HTML Sehr geehrter ..., Mit freundlichen Grouml;ssen /cfmail So for ü (e.g.) I typed: uuml; Not nice, but at least it works. Uwe Have you

RE: cfmail and special characters

2014-09-12 Thread David Phelan
Have you tried using HTMLEditFormat? David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3 Odell Plaza, Yonkers, NY 10701 914-457-6465 Office dphe...@emerginghealthit.com www.emerginghealthit.com www.montefiore.org

How can I force clients to refresh JavaScript files?

2014-09-12 Thread Claude Schnéegans
I wonder why browsers caching Javascript and CSS files at least do not check if the date of the file on the server is still the same as the one in their cache. Since I implemented a Javascript errors log, I catch many errors showing that the old file in the cache was used days after the error

Re: How can I force clients to refresh JavaScript files?

2014-09-12 Thread Dean Lawrence
Try CF Static (http://cfstatic.riaforge.org/), it appends a unique string to the end of the file requests, which forces browsers to load the newer version. You can have it compress all your CSS and JS files or simply use it deliver your files. On Fri, Sep 12, 2014 at 11:05 AM, wrote: I

RE: How can I force clients to refresh JavaScript files?

2014-09-12 Thread David Phelan
The easiest way is to simply expire the page using cfheader. Take a look at http://www.bennadel.com/blog/1619-caching-coldfusion-pages-with-expires-header-value.htm. David Phelan Web Developer IT Security Web Technologies Emerging Health Montefiore Information Technology 3 Odell Plaza,

Re: How can I force clients to refresh JavaScript files?

2014-09-12 Thread Claude Schnéegans
Try CF Static (http://cfstatic.riaforge.org/), it appends a unique string to the end of the file requests, Ok, good technique. But instead of downloading 262 files, I developped this simple CF_script custom tag: CFSETTING ENABLECFOUTPUTONLY=Yes CFSET scriptFile = expandPath(attributes.src)

Re: How can I force clients to refresh JavaScript files?

2014-09-12 Thread Claude Schnéegans
The easiest way is to simply expire the page using cfheader. The problem with this technique is that you will force a reload even if the file was not changed. ~| Order the Adobe Coldfusion Anthology now!

Re: Not able to read a RSS feed from a WordPress website

2014-09-11 Thread Chris h
Thanks Robert, but don't think they(hostingcompanyA) would block a particular IP address(server running CF which belongs to hosting company B) Yes, they would if they detected something funny coming your server... like a bunch of pings or form bots or something... for that matter a

CF10 creating extra CFID/CFTOKEN cookies at the domain level

2014-09-11 Thread John Pullam
I am having a problem that from time to time CF10 creates a new pair of cookies at the domain level, specifically whitevalegolfcub.com The application runs under www.whitevalegolfclub.com and the CFID and CFTOKEN cookies are created there, along with several of my own, at logon. But this

Re: Not able to read a RSS feed from a WordPress website

2014-09-11 Thread Dave Watts
Hosting company B says we are not blocking the website your CF server is trying to read. They say all is well with the machine running CF server. We went with a hosting company because network engineers in our organization did not have time for such things. Reading the RSS feeds and

Re: CF10 creating extra CFID/CFTOKEN cookies at the domain level

2014-09-11 Thread Claude Schnéegans
I notice that your site is reachable both through www.whitevalegolfclub.com and whitevalegolfclub.com. I had the same problem with one of my sites. It looks like two different cookies are created, one for www.whitevalegolfclub.com and the otheone for whitevalegolfclub.com and this this goofs

CFHTTP connection failure

2014-09-11 Thread Scott Stewart
Here's a weird one, trying to set up a secure SFTP connection. We can telnet to it and connect via an ftp client. But cfftp gets refused. Any ideas? ~| Order the Adobe Coldfusion Anthology now!

Re: CFHTTP connection failure

2014-09-11 Thread Steve Milburn
A few questions... first can you show us some code? Second, are you sure it is SFTP and not FTPS? What happens if you try to use an SSH client like Putty? Are you able to connect? The SFTP server should be listening on port 22 - your telnet connection uses port 23 and your ftp connection uses

Re: CFHTTP connection failure

2014-09-11 Thread Scott Stewart
This is specific to our production environment, the exact same code works fine in our staging environment.. But a putty connection may be worth a shot. We did have to install the Java JCE extensions. But again it works in every other environment but production. On Sep 11, 2014 3:20 PM, Steve

Re: CFHTTP connection failure

2014-09-11 Thread Scott Stewart
We got this figured out.. Our apps need to be refreshed when changes are made to the settings ini file. Our production team didn't refresh.. DOH!! On Sep 11, 2014 3:30 PM, Scott Stewart webmas...@sstwebworks.com wrote: This is specific to our production environment, the exact same code

cfmail and special characters

2014-09-10 Thread Uwe Degenhardt
Hi Everybody, to be honest: I am pulling my hair out ! I have a problem with cfmail and special characters. The german umlaute seem to be displayed wrong. This is the code: cfcontent type=text/html; charset=utf-8 cfset SetLocale(German (DE))/ cfmail to=x...@xxx.com from=x...@xxx.com subject=Eine

Re: cfmail and special characters

2014-09-10 Thread Philipp Cielen
Uwe, try cfmail charset=utf-8“... Gruß, Philipp Am 10.09.2014 um 09:17 schrieb Uwe Degenhardt cf-t...@sdsolutions.de: Hi Everybody, to be honest: I am pulling my hair out ! I have a problem with cfmail and special characters. The german umlaute seem to be displayed wrong. This is

Re: cfmail and special characters

2014-09-10 Thread Uwe Degenhardt
Hi Philipp, thanks. Unfortunately, that doesn't work either. Has anybody any other ideas ? @Philipp, can you send me one cfmail-code snippet with special characters that runs on your CF8/Linux-box as an example ? Uwe am Mittwoch, 10. September 2014 um 09:24 schrieben Sie: Uwe,

images are rotated on ipads/iphones

2014-09-10 Thread Akos Fortagh
Hi guys, I really need help. It's not a CF issue but I wanted to see if anyone else may have come across similar. If you look at this page on a PC or android tablet all thumbnail images are fine, if you look at it on ipad/iphone some thumbnails (not all) are rotated 90 degrees. All images

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
Thanks Dave, Just to clarify: from the machine running CF, if you use a browser, can you get to the site correctly? No, I cannot access the site from the machine running CF. If the server admin can't tell you why a machine he or she manages can't get to a remote server, you need to

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
Thanks Russ, you need to do some basic tests, which your server admin should have already done. for a start ping the domain from the cf server, does this work and do you get the right IP, if not then it is a dns issue. make sure that someone has not created an entry in the local hosts file. I

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
If I use a browser, I can see the feeds. Using a feed reader in Google Chrome browser, I can notice the feeds load correctly. Are you using a browser from the machine running CF? No, the machine running CF cannot access the website. I get a message that the request timed out.

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Dave Watts
Just to clarify: from the machine running CF, if you use a browser, can you get to the site correctly? No, I cannot access the site from the machine running CF. OK, this is good! This means it's not a CF problem. If the server admin can't tell you why a machine he or she manages can't get

RE: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Robert Harrison
Just to clarify: from the machine running CF, if you use a browser, can you get to the site correctly? No, I cannot access the site from the machine running CF. It's possible the issue is not on your side. It could be on the side of the site you are trying to read from. You can't display

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
Thanks Dave, OK, this is good! This means it's not a CF problem. But - and now I'm being completely serious - the server admin should be able to diagnose the problem preventing the server that he manages from connecting to this other server. This is clearly not a CF problem. This could

Re: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Chris h
Thanks Robert, Just to clarify: from the machine running CF, if you use a browser, can you get to the site correctly? No, I cannot access the site from the machine running CF. It's possible the issue is not on your side. It could be on the side of the site you are trying to read

RE: Not able to read a RSS feed from a WordPress website

2014-09-10 Thread Robert Harrison
but don't think they(hostingcompanyA) would block a particular IP address(server running CF which belongs to hosting company B) Yes, they would if they detected something funny coming your server... like a bunch of pings or form bots or something... for that matter a bunch of unexpected

Link checker

2014-09-10 Thread Byron Mann
I know there was a previous thread about spidering a site to check links and some people recommended a certain utility other than wget. I went through the archives and wasn't able to find that thread. Any thoughts? -- Regards, Byron Mann

Re: Link checker

2014-09-10 Thread Rob Voyle
Hi Byron I use html validator https://www.htmlvalidator.com You can batch test an entire website. Not only checks links but html, accessibility etc. Rob On 10 Sep 2014 at 14:36, Byron Mann wrote: I know there was a previous thread about spidering a site to check links and some people

RE: Link checker

2014-09-10 Thread Robert Harrison
I use http://home.snafu.de/tilman/xenulink.html . The icon looks like an alien but it works great for link checking. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T

HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark
I'm working on a Cybersource Authorization form, which has a PHP sample page. I'm trying to use the hmac() function in CF10. However, the documentation on it is lacking to say the least. Parameters Parameter Required\Optional Description message Required The message to transmit. The

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Dean Lawrence
Sandy, I do believe that you can use any algorithm that the hash function supports. Take a look at the documentation for hash and you will see what options you have. On Tue, Sep 9, 2014 at 8:34 AM, Sandra Clark sclarkli...@gmail.com wrote: I'm working on a Cybersource Authorization form,

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark
Tried that, I am now getting an error telling me that An error occurred while generating HMAC. Error: Algorithm SHA-256 not available. HASH() documentation is showing SHA-256 *sigh* -Original Message- From: Dean Lawrence [mailto:dean...@gmail.com] Sent: Tuesday, September 9, 2014

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Scott Stewart
Sandy, what are you trying to encrypt? I ran into a similar issue recently trying to use AES 256 encryption for SFTP On Sep 9, 2014 10:47 AM, Sandra Clark sclarkli...@gmail.com wrote: Tried that, I am now getting an error telling me that An error occurred while generating HMAC. Error:

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Dean Lawrence
Sandy, Looking at the example in the HMAC() docs, they prefixed the algorithm type with HMAC. Maybe if you try HMACSHA-256, to see if it works? On Tue, Sep 9, 2014 at 10:46 AM, Sandra Clark sclarkli...@gmail.com wrote: Tried that, I am now getting an error telling me that An error occurred

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark
Thanks I'm trying to encrypt payment information for a group using CyberSource. I found documentation on encrypt() that specified using HMAC-SHAx (where x could be 256). Got the same error. http://help.adobe.com/livedocs/coldfusion/8/htmldocs/help.html?content=funct ions_e-g_01.html. CF10

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Scott Stewart
I found that there are certain things that ColdFusion doesn't support 256 bit encryption for. SFTP and CFHTTP among others. The solution is to download and install the updated encryption library from Sun. I can post details when I'm not on my phone. On Sep 9, 2014 11:22 AM, Sandra Clark

CFTRY / CFCATCH not working

2014-09-09 Thread Robert Harrison
I have a script that returns image properties to me (below). After years of using it I've hit some sort of file that crashes it. The error I'm getting is: Numbers of source Raster bands and source color space components do not match null I'm assuming that from a corrupt image

Re: CFTRY / CFCATCH not working

2014-09-09 Thread Cameron Childress
If there is an error in your error handling code you will get a hard error. It may be because you are still attempting to work with the corrupt file in your catch. Change this: cfcatch type=Anycfset get_imginfo.ImgWidth=0cfset get_imginfo.ImgHeight=0/cfcatch To this: cfcatch type=Any/cfcatch

RE: CFTRY / CFCATCH not working

2014-09-09 Thread Robert Harrison
Thanks, but that had no effect at all. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F 631.434.7022   http://www.austin-williams.com Blog:

Re: CFTRY / CFCATCH not working

2014-09-09 Thread Money Pit
Any particular reason you are not using cfscript versions of try/catch? Old version of CF? try { code goes here } catch(Any excpt) { code goes here } Given any thought to a different image processor to see if you get a different result? I'm thinking cfimage, assuming you are using at

Re: CFTRY / CFCATCH not working

2014-09-09 Thread Byron Mann
Numbers of source Raster bands and source color space components do not match null Where do you see this error? In the exception logs? Or is the thread just dying and outputting this and not continuing on? Also what CF Version, I know older versions seemed to have many more problems reading

RE: CFTRY / CFCATCH not working

2014-09-09 Thread Robert Harrison
It's a seven year old site but it's on a CF10 server. Tried using CFIMAGE but it's too slow. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy Drive,  Suite 100   I  Hauppauge, NY 11788 T 631.231.6600 X 119   F

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Pete Freitag
Try HMACSHA256 for the algorithm see http://cfdocs.org/hmac -- Pete Freitag - Adobe Community Professional http://foundeo.com/ - ColdFusion Consulting Products http://hackmycf.com - Is your ColdFusion Server Secure? http://www.youtube.com/watch?v=ubESB87vl5U - FuseGuard your CFML in 10 minutes

Re: CFTRY / CFCATCH not working

2014-09-09 Thread Money Pit
Looks like the code you are using is bhImgInfo() from cflib, with only very slight changes. There's more than one way to skin that cat: https://gist.github.com/vikaskanani/6256084 looks more robust in the catch department. Maybe a little too robust, but it also separates out the file read

Re: CFTRY / CFCATCH not working

2014-09-09 Thread Russ Michaels
not an answer to your question, but have you tried using ImageMagick or cfx_openimage instead ? I have found both to be more reliable than CF's built in image handling. On Tue, Sep 9, 2014 at 6:56 PM, Robert Harrison rob...@austin-williams.com wrote: It's a seven year old site but it's on a

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark
Thanks Pete! -Original Message- From: Pete Freitag [mailto:p...@foundeo.com] Sent: Tuesday, September 9, 2014 2:11 PM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Try HMACSHA256 for the algorithm see http://cfdocs.org/hmac -- Pete Freitag - Adobe Community Professional

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Carl Von Stetten
Does SHA256 require the Java Cryptography Extension be installed, or is that just SHA512 and above? -Carl V. On 9/9/2014 11:36 AM, Sandra Clark wrote: Thanks Pete! -Original Message- From: Pete Freitag [mailto:p...@foundeo.com] Sent: Tuesday, September 9, 2014 2:11 PM To: cf-talk

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Scott Stewart
I would take a guess that it does, I needed to do it to get AES 256 to work for SFTP On Sep 9, 2014 4:05 PM, Carl Von Stetten vonner.li...@vonner.net wrote: Does SHA256 require the Java Cryptography Extension be installed, or is that just SHA512 and above? -Carl V. On 9/9/2014 11:36 AM,

Re: Not able to read a RSS feed from a WordPress website

2014-09-09 Thread Chris h
Thanks Dave, If I use a browser, I can see the feeds. Using a feed reader in Google Chrome browser, I can notice the feeds load correctly. Are you using a browser from the machine running CF? No, the machine running CF cannot access the website. I get a message that the request timed

Re: Not able to read a RSS feed from a WordPress website

2014-09-09 Thread Dave Watts
If I use a browser, I can see the feeds. Using a feed reader in Google Chrome browser, I can notice the feeds load correctly. Are you using a browser from the machine running CF? No, the machine running CF cannot access the website. I get a message that the request timed out. But,

Re: Not able to read a RSS feed from a WordPress website

2014-09-09 Thread Russ Michaels
you need to do some basic tests, which your server admin should have already done. for a start ping the domain from the cf server, does this work and do you get the right IP, if not then it is a dns issue. make sure that someone has not created an entry in the local hosts file. On Wed, Sep 10,

RE: cfchart in cfdocument

2014-09-08 Thread David Phelan
Sorry, I'm using cfchart. I remember looking into different charting options for another project some time ago and did find a gauge chart available so I know it's available, but do not remember where I found it. -Original Message- From: Anthony Doherty [mailto:anthony...@gmail.com]

Not able to read a RSS feed from a WordPress website

2014-09-08 Thread Chris h
Hi All, Below is the code which was working fine till yesterday for reading a RSS feed from a Wordpress site running Wordpress 3.9.1

Re: Not able to read a RSS feed from a WordPress website

2014-09-08 Thread Dave Watts
If I use a browser, I can see the feeds. Using a feed reader in Google Chrome browser, I can notice the feeds load correctly. Are you using a browser from the machine running CF? Message:Connection refused by the specified host on the specified port. ... 1. What could have

Re: OT, but stil.

2014-09-05 Thread Jochem van Dieten
On Sep 4, 2014 5:04 PM, Dave Watts wrote: This is exactly how user scripts work. They are installed by the user in some fashion, and can control browser functionality. This is how online password managers work, how Greasemonkey works, etc, etc, etc. If a user installs malware, of course that

<    7   8   9   10   11   12   13   14   15   16   >