[java ee programming] Has anyone run tutorial's examples?

2009-01-07 Thread emerkuri
With Sun App Server 9.1 and Java DB started, when I try to create the database for the "Duke's Bank Application" (following tutorial's steps), I get a failure as in the screenshot of the Duke's_DB.doc file. Has anyone run tutorials in the past? Thanks, Ervin --~--~-~--~~~--

[java ee programming] Which one is better for reporting tool: open source or charge?

2009-01-07 Thread blank_...@sina.com
After making reports for a long time, I found something strange recently. Various reporting tool vendors advertise by all means to attract users' attentions; however, programmers show great interests in Jsper report + ireport, the representatives of free and open source Java tool. You can find tha

[java ee programming] Excellent Unix Admin. Opportunity

2009-01-07 Thread Tahir Irtis
We have an immedieate consulting opening for: Location: New York, NY Rate: DOE Duration: 12 months plus Sr. Core Services Engineer PRINCIPLE RESPONSIBILITIES: 1. Define, design and enhance a large scale global distributed infrastructure for high availability, mission critical tradin

[java ee programming] Deployment Tool suggestion

2009-01-07 Thread Norman
Hi All, Is there a need for a separate deployment tool (JSR-88) other than the Reference Implementation for the J2EE Deployment Specification Version 1.1 as part of the Sun Java System Application Server Platform Edition 8 (J2EE 1.4)? http://java.sun.com/j2ee/1.4/download.html Are there any co

[java ee programming] Re: High Availability Deployments?

2009-01-07 Thread Николай Улога
maybe theserverside.com, i think you could find some information there 2009/1/7 pete > > Hello- > > Does anyone know of some good resources out there that discuss high > availability deployments with JEE? I've done a number of searches on > Google, and this GGroup, but haven't found much. > >

[java ee programming] Re: Volatile and Transient keywords

2009-01-07 Thread pooja srivastava
*Transient:* it is some how related to serialization.. in any application if u don't want to persistence storage of any object state then use this keyword.. like in any banking application if u mark an instance variable transient, it will not be serialized even though the rest of the object's sta

[java ee programming] control the session timeout in web container if database query is still running

2009-01-07 Thread Ken
If I put session timeout configuration in web.xml, the web application times out at the end of 30 minutes inactivity. However, if the database query runs more than 30 minutes/or hangs, the web application still times out at the end of 30 minutes. I think the web container has no idea the database q

[java ee programming] Re: Join Father of JAVA at Sun Microsystems Conference

2009-01-07 Thread K M Nur
Dear sir, Its a life time opportunity to meet Mr. James Gosling, unfortunately like others its not possible to attend the session. Anyone attending the session, is there any chance to take mobile vedio clips of that session. I guess not. Anyway, if possible, please share with us after the session.

[java ee programming] Re: Volatile and Transient keywords

2009-01-07 Thread pooja srivastava
hello everyone.. i am java/j2ee developer.. having 1year exp.. looking for job.. can anybody help me.. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Java EE (J2EE) Programming with Passion!" group. To post to this

[java ee programming] Re: Hi Everyone

2009-01-07 Thread Artashes Hovasapyan
You're absolutely right. But keep in mind that all students here are always encouraged to read something more than the course materials. On a separate note I'd like to mention (once again) that many of the questions posted on class mailing might be already answered on class FAQ section on http://ww

[java ee programming] Re: Volatile and Transient keywords

2009-01-07 Thread Artashes Hovasapyan
Hi, Volatile keyword specifies that the variable might be asynchronously modified by concurrently running threads. This warns compiler to fetch them every time the variable is accessed instead of caching them in registers. It also inhibits certain optimizations that are based on assumption that th