No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Hi all! i'm developing a web application in jsf 2.0 with GlassFish server.Database is MySql.Https protocol. My problem is that when i request for a page in my application sometimes the browser displays the source code of that page and not the html view for the user. It is not … | |
Hi, i have developed an web application using JSF. In that, if the user remains idle in the application for more than 15min then their session should expire. i have tried it by giving <session-timeout> tag value as 15 min in web.xml. but i don't know how to redirect the … | |
Hi! i'm developing a web application in jsf. There are files that gets opened from the server when the user click the name of the file. It works perfect when many users access the same file at different time. But if more than one user access the same file or … | |
Hi! i'm a new user of jsf. I'm developing a web application in jsf 2.0 . There is a page in my application for which i have given session scope. In this page i retrieve values in a datatable from mysql database according to the chosen combo box values. I … | |
Hi! I want to find the xpath of an xml doument along with its index value in java. I'm using DOM parser to parse the xml document. Suppose if i consider this xml document, [CODE]<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE folks SYSTEM "sample.dtd"> <folks> <person> <name>abi</name> <phone>999555-8888</phone> <email>b@xyz.net</email> </person> <person> <name>saran</name> <phone>213545697</phone> … | |
Re: Hi! you have to include this line while you are saving the xml file... [CODE] Transformer transformer = TransformerFactory.newInstance().newTransformer(); transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, "your DTD file name"); transformer.transform(source, result); [/CODE] Hope it will help you.. | |
Hi! i need to insert a new element in an existing xml document. for example, [code=xml] <details> <person> <name>Anu</name> <email>abc@yahoo.com</email> </person> <person> <name>thara</name> <email>xyz@gmail.com</email> </person> </details> [/code] In this document if i want to insert another element using Xpath, say,<publisher> in <book> node, how to insert it. I'm using DOM … | |
Hi Im a newbie of jsp and Im developing a project in jsp. I want a text box that display data from database in the same place when i click a link.all the links are available in a table. Any help appreciated... Thanks in advance, Indu. |
The End.