smita mishra

Ranch Hand
+ Follow
since May 18, 2006
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 smita mishra

thanks for your help.
I have few questions. Currently I am staying in zurich,switzerland.
1.do I need any permission to work on any open source project?
2. can any body tell me how much experience is required to work in this project?
15 years ago
i was working earlier as software engineer in java technology.
but as my husband came onsite so i resigned from my job and accompanied with him to zurich.Now most of the time i stay at home.I am looking for an
job which i can work from home like some part time job. I had done my scjp
certification.
Please guide me how to find a part time job ? Please suggest me what should I do now which will help in my career ?

I am confused .........
15 years ago
it seems no one is really interested to help me.
:roll:
I'm new to hibernate.Please help me to learn it.is there any material or book available to learn hibernate?I'm reading Hibernate in action.
I don't find that book intersting.Is there any option left to learn hibernate other than reading this book.It's urgent.Please help me.
Looking forward for your mails.
hi,
I am getting the following error in the eventvwr when i start using MQ:
"
The description for Event ID ( 0 ) in Source ( MQServer::CMQConnPool ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: MQDISC ended with reason code : 2018 : u:\webbrnvcs\server\mqgateway\ibmmqserver\mqconnpool.cpp : 57.
"

what is reason for this error?How can i solve it?
16 years ago
I want to learn unix shell scripting.
Is this book UNIX(R) Shells by Example (4th Edition)
by Ellie Quigley good one?Suggest me any other book or material or dvd
for learning UNIX from the beginning?
Please tell me how to install unix?I have windows as operating system now.
How can I install Unix on my mc and have windows as operating also?
16 years ago
Can anybody suggest me any online trainning program or good tutorial to learn UNIX including it's installation?It's urgent please help me.
:roll:
16 years ago
I am new to Hibernate.Can anyone suggest me any good for Hibetnate or any good tutorial for learing hibetnate?
hi ,
I got a project which is completely based on Ajax.
I'm new to this technology.Please tell a good book
to refer to Learn AJAX?
Regards,
Smita.
Can anybody tell me
how to connect jdbc with oracle 9i database using all 4 types of driver?

Is there any book or material available for JDBC for beginners?
I have Oracle 9i installed in my system.Can any body tell me how to connect jdbc with odbc and how to connect jdbc with oracle drivers i.e. thin driver and OCI driver ?
Is there any tutorial available on net to learn JDBC using Oracle 9i ?
is there any tutorial available on net covering jdbc in weblogic environment including oracle thin driver?
1/After deploying the jsp page on weblogic 8.1 sp4 I couldn't locate it's servlets .java file and .class file.Please tell me where can i find both files?

2/How can I edit weblogic.xml file in weblogic8.1 sp4 server?
17 years ago
how can I fix this error?
index.html code is
<html>
<head>
<title> weblogic 7 bibleapp </title>
<meta http-equiv="Content-Type" content="text/html">
</head>
<body>
welcome to BibleAPP

<form action="http://localhost:7001/BibleApp/Hello">
<br> Name: <input type="text" name="stdname" value="pinky" >
<input type="submit" >

</form>

</body>
</html>

my servlet code is :
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;

public class HelloServlet extends HttpServlet
{
public void doGet(HttpServletRequest req,HttpServletResponse resp) throws ServletException,IOException
{
resp.setContentType("text/html");
PrintWriter out = resp.getWriter();
String param = req.getParameter("stdname");
if(param == null )
{
out.println("<html>"+"<body>" + "no parameter"+"</body>" +"</html>");
}
else

out.println(
"<html>"+"<body>"+
"my name is"+ param +"</body>"+
"</html>"
);

}
}

my web.xml code is:

<?xml version="1.0" ?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>

<servlet>
<servlet-name> servlet12 </servlet-name>
<servlet-class> servlet1 </servlet-class>
</servlet>

<servlet-mapping>
<servlet-name> servlet12 </servlet-name>
<url-pattern> /ser </url-pattern>
</servlet-mapping>

<servlet>
<servlet-name> Servlet2 </servlet-name>
<servlet-class>HelloServlet</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name> Servlet2 </servlet-name>
<url-pattern> /Hello </url-pattern>
</servlet-mapping>

</web-app>

I deploy this application is in weblogic 8 platform.
when I click on submit button I got an error messaage:
Error 500--Internal Server Error
java.lang.NoClassDefFoundError: java/lang/StringBuilder
at HelloServlet.doGet(HelloServlet.java:18)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)my

why do I get this error message?How can I fix it?
17 years ago
when I try to call Servlet2 from index.html I got an error
Error 500--Internal Server Error
java.lang.NoClassDefFoundError: java/lang/StringBuilder
at Servlet2.doGet(Servlet2.java:23)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1006)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

How can I fix it?
17 years ago