sandeep rane

Greenhorn
+ Follow
since Jun 29, 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 sandeep rane

hello Manjunath Subramanian
thank you for your help.
But when i am going on url http://java.sun.com/j2ee/j2sdkee-beta/index.html
it is giving me some problems that couldn't find the document.
please help me.
thank you
sandeep

------------------
hi vikram
For making the jdbc connectivity with cmp with weblogic server just follow the following steps...
1) In your weblogic.properties file search for
WEBLOGIC DEMO CONNECTION POOL PROPERTIES
here you have to make settings.

weblogic.jdbc.connectionPool.demoPool=\
url=jdbc:odbc:sandeep,\
driver=sun.jdbc.odbc.JdbcOdbcDriver,\
initialCapacity=1,\
maxCapacity=2,\
capacityIncrement=1,\
props=user=scott;password=tiger;server=orcl
# Add a TXDataSource for the connection pool:
weblogic.jdbc.TXDataSource.weblogic.jdbc.jts.demoPool=demoPool
#
# Add an ACL for the connection pool:
weblogic.allow.reserve.weblogic.jdbc.connectionPool.demoPool=everyone

after this save the file.

Then in the deployer after adding all the files you just click on presistance.
There you create the relational database.
There to generate the relational database. you follow the follow the following steps.
You will get fields there.
Click on only those container managed fields which you want them to represent them as relational database.
After that click trhe checkbox weblogic rdbms persistance 5.1.0
You will get three tabed panes.
first will be configuration.
there you give table name which is there in your database.
then give pool name as demoPool.
if any other pool u r creating then give that one.But note that it is case sensitive.
second tabbed pane is field-column map .
this imp. step
here give the column field names from your table.
third tabbed pane is finders.
there you write wlql query.
then save it.
then generate the container and then deploy the bean.
It will work fine.
good luck
sandeep rane
------------------
hello
i am new to ejb world.I want j2ee server. Currently i am using weblogic server. Please tell me from where i will get J2EE server.
hi
i am new to taglib in jsp.
I have written
1)counter.tld
2)counter.java
3)counter.jsp
I am using weblogic5.1 version .
I placed counter.tld file in c:\weblogic\myserver\public_html\web-inf directory and
I placed jsp file in public_html
i placed counter.class file in servletclasses directory.But it is giving error that counter.class is bad file .please remove it or keep it in correct directory.
please help me for the correct location of all the files.

------------------
22 years ago
hi
i tried the param tag of jsp with forward and include on winNT but it is not working
some code i am pasting here
<jsp:forward page="forward2.jsp" flush="true" >
<jsp aram name="ffname" value="sanjay" />
</jsp:forward>
but in forward2.jsp page when i am saying
String str = request.getParameter("ffname");
it is givimg me null value
the same thing is happening with include tag
please suggest me the answer

------------------
22 years ago