Hi,

does anybody on this list work with Iona Application Server ?
I hope.
I try to deploy a junit/cactus test suite encapsulated into a EAR file 
to test an EJB but i have got few problems :
- the web.xml file which works with Weblogic, WebSphere and J2sdkee is 
not ok for Iona
- i have got great difficulty to create the cc.xml ( container 
configuration file ) because documentation and dtd file are not agree

You can see in attachment the two files
If anyone knows this application server, please send me tips !!

Regards
Florent
<!DOCTYPE configuration PUBLIC "-//IONA//DTD IPAS CC 3.0-U3//EN" "http://www.iona.com/dtds/container_configuration_3_0.dtd";>
<configuration>
  <web-app>
      <display-name>Cactus</display-name>
      <context-root>cactus</context-root>
      <servlet>
          <servlet-name>ServletRedirector</servlet-name>
      </servlet>
      <session-config> 
           <distributed>false</distributed>
      </session-config>
  </web-app>
</configuration>
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN' 'http://java.sun.com/j2ee/dtds/web-app_2.2.dtd'>
<web-app>
    <display-name>Cactus</display-name>
    <servlet>
        <servlet-name>ServletRedirector</servlet-name>
        <display-name>ServletRedirector</display-name>
        <servlet-class>org.apache.cactus.server.ServletTestRedirector</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>ServletRedirector</servlet-name>
        <url-pattern>/ServletRedirector</url-pattern>
    </servlet-mapping>
    <ejb-ref>
          <ejb-ref-name>ejb/BasketBankingOperation</ejb-ref-name>
          <ejb-ref-type>Session</ejb-ref-type>
          <home>bankingSystemEJB.ejbStatefull.BasketBankingOperationHome</home>
          <remote>bankingSystemEJB.ejbStatefull.BasketBankingOperation</remote>
    </ejb-ref>
</web-app>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to