Hi ,
 When I a m trying to deploy my project using weblogic , I am getting
errors. My  weblogic server is getting  stopped and I am getting error

==============================================================
#
# An unexpected error has been detected by HotSpot Virtual Machine:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x080c3381, pid=3920,
tid=172
#
# Java VM: Java HotSpot(TM) Client VM (1.4.2_11-b06 mixed mode)
# Problematic frame:
# V  [jvm.dll+0xc3381]
#
# An error report file with more information is saved as hs_err_pid3920.log
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp

========================================================

My pom.xml is

==========================================


<?xml version="1.0" encoding="UTF-8"?>
<project>
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.fareis</groupId>
    <artifactId>pom-web</artifactId>
    <version>1.0.0</version>
  </parent>
  <groupId>com.fareis</groupId>
  <artifactId>StellentLogin</artifactId>
  <packaging>war</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>Stellent Redirect</name>
  <description>This application is used to redirect the user to an image
    repository based on whether the image has been converted from SourceCorp
    (Fastrieve) to Stellent.
  </description>
  <url>http://fada1scmd01.firstam-reis.net/stellent</url>
  <dependencies>

    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.3</version>
    </dependency>
    <dependency>
   <groupId>javax.servlet</groupId>
 <artifactId>jstl</artifactId>
 <version>1.1.2</version>
 <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>struts</groupId>
      <artifactId>struts</artifactId>
      <version>1.2.7</version>
    </dependency>
    <dependency>
      <groupId>activation</groupId>
      <artifactId>activation</artifactId>
      <version>1.0.2</version>
    </dependency>
  <dependency>
      <groupId>org.codehaus.xfire</groupId>
      <artifactId>xfire-all</artifactId>
      <version>1.2.6</version>
    </dependency>
<!-- added later-->
 <dependency>
   <groupId>weblogic</groupId>
      <artifactId>webserviceclient</artifactId>
      <version>8.1.6</version>
     </dependency>

    <dependency>
      <groupId>com.fareis</groupId>
      <artifactId>wlst</artifactId>
      <version>1.0.0</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>com.bea</artifactId>
          <groupId>wlst</groupId>
        </exclusion>
      </exclusions>
    </dependency>
 <!-- added later till here-->
    <dependency>
      <groupId>weblogic</groupId>
      <artifactId>weblogic</artifactId>
      <version>8.1.6</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.bea</groupId>
      <artifactId>jython</artifactId>
      <version>6.4</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
 <plugin>
   <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
   <configuration>
    <source>1.5</source>
    <target>1.5</target>
   </configuration>
 </plugin>
 <plugin>
         <artifactId>maven-war-plugin</artifactId>
         <configuration>
           <archive>
             <manifest>
               <addClasspath>true</addClasspath>
               <classpathPrefix>lib/</classpathPrefix>
             </manifest>
           </archive>
         </configuration>
      </plugin>
   <plugin>
  <artifactId>maven-antrun-plugin</artifactId>
 <!--
        <executions>
          <execution>
            <phase>install</phase>


  -->
 <configuration>
  <fork>true</fork>
 <!-- <compilerVersion>1.4</compilerVersion>
  -->
 <tasks>
  <tstamp />
  <property environment="env" />
 <path id="project.classpath">
  <pathelement location="${env.WL_HOME}/server/lib/weblogic.jar" />
  <pathelement location="${env.WL_HOME}/server/lib/wlst-6.4.jar" />
  <pathelement location="${env.WL_HOME}/server/lib/jython-6.4.jar" />
  </path>
  <property name="project.version" value="1.0-SNAPSHOT" />
 <!-- <property name="distDir" value="/source/stellent/target"/>
  -->
 <java classname="weblogic.WLST" fork="yes" classpathref="project.classpath
">
  <arg line="-loadProperties src/main/weblogic/stellent.py.properties
src/main/weblogic/stellent.py ${project.version} ${basedir}/target" />
  </java>
 <java classname="com.fareis.wlst.ModifyStartupScript" fork="yes"
classpathref="project.classpath">
  <arg line="target/staging/startstellent.cmd" />
 <!-- <arg line="${basedir}/target/staging/startstellent.cmd"/>
  -->
  </java>
  </tasks>
  </configuration>
 <!--
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>


  -->
  </plugin>
   </plugins>
  </build>

<!--  <scm>
    <connection>
      scm:svn:
http://fada1scmd01.firstam-reis.net/svn/repos/${project.artifactId}/trunk/
    </connection>
    <developerConnection>
      scm:svn:
http://fada1scmd01.firstam-reis.net/svn/repos/${project.artifactId}/trunk/
    </developerConnection>
    <url>
http://fada1scmd01.firstam-reis.net/svn/repos/${project.artifactId}/
    </url>
  </scm> -->
</project>



 ===========================================

 Please give your suggestion.

Regards,

Ashish Srivastava

Reply via email to