Aditi Bhalerao

Greenhorn
+ Follow
since Mar 10, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Aditi Bhalerao

When i am tryin to run jsp from my project that is deployed on weblogic workshop 9.2 ... I get following error...

Caused by: java.lang.RuntimeException: error trying to scan <jar-file>: file:/H:/migration/proj workspace/Untitled/.metadata/.plugins/org.eclipse.core.resources/.projects/dbewebqa/beadep/proj_domain/dbeweb/WEB-INF/classes/
at org.hibernate.ejb.Ejb3Configuration.scanForClasses(Ejb3Configuration.java:635)
at org.hibernate.ejb.Ejb3Configuration.configure(Ejb3Configuration.java:350)
at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:126)
at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:199)
at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:237)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1062)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1029)
... 96 more
Caused by: java.lang.RuntimeException: Not a valid URL: file:/H:/migration/proj workspace/Untitled/.metadata/.plugins/org.eclipse.core.resources/.projects/dbewebqa/beadep/proj_domain/dbeweb/WEB-INF/classes/
at org.jboss.util.file.ArchiveBrowser.getBrowser(ArchiveBrowser.java:56)
at org.hibernate.ejb.Ejb3Configuration.scanForClasses(Ejb3Configuration.java:626)
... 102 more
Caused by: java.net.URISyntaxException: Illegal character in path at index 23: file:/H:/migration/proj workspace/Untitled/.metadata/.plugins/org.eclipse.core.resources/.projects/dbewebqa/beadep/proj_domain/dbeweb/WEB-INF/classes/
at java.net.URI$Parser.fail(URI.java:2809)
at java.net.URI$Parser.checkChars(URI.java:2982)
at java.net.URI$Parser.parseHierarchical(URI.java:3066)
at java.net.URI$Parser.parse(URI.java:3014)
at java.net.URI.(URI.java:578)
at org.jboss.util.file.ArchiveBrowser.getBrowser(ArchiveBrowser.java:52)
... 103 more


kindly help me solving this error...
13 years ago
My arraylist consists of beans of attrs: datasize, dataused, date
ArrayList<Beans> ie.

Xml pattern required:

<?xml version="1.0" encoding="UTF-8" ?>
<data>
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-09" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-08" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-10" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-11" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-15" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-16" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-17" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-18" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-19" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-22" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-23" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-24" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-25" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-02-26" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-02" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-03" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-04" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-05" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-09" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-10" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-11" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-12" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-17" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-18" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-19" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-22" />
<record DATASIZE="20.0" DATAUSED="1.8359375" DATE="2010-03-23" />
</data>

to be stored in xml file.This format is the required format as per API that i am using to display the graphical stuff.
this xml wud be read at the runtime from cache where this file is stored and wud display these values in graphical representation.

how can i achieve generation of xml file in required format???

this is my first ever project involving XMLs kindly help even if problem seems silly and simple.
i have a html file that does the work of loading two different webpages in 2 frames simultaneously.
now my problem is when this html gets called as a result of some action mentioned in struts.xml... it loads one frame and timesout another frame... there by getting error in other frame.

i want that one frame should load and on its compeltion this frame should load....

how to accomplish this..???

please help...
this is my code of html:

i want frame named report to load first then frame named grid..!!!

kindly help...