Re: CFMX 7 using zip files

2008-10-08 Thread Wesley Middendorff
I have found the solution. Basically the toString method changed some of the info and I was unable to write the file in this manner. Instead, I used a file output stream and the toByteArray method and it works. ~| AdobeĀ® ColdFusi

Re: CFCs not being processed by IIS or CF

2008-10-08 Thread Wesley Middendorff
Adrian, I was able to get this to work with no problems. Have you checked the directory permissions? Wes On 10/8/08, adrian lynch <[EMAIL PROTECTED]> wrote: > > Sorry, access is set to remote. We were playing about with it when I copied > and pasted :) > > > Hey all, set up a new site and I'm

Re: Webwasher, Excel files, and why I hate my life

2007-08-17 Thread Wesley Middendorff
I also have no access to appache, thanks for all your responses no it is just a matter of convincing these corperate types to let go of webwasher for this intranet site on which they control the content anyhow. On 8/17/07, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Friday 17 Aug 2007, [EM

Re: How to do this conditional statement.

2007-08-17 Thread Wesley Middendorff
Yes you need the parens, and yes that second statement is correct. On 8/17/07, Will Tomlinson <[EMAIL PROTECTED]> wrote: > > Easy question here... just wanna make sure I don't screw this up cause > it's kinda important. :) > > Here's my current statement. > > getWebEnhancedAddonQuestions.recordc

Re: CFHTTP, SSL v3, and MX7

2007-08-16 Thread Wesley Middendorff
I had this problem in the past with a different website, but the issue is still the same. I ended up creating a seperate java keystore with the information for the SSL in it. Then I created a java class to use that keystore and make the connection. HTTPConnection does support SSL v3, but I found th

Re: cfgrid

2007-06-04 Thread Wesley Middendorff
Didn't think of it that way, once I find the administrator for IIS on this server I will check that. I did try dumping the CFIDE directory directly into the webroot though, but I think this gives me a very good starting point Thanks Wes On 6/4/07, Dave Watts <[EMAIL PROTECTED]> wrote: > > > Goo

Re: cfgrid

2007-06-04 Thread Wesley Middendorff
Good tip and helpful, but alas not the solution. The applet will load when accessing the site through "localhost", but not when accessed through the IP address. Also, other cfform elements do work correctly. I have been trying to track someone down who has admin priviledges in IIS thinking that it

Re: Strange concactination problem

2007-05-16 Thread Wesley Middendorff
Use this function. You are trying to directly update the rows of a query. *QuerySetCell*(*query*, *column_name*, *value* [, *row_number *]) Wes On 5/16/07, Ian Skinner <[EMAIL PROTECTED]> wrote: > > Can anybody see an issue with the following CFScript? I have confirmed > that the if clauses t

Re: Dealing with Large queries and csv files

2007-05-16 Thread Wesley Middendorff
whoops, didn't see the other posts. You could create a SQL server integration services package. This could then be executed from a stored procedure that your CF code could call. (supposing that CF needs to do something with the file afterwards). On 5/16/07, Wesley Middendorff <[EMAIL P

Re: Dealing with Large queries and csv files

2007-05-16 Thread Wesley Middendorff
If you database server has access to a file system that your CF server also has access to, you could try using the export functions built into your DB server. I usually try to keep data processing in the DB server since it is way more efficient at it. Wes On 5/16/07, Tony <[EMAIL PROTECTED]> wro

Re: Not Sure What is Wrong

2007-04-18 Thread Wesley Middendorff
Keyword date, didnt even dawn on me, but that is the more likely answer. On 4/18/07, Charlie Griefer <[EMAIL PROTECTED]> wrote: > > 1) Date is a reserved word. If you can't change it, enclose it in > square brackets. > 2) you have 2 columns specified (Events, Date) but in your > condition you're

Re: Not Sure What is Wrong

2007-04-18 Thread Wesley Middendorff
You may wish to use cfqueryparam for your date/time fields. On 4/18/07, Steve LaBadie <[EMAIL PROTECTED]> wrote: > > I have added a date field to an admin panel and am having trouble getting > it to work properly. In the error message it does show that the text and > date are passing, but am reci

Re: CreateObject() with java

2007-04-18 Thread Wesley Middendorff
Thanks for your help everyone. I think I will be okay now. On 4/18/07, Russ <[EMAIL PROTECTED]> wrote: > > Might want to make it public class instead of class... It could also use a > constructor (or make the method static). > > Russ > > > > > -Or

Re: CreateObject() with java

2007-04-18 Thread Wesley Middendorff
That helps a little, I am now getting some other error that is not so helpfull... Object Instantiation Exception. An exception occurred when instantiating a java object. The cause of this exception was that: YP_Unzip (wrong name: YP_UnZip). This shouldn't be so difficult. On 4/18/07

Re: Java classes in coldfusion

2007-02-14 Thread Wesley Middendorff
4/07, Eric Roberts <[EMAIL PROTECTED]> wrote: > > If I am understanding what you are asking, you probably need to use > javacast > to cast the variable of the appropriate java type. > > Eric > > -----Original Message- > From: Wesley Middendorff [mailto:[EMAIL PROTECTED

Re: Java classes in coldfusion

2007-02-14 Thread Wesley Middendorff
Sorry for all the newb questions here, but now i am getting "Error casting an object of type **to an incompatible type". Which occurs when calling the HTTPcon method. Is there a problem with trying to pass an array of strings back to coldfusion? ~~~

Re: Java classes in coldfusion

2007-02-14 Thread Wesley Middendorff
Joseph gets the final hurrah on this one. After exposing the constructors everything is a ok. On 2/14/07, Joseph Lamoree <[EMAIL PROTECTED]> wrote: > > On 14 Feb 2007, at 10:50, Wes Middendorff wrote: > > > Unable to find a constructor for class javaHTTPSconnection that > > accepts parameters of