Google
Google
Mailing List
Home
Forum Home
JBoss - Java Application Server
Tomcat - JSP/Servlet container
Struts - A MVC web framework
iText - An open source PDF Java Library
JDOM - JDOM XML Parser
JSP - A mailing list about Java Server Pages specification and reference
J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition
J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog
Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology
Struts & Hibernate
Subjects
JSP editor plugin for eclipse ?
org apache jasper JasperException: Unable to compile class for JSP
Tomcat: Connection reset by peer: socket write error
Cannot retrieve definition for form bean null
Struts Tiles Tutorial (free Struts training)
Where do I download Tomcat 4 0 6?
Data Access Object (DAO) pattern, example DAO 's
Where to download Tomcat v 4 1 24 from?
Tomcat 5 0 16 Requested resource not available
Subject: Servlet : Session invalidate
Oracle Connection Pooling in 3 2 2
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Subject: Running a Simple JMS Example
Tomcat and webapplication specific java library path
Mapping in workers2 properties
org apache jasper JasperException
problem with html:text bean throwing exception
Cannot find message resources under key org apache struts action
   MESSAGE
Cannot find message resources under key org apache struts action MESSAGE
invalid direct reference problem with solution
Tool for jsp debug Try Sysdeo Eclipse Plugin
Tomcat 5 Cannot load JDBC driver class 'null ' SQL state: null
weblogic ejbc
java properties file
Jboss 3 2 3 Coyote Can 't re
Tomcat 5, Apache2 and mod jk2 integration problem
JBoss example problem new to J2EE
Value attribute of <html:checkbox
url string for connecting jboss to oracle
javax servlet ServletException: BeanUtils populate
5 0 18: Windows XP Pro vs Windows 2000
HTTP Status 404 The requested resource is not available
 
J2EE
Page 3 of 16 1   2   3   4   5   6   7   8   9   10   Next 10  

Stylus Studio XML Deployment Adapters now Available

[announce] Dear j2ee-interest Stylus Studio 2006 XML Deployment Adapters are high-performance Java components that provide bi-directional programmatic access to virtually any data source (relationa

Stylus Studio 2006 XML Enterprise Edition now Available

[ANNOUNCE] Dear J2EE-interest Stylus Studio has released Stylus Studio 2006 XML Enterprise Edition. You can download a free trial today at http //www.stylusstudio.com/xml_download.html The follow

Acelet releases Super 7.1 - J2EE toolkit

Acelet (http //www.acelet.com) has released Super 7.1. This version comes with support to Weblogic 9 enhanced SuperScheduler SuperWatchdog and installation. Super is component based architecture w

Ask the Experts Session on Project GlassFish -- Week of Nov. 14

Project GlassFish is Sun 's Open Source Application Server as well as the implementation of Java EE 5. It 's also part of a larger effort by Sun to release major portions of Sun 's code into Open Source

Subject: Connection on hibernate

Hi all I don 't know if I can ask this kind of question here. I have a doubt about hibernate. I am working in a project where we use a pool of connections (c3p0) with hibernate. Then everytime tha

Subject: Connection from datasource

Hi I have a question.I use datasource.getConnection() to get the connection as below. My question is does getConnection() have to be synchronized? Won 't the datasource manage the connections in the p

Classes and J2EE

Hi all this is my first post here I had studied java for the last 3 years and I know that the market (at least here in Brazil) is practically only for the J2EE programmers. I would like to study th

EBCDIC conversion

Hi guys I need this urgent help. Can u suggest me some free java api to convert EBCDIC encoding data to ascii. Thanx a lot KR Kumar

Strings

Hi Can anyone say me which one of the below two options would be better in perfromance and which one would create more string objects? One has String str within while loop and one outside while loop

Connection

Hi I have a question. I have to insert 5 records in a database. I get the connection from datasource and create the preparedStatement. My question is is it good to use one Connection and preparedSt

Exception handling

Hi I have an class derived from Exception and have one constructor which takes only a String as parameter. In my application I just use the below line to throw the exception.Is this correct?Since e

Stringbuffer

Hi Could anyone please mail be which one would be better of the below two in performance. How many strings will be created in Method1 and how many in Method2? Thanks in advance. Method - 1 String b

Subject: javax.ejb.SessionContext

Hi Could anyone tell me why is javax.ejb.SessionContext not made serializable? Thanks cheerio bharath I Blog at http //jroller.com/page/bharath

Intern

Hi Ya Java has internal pool of literals. When u say String s1 "India " a string object is created and its ref is put in internal pool. So next time when u create a new ref for the same string "In

String Intern

Hi Ya Java has internal pool of literals. When u say String s1 "India " a string object is created and its ref is put in internal pool. So next time when u create a new ref for the same string "In

new String

Hi Plz let me know which one is better in terms of performace between the two of the following approaches for string initialization String s1 new String( "test ") Or String s1 "test "

variables

Hi Is there any advantage of having private static member variable (Initialized in the constructor of the class) in a non-singleton class. Is so please let me know. Thanks

Looking for Tools for internationalization

Hi All We are looking for a tool to help us with internationalizing our web apps - using WebShpere. Basically does anyone know if there is a tool that stores all the texts in different languages

Stylus Studio offers Altova XMLSPY AND MAPFORCE Users a FREE Upgrade

[Announce] Customers who have purchased qualifying Altova XML Products including Altova XMLSPY 2005 Altova XMLSPY(r) 2004 (Enterprise or Professional Edition) Mapforce(r) 2005 Mapforce 2004 (Enter

Exception

Hi Is there any drawback if I perform the below. public class A{ public String getData(){ String data null try{ B b new B() data b. getData() } catch(Exception ex){} return data } p

Subject: Xml Serialization in Java

Hi I am looking for a way to serialize java objects to XML something similar to XmlSerializer found in .NET. I ant to keep the object persistence but in XML. Where could i find a solid API for thi

SimpleDateFormat

Hi Is there a better way to do the below in a multithreaded application? java.text.SimpleDateFormat dateFormat new java.text.SimpleDateFormat ( "MMddyyyy ") String formatedString dateFormat.forma

DataDirect XQuery Now Available

[Announce] Dear J2EE-Interest DataDirect XQuery the first embeddable Java XQuery processor component based on the XQuery API for Java (XQJ) providing XQuery-based access to any relational database

Subject: How to make a listener queue?

I want to make a queue such as pointer list or other something it is empty at first. My program will do other thing if the queue is empty.When the queue is modified my program can know this matter lik

Serialization

Hi I have a simple web application created using Struts .The struts action calsses call the DAOs to perform database operation. I get the form values from FormBean class (which extends from ActionFor

Subject: How to get a String from JNI?

I want to get a returned String from JNI but I don 't know how to do it my code are follows //MyNative.java public class MyNative{ public String test1(String s){ return test11(s) } private na

How to read Hard Disk sequence number by Java?

Is there any method to read Hard Disk sequence number and other hardware information such Mac Address or CPU ID? Please give me some advice or source code for it. Thanks!

Optimistic concurrency violation

Hi All! I am getting an Optimistic concurrency violation exception. My slsb does the following transaction Creating a bean( i.e. ejb create) and updating a field of its parent bean. Log

String concatenation

Hi I have a question in string concatenation. I have the below code. StringBuffer a new StringBuffer() a.append( "Name " + userVo.getName()) a.append( "Id " + userVo.getId()) a.append( "Sno "+u

Spam:To read MSExcel CSV file .

There are many libraries on CSV file reading. Just type a google search KR Kumar Project Manager - Investment Banking Group PrimeSourcingT The Global IT Services business from i-flex - "Add Value
Page 3 of 16 1   2   3   4   5   6   7   8   9   10   Next 10