sweety mehra

Greenhorn
+ Follow
since Feb 09, 2007
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 sweety mehra

Hi
I am externalizing the configuration properties in Spring by using a seperate properties file."data.properties"
and then I configure the following bean in my bean wiring file:

<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>data.properties</value>
</property>
</bean>
and
<bean id="receive" class="package1.package2.utility.receive" abstract="false" singleton="false" lazy-init="default" autowire="default" dependency-check="default">
<property name="Url">
<value>${data.Url}</value>
</property>
</bean>

But on deploying this war on WebLogic 8 .I am getting following problem :
Exception:weblogic.management.ApplicationException: start() failed. Module: ITdata Error: weblogic.management.DeploymentException: Could not load properties; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/data.properties] - with nested exception: [java.io.FileNotFoundException: Could not open ServletContext resource [/data.properties]]


Should i put under src or inWebrrot/web-inf/classes?
17 years ago
hi, i think question is not clear to You
My question is that whetherWebLogic server can act as Web server or application server or both?
Now if we talk about IIS server, it is Web server, not an application server .What about Bea/WebLogic server?
17 years ago
Please tell me that whether Bea Weblogic 8 is an application server or Webserver or both?
17 years ago
hi
I am new to EJB .
Can anbody provide EJB docs that help me from beginning.
I want to get the driver name and other information about oracle(ora92) that i am using. Is there any command that gives all the information about mysql?
Can anyone help me out?
hi
to run java program, what complete path and classpath to be set as an enivronment variable.
Also tell me ,what value should be set for JAVA_home and why JAVA_HOME is needed
17 years ago
Since java byte is signed, so is there any method to change java byte to unsigned
17 years ago
Why we use following statement in servlets

response.setHeader("pragma,"nocache");
17 years ago
While submitting page from Html to Servlet,
how can i determine the request type whether it is get/post
[ February 09, 2007: Message edited by: Bear Bibeault ]
17 years ago