Help coderanch get a
new server
by contributing to the fundraiser

Ranvir Dalal

Greenhorn
+ Follow
since Jan 31, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Ranvir Dalal

Is there any way in Websphere to read the message from MQ Queue in browse mode. MQI allows it, but I am not sure if JMS supports this or not?
Is there any way to achieve this in WAS via JMS?
This is needed as I want to delete the message from Queue only after I am done reading the message. As message is long in size and it would be read segment by segment and in case it fails in the middle, I need to start over from segment 1. That is possible only if I read the message in browse mode?
17 years ago
Just like weblogic supports idempotent methods for session beans, is there anything similar for websphere or websphere is lacking that feature ?
17 years ago
Did you check the jar/ear file created(which you eventually upload to the WAS server)
I think it includes this jar file(what you defined in variable) to the ear file. So it is alwayse available to your classes.
17 years ago
Hi All,
I am getting this error while publishing the Enterprise app to my test web WAS in RAD 6

Any idea, how to resolve this ?
17 years ago
Hi I am using this ant file in RAD 6
<?xml version="1.0" encoding="UTF-8"?>
<project default="exportEar">
<target name="exportEar" depends="">
<echo message="Exported EAR files to " />

<earExport earprojectname="e1" earexportfile="C:/RTemp/e1.ear"<br /> exportsource="true" IncludeProjectMetaFiles="false" overwrite="true" />

<echo message="Test Message"/>
</target>
</project>

It works fine no errors but I do not see the file generated
here is the output at console
Buildfile: C:\workspace\e1\META-INF\build.xml

exportEar:
[echo] Exported EAR files to
[earExport] Exporting: e1 (Begin) ...
[echo] Test Message
BUILD SUCCESSFUL
Total time: 219 milliseconds


Thanks
17 years ago
Hi I am using this ant file in RAD 6
<?xml version="1.0" encoding="UTF-8"?>
<project default="exportEar">
<target name="exportEar" depends="">
<echo message="Exported EAR files to " />

<earExport earprojectname="e1" earexportfile="C:/RTemp/e1.ear"
exportsource="true" IncludeProjectMetaFiles="false" overwrite="true" />

<echo message="Test Message"/>
</target>
</project>

It works fine no errors but I do not see the file generated
here is the output at console
Buildfile: C:\workspace\e1\META-INF\build.xml

exportEar:
[echo] Exported EAR files to
[earExport] Exporting: e1 (Begin) ...
[echo] Test Message
BUILD SUCCESSFUL
Total time: 219 milliseconds


Thanks
17 years ago
Hi I am using this ant file in RAD 6
<?xml version="1.0" encoding="UTF-8"?>
<project default="exportEar">
<target name="exportEar" depends="">
<echo message="Exported EAR files to " />

<earExport earprojectname="e1" earexportfile="C:/RTemp/e1.ear"
exportsource="true" IncludeProjectMetaFiles="false" overwrite="true" />

<echo message="Test Message"/>
</target>
</project>

It works fine no errors but I do not see the file generated
here is the output at console
Buildfile: C:\workspace\e1\META-INF\build.xml

exportEar:
[echo] Exported EAR files to
[earExport] Exporting: e1 (Begin) ...
[echo] Test Message
BUILD SUCCESSFUL
Total time: 219 milliseconds


Thanks
17 years ago
We want to use connection pooling for Oracle database. Right now we are using jdbc.oracle.driver.OracleDriver class for datasource configuration.
I read here some where that we should use another class(oracle.jdbc.pool.OralceConnectionPooldataSource) instead if we need to use connection pooling.
thanks
...Ranvir
21 years ago