Kevin Urcioo

Greenhorn
+ Follow
since Aug 08, 2002
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 Kevin Urcioo

I have a question about the findByCriteria method. The method takes an array of String objects and returns an array of longs. Does input array of Strings size have to equal the number of fields in a record, so field two is matched to the second String in the input array. Or is it that every value in the input array is compared to all of the fields in a record? It is not clear from the method description.
Thanks.
I have some EJBs that require Java 1.4. How can I upgrade the Websphere JDK/JRE to allow these EJBs to function.
Currently the EJBs complain about the java.util.logging package.
I tried pointing the server.xml to the Sun's JDK 1.4, but Websphere poped with this message:
[1/15/03 17:29:42:336 EST] 813bc1 WsServer E WSVR0008E: Error encountered
reading META-INF/ws-server-components.xml
com.ibm.ws.exception.ConfigurationError
at
com.ibm.ws.runtime.service.ComponentManagerImpl.load(ComponentManagerImpl.ja
va:68)
at
com.ibm.ws.runtime.service.ComponentManagerImpl.<init>(ComponentManagerImpl.
java:51)
at com.ibm.ws.runtime.WsServer.start(WsServer.java:109)
at com.ibm.ws.runtime.WsServer.main(WsServer.java:232)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:94)
Caused by: org.xml.sax.SAXException: System property org.xml.sax.driver not
specified
at
org.xml.sax.helpers.XMLReaderFactory.createXMLReader(XMLReaderFactory.java:9
0)
at
com.ibm.ws.runtime.service.ComponentManagerImpl.load(ComponentManagerImpl.ja
va:66)
... 8 more
---- Begin backtrace for nested exception
org.xml.sax.SAXException: System property org.xml.sax.driver not specified
at
org.xml.sax.helpers.XMLReaderFactory.createXMLReader(XMLReaderFactory.java:9
0)
at
com.ibm.ws.runtime.service.ComponentManagerImpl.load(ComponentManagerImpl.ja
va:66)
at
com.ibm.ws.runtime.service.ComponentManagerImpl.<init>(ComponentManagerImpl.
java:51)
at com.ibm.ws.runtime.WsServer.start(WsServer.java:109)
at com.ibm.ws.runtime.WsServer.main(WsServer.java:232)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at com.ibm.ws.bootstrap.WSLauncher.main(WSLauncher.java:94)
[1/15/03 17:29:42:366 EST] 813bc1 WsServer E WSVR0009E: Error occurred
during startup
I just paid for the 1.2 SCJD exam yesterday and now hear that 1.4 will soon arrive. Do I have any options to switch to 1.4? I would have waited a couple of months if I knew it would arrive so soon.
Thanks,
Kevin