prasanthi kothapa

Ranch Hand
+ Follow
since Oct 19, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by prasanthi kothapa

Hi all,
i want to know the difference between a schema and .xsd.
are .xsd being used now??
thanks..
prasanthi
KOTHAPA PRASANTI PhL 714-549-3629
Email kprashu@mailcity.com

Objective:
My aim is to pursue a Challenging career in a Progressive Company.
Profile:
�Two and half years of rich experience in Design, Development & Testing of Client Server Applications and Web Based Applications using Java, AWT, servlets,JavaServerPages,JavaBeans,Swing,JavaScript,HTML,XML, XSLT,SQL .
�Extensively worked on WeblogicServer4.1.5 (EJB) for Over 1 year
�Sun Certified Java Programmer.
Educational Qualifications:
Completed Bachelor of Technology in Engineering from
Regional Engineering College-Warangal in April �1998.

Technical Skills:
Languages:Cobol, C++ and Java 2.0
Operating Systems:MS-DOS, WINDOWS NT
GUI:AWT, SWING
RDBMS: SQL Server 7.0
Technologies and Tools:JDBC, Java Servlets, Java Server Pages,
Java Beans, HTML, Java Script, XML
Work Experience:
Project #1 KEMPER WEB ENABLING PROJECT
Location Syntel India Ltd, Mumbai
Role Programmer/Analyst
Duration SEP-99 TO SEP-00
Description The project aims to provide Kemper Insurance Agents a flexible and easily accessible application (using Internet) to make quick quotes based on Customer supplied and third party data.
This is a two-phase project. In the first phase generating user-screens de-construction reports as well as extracting business rules from the code from four different Existing applications. The extracted business rules are then converted to Use-Cases and visually modeled in Rose 98I. In the second phase of the project, the re-development of these applications was done.
Application uses Java as the primary programming language. It uses BEA WebLogic Application Server on Windows NT. The architecture is loosely based on Model-View-Controller architecture.
The technology used includes:
The standard browsers available (IE and Netscape)
The BEA WebLogic Application Server
The Java Servlets (as controller)
Java Beans (for controlling flow and processing logic)
The Java Server Pages (for presentation)
Responsibilities:
�Re-engineering Methodology for AUTO and Gateway application.
�Converting business rules into Use cases.
�Designed XML Structures for Internal Application Communication and lead the effort in designing and developing the External XML Interface for the application using Sun's Validating SAX XML parser.
�Used XSLT for changing XML structures for External Interfacing and also for displaying XML in Browsers.
�Development of Java Server Pages for the Web Interface.
�Written Business Logic Beans for Smart Quotes System which retrieves Quotes for a user using Proprietary algorithms.
�Used Servlets for Managing Session Data.
�Used JavaScript for Front End Screens Input Handling.
�Other responsibilities include Unit Testing, Communication with On-site and Quality Assurance
Project # 2 Transcor Travels
Location Syntel India Ltd, Mumbai
Role Programmer/Analyst
Duration JAN-99 TO AUG-99

Description: Transcor Travels is one of the leading travel agencies in USA. This application deals with Toll Collection Systems .The new system is developed using JAVA 1.1.6 .The middle tier is supported on BEA WebLogic Application Server 1.x .The database is MS SQL SERVER 7.x.
Responsibilities
�Involved in Business rules extraction from the Legacy applications and Documentation.
�Written Java Beans for implementing business rules depending upon the type of payment the traffic chooses (monthly, yearly etc) and the location dependencies of the toll stations.
�Used Java Servlets / JSP�s for Providing the Web Interface for the Application.
�Used AWT/Swing for Creating BackOffice Management Module.
�Writing Transaction Programs, Report Programs.
�Written Stored Procedures Used by Transaction Programs as well as Report Programs.
�Transaction programs run one or more than one transaction, updating more than one table using Stored Procedures and Triggers
�Report Programs are for generating various Reports for Traffic Management Analysis.
�Implementation and Production Support Three weeks� production support is also part of the project.

Project #3 Course Management System for Reliance Training Center.
Location Syntel India Ltd, Mumbai
Role Programmer/Analyst
Duration MAY-98 TO DEC-98
Description: Reliance Industries Ltd. is the largest Private Sector Company in India, which consists of 15,000 employees. This project aims at developing a consistent and simple Front-End for accessing the course related database & creating and maintaining an integrated database of employees attending various training programs.

Responsibilities
�Preparing design specifications & project documentation.
�Designed the application using ERWIN development tool.
�Designed GUI (User Interface) Using Swing 1.x.
�Used Java Beans for handling the middle tier for evaluating the Employees track record in training and updates it in the HR Departments Database.
�Involved in Database schema designing which includes normalizing as well as denormalizing the Database.
�Created Stored Procedures and triggers for managing different entities in the application in SQL Server 7.0.
�Was also involved in testing and debugging the application.
23 years ago
hi ashok,
i have my jsp file in the examples/jsp directory.On saying
startserver & giving the URL http:\\localhost:8080\ i am
getting the home page, but on running my jsp i get the
following error in the console:
java.lang.NoClassDefFoundError: sun/tools/javac/Main
please help me out......
thanks..
prasanthi
24 years ago
hi guys,
i have javawebsrever2.0 running on my machine.
i have downloaded jswdk to run my jsp's..
please tell me how to go about it.

thanx,
prasanthi
24 years ago
hi guys,
i have javawebsrever2.0 running on my machine.
i have downloaded jswdk to run my jsp's..
please tell me how to go about it.

thanx,
prasanthi
24 years ago
thanks a lot Brett, the tutorial was a great help
bye..
prasanthi
24 years ago
hi guys,
i want to dowload some jsp engine and practice few examples
on jsp.could you please help me out.suggest me where to
download from a send me a few example jsp's for practice.
also suggest me a good book,right now i have the professional
jsp-wrox publications...
thanx a lot...
prasanthi
24 years ago
hi guys,
i gave my exam today morning,managed to get 83%.
i am o.k with it, although not too happy.
thanks to javaranch.i have been participating
in it for the last one month.one advise is
that you should write down lots of code and
work out, then you won't get confused in the
exam.the questions that i got in io,util,awt
were mostly theoritical.the rest small snippets
of code not more than 15 lines.be careful about
how you read the question.

thanx everyone
bye
prasanthi
hi maha anna,

please explain why it's not a constructor.
i am very confused about it..
i will very grateful if you can help me on this..
thanks..
prasanthi
hi guys,
this block of code compiles succesfully:
i thought that the constructor in Class B has a return
type, so it should not compile.
please tell where i am going wrong??
class A {
public A() {}
public A(int i) { this ();}
}
class B extends A{
public boolean B(String msg) {return false;}
}
class C extends B{
private C( ) { super( );}
public C(string msg) { this( ) ;}
public C(int i) { }
}
thanx,
prasanthi
}
hi Jerry,
what changes do we need to make to synchronize on the
same object.
please explain..
prasanthi
In the code below we are directly calling the
run() method.how is this possible?? i thought
we have to call the start() method in order
to call run()
please explain...

class a1 extends Thread
{
public static void main(String args[])
{
a1 a =new a1();
Thread a11 = new Thread(a);
Thread a12 = new Thread(a);
a11.run();
a12.run();
}
int x=1,y=1;
synchronized void method1()
{
x =x+1;
y=y+1;
}
public void run()
{
for(int i =0 ; i<5;i++)
{
method1();
System.out.println(x+""+y);
}
}
}
in the below code, how are we able to call the
run() method of the thread , without calling
start().
2 >class a1 extends Thread
{
public static void main(String args[])
{
a1 a =new a1();
Thread a11 = new Thread(a);
Thread a12 = new Thread(a);
a11.run();
a12.run();
}
int x=1,y=1;
synchronized void method1()
{
x =x+1;
y=y+1;
}
public void run()
{
for(int i =0 ; i<5;i++)
{
method1();
System.out.println(x+""+y);
}
}
}

please help..
prasanthi
hi guys,
could someone send me some good example codes in threads,
to practice syncronization, deadlock e.t.c
thanks..
prasanthi
hi joseph,
the thread has only been suspended, it goes into the wait()
state.hence on calling resume() it comes back to the ready
state,it continues from where it got suspended.

hope it helps
bye ..
prasanthi