namita pa

Ranch Hand
+ Follow
since Sep 06, 2001
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 namita pa

hi
can anyone tell me the step by step procedure to work with the console in weblogic 6.1
or the link to the same
thanks
namita
21 years ago
hi
has anyone worked with tomcat as webserver and
JBosss as appserver .Kindly through some light on this as to what all points have to be kept in mind while working and integrating
thanks
namita
22 years ago
hi
could anyone tell me the servers that would be compatible with weblogic server 5.1
i mean if we are having an application running on weblogic 5.1 then which all servers are there on which we can implement the same application logic with little or no changes ....and what all points are to be taken into consideration
thanks n regards
namita
22 years ago
hi
i think that u have not set the path for the compiled jsp files in the weblogic properties
see WEBLOGIC JSP PROPERTIES in properties fileand set the working directory as workingDir=c:/weblogic/myserver/classfiles,\
hope it would solve the problem
c: is the directory where weblogic is installed
bye
all the best
namita
22 years ago
hi
could anyone please tell me how to create and run a simple application using jsp/ejb when i'm using Tomcat as webserver and Jboss as appserver
What are the necessary points one should consider while working with these two
any example would be a great help
thanksin advance
namita
22 years ago

Originally posted by Krystal Tyler:
Hi.
I have seen topics on this here and I was wondering if there actually is a purpose in instantiating an object in another class.


the objects of one class is instantiated in another if u want to use the methods in the first in the second
thanks
namita
22 years ago

Originally posted by Preethi Suryam:
Hi!
I have a decompiled jar file.I want to jad that file and get the original file.Can i get it.Any comments are greatly appretiated.
Regards!
Preethi.


hi preethi
it can be done you can jad the file but the file you get has some extra things added just check them and delete if irrelevant

------------------
22 years ago
hi
you can write a javascript function in the jsp and call it to format the date
String formatDate(String sDt)
{
sDt= sDt.substring(8,10)+"-"+sDt.substring(5,7)+"-"+sDt.substring(0,4);
return sDt;
}
where sDt is the date you get from the Calendar function
hope it will help

------------------
22 years ago
ya its better to do it in the while loop as it checks all the records in the resultset
------------------
22 years ago

hi rehan
if you do not want to refresh the page you need to write one javascript function which would be called on the change event of the select or list box.in that function you can do the needful.if any doubts do write back
all the best
regards namita
Rehan.
SCJP[/B]

------------------
22 years ago
hi
please can anyone please explain the package concept in java ....a bit of confusion is there regarding setting the classpath .
thanks in advance
namita
------------------
22 years ago
hi
if you make a method static it can be accessed without creating the object of the class ..the best example for static method is
public static void main(String args[])
which is the first function to be called before any object is created for that particular class.i.e static method has a scope of class rather than object scope.any further clarifications please write back
regards
namita
------------------
22 years ago
hi all
could anybody please tell me the difference between four types of JDBC drivers
regards
namita
------------------
hi
to make it a bit more simpler for you try this query...............
select table2.b, table2.c, table2.d from table2, table1 where not (table2.b=table1.b or table2.c=table.c);
i hope this would work as per your requirement
all the best
namita

------------------
ya please send the query then we can try to solve the problem.....but anyway i'll try to mention here that you yourself please check that whether you are updating the record in the same order as the column in the tables.
------------------