"sample_jsp.jsp": package javelin.jsp does not exist
Pls help.
Thanks in advance.
Sam
Switch back to Weblogic 8.1.4 while you are in JBuilder and do a smoke
test of your application in Weblogic 9.2.2. JBuilder 2006 doesn't
support the newer versions of Weblogic. At least that's what I recall.
--
David Orriss Jr. [TeamB]
http://www.codethought.com
* Please limit all responses to the newsgroups. Thanks! *
My blog: http://codethought.com/blog
Save yourself some time and check these sites:
Borland Newsgroup Search:
http://www.borland.com/newsgroups/ngsearch.html
Joi Ellis's Faq-O-Matic:
http://www.visi.com/~gyles19/fom-serve/cache/1.html
I'm pretty sure it does since I have an entry named "Weblogic Platform
Server 9.0" configured in Enterprise > Configure Servers dialog.
You need to add the javelin.jar to the list in the General > Class
tab. Click on the Add button and navigate to the
bea/weblogic92/javelin/lib folder. When you get done configuring
the Class tab, your <home>/.jbuilder2006/Weblogic Platform Server
9.0.library file should read something like the following (make
adjustments for the fact that I'm running this on OS X and so forth).
Please note that by providing this XML, I am not suggesting that you
manually edit the .library file! I'm saying that after you have
configured both the General and Custom tabs, your .library file
should look similar to the following.
<?xml version="1.0" encoding="UTF-8"?>
<library>
<!--JBuilder Server Definition File-->
<fullname>WebLogic Platform Server</fullname>
<home>../../../Developer/Applications/bea/weblogic92/server</home>
<classname>weblogic.Server</classname>
<executable></executable>
<workdir>../../../Developer/Applications/bea/weblogic92/samples/domains/wl_server</workdir>
<version>9.0</version>
<parameters></parameters>
<vmParameters>-Xms256m -Xmx256m -XX:PermSize=32m -XX:MaxPermSize=128m
-Djava.library.path="/Developer/Applications/bea/weblogic92/server/bin"
-Dwls.home="/Developer/Applications/bea/weblogic92/server/"
-Dweblogic.management.discover=false
-Dweblogic.ProductionModeEnabled=false
-Dweblogic.security.SSL.ignoreHostnameVerify=false
-Dweblogic.Name=examplesServer
-Djava.security.policy=="/Developer/Applications/bea/weblogic92/server/lib/weblogic.policy"
-Dbea.home=/Developer/Applications/bea
-Dweblogic.management.password=weblogic
-Dweblogic.management.username=weblogic</vmParameters>
<enabled>1</enabled>
<type_id>com.borland.jbuilder.server.weblogic.WebLogic9xServer</type_id>
<validated>1</validated>
<copy>0</copy>
<class>
<path>[../../../Developer/Applications/bea/weblogic92/server/lib/weblogic.jar]</path>
<path>[../../../Developer/Applications/bea/weblogic92/server/lib/webservices.jar]</path>
<path>[../../../Developer/Applications/bea/weblogic92/server/lib/knex9.jar]</path>
<path>[../../../Developer/Applications/bea/weblogic92/server/lib/xbean.jar]</path>
<path>[../../../Developer/Applications/bea/weblogic92/server/lib/xqrl.jar]</path>
<path>[../../../Developer/Applications/bea/weblogic92/javelin/lib/javelinx.jar]</path>
<path>[../../../Developer/Applications/bea/weblogic92/common/lib/log4j.jar]</path>
</class>
<lastmodsaved>1186720800820</lastmodsaved>
<property category="weblogic" name="appc.compiler.9x" value=""/>
<property category="weblogic" name="bea.home.9x"
value="/Developer/Applications/bea"/>
<property category="weblogic" name="deployer.admin.url.9x"
value="t3://iMac:7001"/>
<property category="weblogic" name="deployer.server.9x"
value="examplesServer"/>
<property category="weblogic" name="deployer.user.name.9x"
value="weblogic"/>
<property category="weblogic" name="domain.directory.9x"
value="/Developer/Applications/bea/weblogic92/samples/domains/wl_server"/>
<property category="weblogic" name="install.path.9x"
value="/Developer/Applications/bea/weblogic92/server"/>
<property category="weblogic" name="jdk.install.path.9x"
value="/System/Library/Frameworks/JavaVM.framework/Versions/1.4/Home"/>
<property category="weblogic" name="jdk.version.9x" value="java
version 1.4.2_12-269"/>
<property category="weblogic" name="password.9x" value="weblogic"/>
<property category="weblogic" name="server.address.9x" value="iMac"/>
<property category="weblogic" name="server.name.9x"
value="examplesServer"/>
<property category="weblogic" name="server.port.9x" value="7001"/>
<property category="weblogic" name="servicepack.number.9x" value="1"/>
<property category="weblogic" name="user.name.9x" value="weblogic"/>
<property category="weblogic" name="version.number.9x" value="9.2"/>
</library>
--
Paul Furbacher (TeamB)
Save time, search the archives:
http://info.borland.com/newsgroups/ngsearch.html
Is it in Joi Ellis's Faq-O-Matic?
http://www.visi.com/~gyles19/fom-serve/cache/1.html
Finally, please send responses to the newsgroup only.
That means, do not send email directly to me.
Thank you.
> I'm pretty sure it does since I have an entry named "Weblogic Platform
> Server 9.0" configured in Enterprise > Configure Servers dialog.
>
I didn't equate 9.0 with 9.2... But it looks like you have a solution.
> You need to add the javelin.jar to the list in the General > Class
> tab. Click on the Add button and navigate to the
> bea/weblogic92/javelin/lib folder. When you get done configuring
> the Class tab, your <home>/.jbuilder2006/Weblogic Platform Server
> 9.0.library file should read something like the following (make
> adjustments for the fact that I'm running this on OS X and so forth).
> Please note that by providing this XML, I am not suggesting that you
> manually edit the .library file! I'm saying that after you have
> configured both the General and Custom tabs, your .library file
> should look similar to the following.
Thanks for that information, Paul.