[aspectwerkz-dev] [jira] Deleted: (AW-432) Weblogic-Aspectwerkz Integration Issue Details
"
[email protected] (JIRA)" <jira-yCVjj/
[email protected]>
Fri, 3 Aug 2007 07:11:10 +1000 (EST)
| Newsgroups |
gmane.comp.java.aspectwerkz.devel |
| Message-ID |
<[email protected]> |
[ http://jira.codehaus.org/browse/AW-432?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
[email protected] deleted AW-432:
---------------------------------
> Weblogic-Aspectwerkz Integration Issue Details
> ----------------------------------------------
>
> Key: AW-432
> URL: http://jira.codehaus.org/browse/AW-432
> Project: AspectWerkz
> Issue Type: Task
> Reporter: jayadeba jena
>
> Hi,
> Following is the details, using which the error that i've reported can be replicated.
> 1.Create a EJB Jar containin 1 Source EJB file and associated aspects
> 2.Deploy this jar without aspectwerkz ProcessStarter Option in the weblogic startup script
> 3.Again Change something in the EJB source file and build the jar.
> 4.Shutdown weblogic
> 5.Restart weblogic now with aspectwerkz Process starter bootclasspath option.
> 6.Deploy the new jar file using welogic administrative console.Following that you can see the EJB compiler exception.
> To remove the exception occurred
> 7.turn off the aspectwerkz option in the weblogic and restart weblogic and deploy the new jar file as usual.
> 8.After deployment again restart weblogic with aspectwerkz option then the error disappears.
> I can provide you with all my source files. Please tellme how can i send you the source and the source if you need them.
> The content of my weblogic startup script is as below...
> @ECHO OFF
> @REM WARNING: This file is created by the Configuration Wizard.
> @REM Any changes to this script may be lost when adding extensions to this configuration.
> SETLOCAL
> @REM *************************************************************************
> @REM This script is used to start WebLogic Server for the domain in the
> @REM current working directory. This script simply sets the SERVER_NAME
> @REM variable and starts server.
> @REM
> @REM To create your own start script for your domain, all you need to set is
> @REM SERVER_NAME, then starts the server.
> @REM
> @REM Other variables that startWLS takes are:
> @REM
> @REM WLS_USER - cleartext user for server startup
> @REM WLS_PW - cleartext password for server startup
> @REM PRODUCTION_MODE - true for production mode servers, false for
> @REM development mode
> @REM JAVA_OPTIONS - Java command-line options for running the server. (These
> @REM will be tagged on to the end of the JAVA_VM and MEM_ARGS)
> @REM JAVA_VM - The java arg specifying the VM to run. (i.e. -server,
> @REM -hotspot, etc.)
> @REM MEM_ARGS - The variable to override the standard memory arguments
> @REM passed to java
> @REM
> @REM For additional information, refer to the WebLogic Server Administration
> @REM Console Online Help(http:\\e-docs.bea.com\wls\docs81\ConsoleHelp\startstop.html)
> @REM *************************************************************************
> @REM Initialize the common environment.
> set WL_HOME=C:\bea\weblogic81
> for %%i in ("%WL_HOME%") do set WL_HOME=%%~fsi
> set PRODUCTION_MODE=
> set JAVA_VENDOR=Sun
> set JAVA_HOME=C:\bea\jdk142_04
> for %%i in ("%JAVA_HOME%") do set JAVA_HOME=%%~fsi
> @REM Call commEnv here AFTER setting the java_vendor to get common environmental settings.
> call "%WL_HOME%\common\bin\commEnv.cmd"
> @REM Set SERVER_NAME to the name of the server you wish to start up.
> set SERVER_NAME=imnp_server
> set AW_OPT=-Daspectwerkz.definition.file=C:\MNP-Beta\project\config\aop.xml
> set IMNP_HOME=C:\MNP-Beta\project
> set IMNP_CLASSPATH=%IMNP_HOME%\lib\classes12.zip
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;%IMNP_HOME%\lib\log4j-1.2.8.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;%IMNP_HOME%\lib\commons-logging-1.0.4.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;%IMNP_HOME%\lib\commons-messenger.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\aspectwerkz-2.0.RC2.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\aspectwerkz-core-2.0.RC2.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\aspectwerkz-extensions-2.0.RC2.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\aspectwerkz-jdk14-2.0.RC2.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\concurrent-1.3.1.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\dom4j-1.4.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\jrexx-1.1.1.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\piccolo-1.03.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\qdox-1.4.jar
> set IMNP_CLASSPATH=%IMNP_CLASSPATH%;C:\Aspect\aw_2_0_2\lib\trove-1.0.2.jar
> set CLASSPATH=%IMNP_CLASSPATH%;%WEBLOGIC_CLASSPATH%;%POINTBASE_CLASSPATH%;%JAVA_HOME%\jre\lib\rt.jar;%WL_HOME%\server\lib\webservices.jar;%CLASSPATH%
> set PATH=%PATH%;%JAVA_HOME%\jre\bin
> set PATH=%PATH%;C:\MNP_ROI\Project\lib
> set PATH=%PATH%;C:\MNP_ROI\Project\lib\aspectwerkz.dll
> @REM Call WebLogic Server
> echo .
> echo CLASSPATH=%CLASSPATH%
> echo .
> echo PATH=%PATH%
> echo .
> echo ***************************************************
> echo * To start WebLogic Server, use a username and *
> echo * password assigned to an admin-level user. For *
> echo * server administration, use the WebLogic Server *
> echo * console at http:\\[hostname]:[port]\console *
> echo ***************************************************
> %JAVA_HOME%/bin/java -cp "%JAVA_HOME%\lib\tools.jar;C:\Aspect\aw_2_0_2\lib\aspectwerkz-core-2.0.RC2.jar;" org.codehaus.aspectwerkz.hook.ProcessStarter -Xbootclasspath/a:"\"%CLASSPATH1%\"" -cp "\"%CLASSPATH%\"" %JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% %AW_OPT% -Dweblogic.Name=%SERVER_NAME% -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy="%WL_HOME%\server\lib\weblogic.policy" -Dlog4j.configuration=file:///%IMNP_HOME%/config/log4j.properties -Ddatasource=imnp_jdbc_data_source weblogic.Server
> ENDLOCAL
> Regards,
> Jayadeba
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email