Vaishali Paramane

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

Recent posts by Vaishali Paramane

Hi


I have installed checkstyle 6.5 on the RAD 7.5.

I can see the plugin has been installed but unable to see checkStyle in the window->preferences.

Can I get any help to find where is the issue?
Thanks for reply.

If I use convert mechanisum I have to write a lot code because inside class has atleast10-15 other class object and that class also holding another class object.

I am consuming one external web service and published internal web service. Internal web service has same structure as external wsdl. when other application call my internal service I need to convert those object to external web service object and call the external web service operation.

Is there any way to minimise code?

Thanks

Vaishali
11 years ago
I am working on wrapper application which need to convert one object to another object

I have class


I am getting WraaperClass object from xyz package which need to convert WraaperClass class from abc

How should I do it?

application(WrapperClass obj){

abc.WrapperClass obj1=(Object)obj;

}

or

application(WrapperClass obj){

abc. WrapperClass obj1 = new WrapperClass ();

obj1.test = obj.test

abc.obj1.test2 test2= new abc.Obj1.tes2();

test2. variable = obj.test2.variable .....

}

Is there any better approach?

Thanks in Advance

Vaishali
11 years ago
Hi Paul

sorry about that. When I posted my question I didn't realize that one.
12 years ago
Thanks for reply.

but how I can pass value to the call in Callable interface
12 years ago
I got one more solution using enum. Is this good approach or anything else ?



Thanks

Vaishali
12 years ago
Thanks for reply

If I used Map and Runnable I can't catch return value.

In my code condition1 ... these methods returns true or false but using this solution I can't catch return value.
12 years ago
Hi

I have one sinario where I need to use multiple if conditions (54 times) to avoid what approach I need to use?

e.g

if(state="AB"){
condi1()
condi2()
} if else(state=='AC'){
condi1()
cond3()
}
........

like this 54 times. Is there any mechanisum except switch or if condition I can do it.

Thanks

Vaishali
12 years ago
hey I am also facing same problem did you solve this problem?

Thanks

Vaishali
12 years ago
Hi

I am trying to develop simple hello world first program but getting error


I am using axis-1_4 and java 1.7

Soap server is working .




all jar files in path and HelloWorld.jws is in C:\java\axis-1_4\webapps\axis\WEB-INF\classes

Can anyone help me?

Thanks

Vaishali
12 years ago
Thanks for reply
12 years ago
Hi
I am new in struts and hibernate.
I have Courses entity and from Courses has course_name which is I add to select tag
<s:select listValue="course_name" list="courses" label="Course : " name="studentbean.course"/>

I can see all courses name but when I am going to save, instead of course_name I am getting some object values( like org.database.beans.Courses@6b8e68ca)


How I can get course name in student bean.


Student.jsp



Thanks

Vaishali
12 years ago
Hi
I am writing first Hibernate program in eclipse using Hibernate4, oracle11g

I added following jar files in class path


and Hibernate.cfg.xml file





I am getting error when I am creating configuration file

Configuration configuration= new Configuration();

Can anyone help me?

Thanks

Vaishali