paramita saha

Greenhorn
+ Follow
since Apr 27, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by paramita saha


hi folks,
I hav got a lil problem implementing webservice using plain java object in JAX-RPC .While packaging the war file using ant task I found that generated web.xml file does not contain data provided in the web.xml file . As a result, I am not able to exploit features provided by the wrapping servlet.My application server is Weblogic.Is there any way to include the custom web.xml file in the produced war file? I have used servicegen (weblogic.ant.taskdefs.webservices.servicegen.ServiceGenTask) ant task to build the war file.I
am looking forward to your reply.Thanks in advance.

Paramita.
16 years ago
init-param tag is used to specify initial parameters for specific servlets.context-param is also used to specify initial parameters ,but this can be used by different servlets sharing the same context.servlets outside the context can use it but first of all they need to get access to the specific servletContext.
16 years ago
As far I know,Flush is used to synchronize the state of persistent onject to database.In fact, there can be different Flush modes which includes FLUSH.NONE,FLUSH.AUTO,FLUSH.COMMIT.As the name suggests, when FLUSH.NONE is set ,developer have to call flush explicitly,on Flush.AUTO, flush is executed before every query and on FLUSH.COMMIT,flush is executed before every database updation...that's all i know about flush..hope this information will be helpful.
What are the tags used in mapping class in hibernate?Is version a tag in the .hbm.xml file?I am looking forward to your reply.