Hello there ... I've only just joined this mailing list so it could be that I've missed a previous question. Could someone tell me where i can place external...
I have simply put my libraries into railo_path/lib. And it works. Brgds Phong...
Phong Nguyen
nguyen.phong@...
Sep 1, 2006 6:49 pm
292
Going to buffer response body of large or unknown size. Using getResponseAsStrm instead is recommended. i Sep 01 15:34:34 ART 2006 Release: (2) i Sep 01...
Hello guys! I'm new to the group and here my first question. I have run standalone railo on my windows machine. It works ok, but renders something strange like...
sergei_droganov
publicurinal@...
Sep 3, 2006 1:01 pm
294
Hi, looks like your coding with an ISO Editor, while Railo ist deploying with UTF. Can yout check the Encoding of your file?? Cheers, Michi _____ From:...
I am getting an error telling me that a certain function is not a function. I declare my components with createObject() in an application variable. If I reset...
bktraderstaff
bktraderstaff@...
Sep 3, 2006 4:59 pm
297
Greetings from Dubai, This letter must come to you as a big surprise, but I believe it is only a day that people meet and become great friends and business...
Mr. Arif Shaikh
arif_shaikh1@...
Sep 3, 2006 6:32 pm
298
Hi phong ... That's how i ended up doing it, but i was wondering if there was a way of placing class files (in their package structure) somewhere. It is not so...
I'm not sure, but take a look at : http://www.caucho.com/resin-3.0/webapp/begin.xtp#The-structure-of-web-applications Brgds. Phong...
Phong Nguyen
nguyen.phong@...
Sep 4, 2006 9:15 am
300
hi putting jar files in the "WEB-INF/lib" and class files to "WEB-INF/ classes" folder is part of the j2ee servlet specification. i should work in every j2ee...
hi joseluis wich railo version you use? (For example: Railo Server (with resin) 1.0.0.025 or Railix ...) can you reproduce this output? How? can you add more...
hi sergei the problem is that a text file has no information, how it is encoded (except the BOM for UTF-8 Files). because that, there is normally no change to...
hope i understand you right. you load a component with createObject, then you call a udf of this component and in some cases, this udf doesnt exists. i think i...
AHA! That was exactly the problem: I had named a new query in a new function the same name as another function. So it looked like this: <cffunction...
bktraderstaff
bktraderstaff@...
Sep 4, 2006 5:22 pm
305
... That is what varScoper is for: http://www.schierberl.com/varscoper/ Jochem...
Jochem van Dieten
jochemd@...
Sep 4, 2006 5:43 pm
306
we also plan to extend the var scope for all blocks, because we wanna be more ecma script compatible. examples: for(var i=0;...) { var test=1 } test=1; { var...
in this case the best way is write dog to local scope, when you doesnt use after the udf is finished. <cffunction name="cat"> <cfset var dog=""><!--- creates...
Here is something strange: This works: <cfoutput query="person"> #firstname# #lastname# </cfoutput> and outputs "bill smith" But this doesn't: <cfoutput...
bktraderstaff
bktraderstaff@...
Sep 4, 2006 6:59 pm
310
update: i seem to be able to fix it, if i put ANOTHER <cfoutput> </cfoutput> at the top and bottom of the template. But i should not have to do this, since the...
bktraderstaff
bktraderstaff@...
Sep 4, 2006 7:06 pm
311
Sorry but your wrong, that is not a bug. because when the compiler compile the stuff.cfm, #firstname# #lastname# are only literals, the compiler dont check the...
When I run the following code Adobe acrobat gives me an invalid token error and it comes up blank. <!----------- Start ----------------> <cfquery name="rs"...
the Problem is that cffile-write translate every input to string, this destroy the pdf. we will fix that for the next patch (1.0.0.027), that will be avaiable...
Hello all, It would seem that railo has problems casting from an internal array to a java array. Is their any way around this ? eg. I have a method in a class...
First of all, i have written a code-snap (see below) that return all avaiable classpathes for resin checkout this http://wgdc.sohu.com/resin-doc/config/ ...
Hi Mark The Problems are 2 dimensional Arrays, we will fix that for the next patch (1.0.0.027). The only workaround i see at the moment is to write your own...
Hi Mark i have found a more simple workaround for you, dont use 2 dimensional arrays Example: <cfset testArray=array(array("bla"))> <cfset something =...