Re: MySQL + JDBC

2009-12-15 Thread Patrick J Kobly
Running the binary dist of Tomcat? tomcat.exe / tomcatw.exe PK Todd Grigsby wrote: Patrick J Kobly wrote: Todd Grigsby wrote: Other native apps. The Java apps are being migrated from a 32-bit environment (WinXP and Java 32-bit + Struts 1.1), and they worked there. I don't want to

Re: Unique Id creation

2009-12-15 Thread Patrick J Kobly
java.util.UUID.randomUUID() ? http://java.sun.com/j2se/1.5.0/docs/api/java/util/UUID.htm PK jayakumar ala wrote: I am trying to upload multiple files in my application , So i am looking for different approach to create unique Id for all the uploaded files. Any suggestions are appreciated. O

Re: MySQL + JDBC

2009-12-15 Thread Patrick J Kobly
Todd Grigsby wrote: Other native apps. The Java apps are being migrated from a 32-bit environment (WinXP and Java 32-bit + Struts 1.1), and they worked there. I don't want to point to any one thing, since every part of the equation is a newer version of what was there before, but at this poi

Re: MySQL + JDBC

2009-12-15 Thread Patrick J Kobly
Do you have other Java apps working, or just other native apps? PK Todd Grigsby wrote: It's all 64-bit, installed correctly enough to work from other apps. I will try the Sun forums. TG - To unsubscribe, e-mail: user-

Re: "specified DSN contains an architecture mismatch"

2009-12-15 Thread Patrick J Kobly
n one of those two places. PK Thanks for the suggestions. I'll keep digging. TG Patrick J Kobly wrote: Perhaps try using a 64-bit JVM or installing the 32-bit ODBC driver... The first couple of Google hits when searching for the error message provided seem to suggest hints for inst

Re: "specified DSN contains an architecture mismatch"

2009-12-14 Thread Patrick J Kobly
Perhaps try using a 64-bit JVM or installing the 32-bit ODBC driver... The first couple of Google hits when searching for the error message provided seem to suggest hints for installing the 32-bit ODBC driver under 64-bit Windows. You are likely to get more traction on this question asking it

Re: Jasper Report Plugin

2008-07-04 Thread Patrick J Kobly
Title: [Fwd: test] System property java.awt.headless needs to be set to true.  (-Djava.awt.headless=true in the startup for whichever container you're using) PK Felipe Rodrigues wrote: Hi Guys, I'm having a problem when trying to use JasperReport plugin in a linux machine. I'm getting ro

Caught OgnlException while setting property 'imageServletUrl'

2007-06-28 Thread Patrick J Kobly
G'day, I appear to have resolved this issue that I kept running into with the Jasper Reports plugin... If I have an action defined as: WEB-INF/foo.jasper ${contentType} dataSource /servlets/image?image=

Re: problem with Struts 2 setup -The requested resource (/struts2-blank-2.0.6/) is not available

2007-05-07 Thread Patrick J Kobly
Download a more recent JVM for Tomcat to use. Looks like struts needs 1.5+... PK Jack Yu wrote: Ok, I found the error from the log == 2007-05-07 12:51:55 StandardContext[/manager]HTMLManager: start: Starting web application at '/struts2-b

Re: [S2] sending multiple 'bank account' objects to view page

2007-05-07 Thread Patrick J Kobly
MarcusFenix wrote: All the time, I was thinking about that "staticly instatiate" means - instatiate the object without using a "new" operator. And I was wrong :/// could U tell me what`s "static instatiate"? I`m search in google, but i don`t find answer... This`s connotated with getInstanceOf met

Re: Struts 2 Jasper Reports Plugin

2007-04-10 Thread Patrick J Kobly
You probably want st like: The problem is that the servlet request is set by an interceptor (servlet-config) that is in the default stack defined in struts-default. The jasperreports-default package does not define any interceptor stacks, and does not extend any other packages. PK Christ

Re: Common header and footer html

2007-03-30 Thread Patrick J Kobly
G'day, This is probably the suck, but: template.jsp: <[EMAIL PROTECTED] prefix="s" uri="/struts-tags" %> <[EMAIL PROTECTED] import='com.opensymphony.xwork2.ActionContext' %> Some header stuf <%! String actionname=(String)ActionContext.getContext().get(ActionConte

Parsed contentType in Stream result type, JR plugin

2007-03-29 Thread Patrick J Kobly
G'day, Don't know if this has been mentioned before, but 'twould be useful to be able to get StreamResult to take the contentType param as an index into the value stack (I have an action that determines content type based on user input). Worked around this by extending StreamResult and overr