You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Dudu <ed...@yahoo.com.br> on 2006/09/08 15:17:19 UTC

problems running project on jetty

I don't know what to do...
i'm migrating my project to maven, but always happen a problem with
dependencies...
I'm using adf faces, tomahawk and Sun RI.
To corrige this error, I'm trying to add some libraries...

This is the error:
HTTP ERROR: 500

/sag/index.jspx(47,19) PWC6317: The attributes for a standard action
cannot be deferred expressions

RequestURI=/SagWeb/sag/index.jspx

*Powered by Jetty:// <http://jetty.mortbay.org/>*

My index.jspx is this:
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:af="http://xmlns.oracle.com/adf/faces"
          xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
          xmlns:x="http://myfaces.apache.org/tomahawk">
  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
  <f:view>
    <afh:html>
      <f:loadBundle basename="br.com.sag.view.backing.messages" var="msg"/>
      <afh:head title="#{msg.nomeAplicacao} - #{usuario.currentModule.nome
}">
        <link href="../css/sag.css" rel="stylesheet" media="screen"/>
        <afh:script source="/js/indexCode.js"/>
        <afh:script source="/js/indexRefreshCondicoes.js"/>
      </afh:head>
      <afh:body id="body">
        <af:panelPage id="panelPage1">
          <f:facet name="menu2"></f:facet>
          <f:facet name="infoUser"></f:facet>
          <f:facet name="messages"></f:facet>
          <f:facet name="search"></f:facet>
          <f:facet name="actions"></f:facet>
          <f:facet name="brandingAppContextual">
            <x:jscookMenu layout="hbr" theme="ThemeOffice"
                          binding="#{backing_sag_index.jscookMenu1}"
                          id="jscookMenu1">
              <x:navigationMenuItems
binding="#{backing_sag_index.navigationMenuItems1}"
                                     id="navigationMenuItems1"
                                     value="#{backing_sag_index.menu}"/>
            </x:jscookMenu>
          </f:facet>
          <f:facet name="contextSwitcher"></f:facet>
          <f:facet name="infoFootnote"></f:facet>
          <f:facet name="infoReturn"></f:facet>
          <f:facet name="infoStatus">

               <af:goLink  destination="#ERRO"
                    rendered="#{backing_sag_pohecamp2.hasErrors}"
                    id="vailink"
                   >
                <h:graphicImage
                    id="erro"
                    style="BORDER:0"
                    url="/css/images/alerta.gif"
                    title="#{msg.msgExisteErro}"
                />
                <h:outputText value="#{msg.msgErro}"/>
              </af:goLink>
          </f:facet>
          <f:facet name="infoSupplemental"></f:facet>
          <f:facet name="location"></f:facet>
          <f:facet name="menu1"></f:facet>
          <f:facet name="menuGlobal">
            <h:panelGroup>
              <af:outputText value="Usuário: " styleClass="x19"/>
              <af:outputLabel value="#{usuario.nome}" styleClass="x19"/>
            </h:panelGroup>
          </f:facet>
          <f:facet name="branding"></f:facet>
          <f:facet name="brandingApp"></f:facet>
          <f:facet name="appCopyright">
            <f:verbatim>Copyright</f:verbatim>
          </f:facet>
          <f:facet name="appPrivacy">
            <f:verbatim>Privacidade</f:verbatim>
          </f:facet>
          <f:facet name="appAbout">
            <f:verbatim>Sobre</f:verbatim>
          </f:facet>
          <f:facet name="menuSwitch">
            <af:form>
              <af:commandLink text="Trocar módulo "
                              shortDesc="Entrar em outro módulo do SAG"
                              rendered="#{usuario.codfprod == null}"
                              immediate="true"

action="#{backing_sag_index.actionSwitchModule}"/>
              <f:verbatim>&amp;nbsp;</f:verbatim>
              <af:goLink text=" Sair " shortDesc="Sair do sistema"
                         destination="/logoff"></af:goLink>
            </af:form>
          </f:facet>
          <af:form>
            <af:showOneTab binding="#{backing_sag_index.showOneTab}"
id="_detail">
            </af:showOneTab>
          </af:form>
          <x:div rendered="#{backing_sag_index.imageVisible}"
styleClass="SagTextCentered">
            <af:objectImage
source="#{backing_sag_index.IMAGE_URL}"></af:objectImage>
          </x:div>
        </af:panelPage>
        <f:verbatim>
        <a name="ERRO" />
        </f:verbatim>
        <h:messages showSummary="true" showDetail="true"
                    errorClass="af_messages_error"
                    warnClass="af_messages_message-text" layout="table"/>
      </afh:body>
    </afh:html>
  </f:view>
</jsp:root>

And my pom.xml is this:
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>br.com.sag</groupId>
    <artifactId>SagWeb</artifactId>
    <packaging>war</packaging>
    <version>1.0-SNAPSHOT</version>
    <name>Maven Webapp Archetype</name>
    <url>http://maven.apache.org</url>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate</artifactId>
            <version>3.1.3</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.12</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>oracle.adf</groupId>
            <artifactId>adf-faces-impl</artifactId>
            <version>10.1.3.0.4</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>oracle.adf</groupId>
            <artifactId>adf-faces-api</artifactId>
            <version>10.1.3.0.4</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>oro</groupId>
            <artifactId>oro</artifactId>
            <version>2.0.8</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>myfaces</groupId>
            <artifactId>tomahawk</artifactId>
            <version>1.1.2</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>commons-configuration</groupId>
            <artifactId>commons-configuration</artifactId>
            <version>1.2</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
            <version>1.4</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.shale</groupId>
            <artifactId>shale-test</artifactId>
            <version>1.0.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>javax.faces</groupId>
            <artifactId>jsf-impl</artifactId>
            <version>1.1_02</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.4</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.1</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.1.2</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>javax.faces</groupId>
            <artifactId>jsf-api</artifactId>
            <version>1.1_02</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
    <build>
        <finalName>SagWeb</finalName>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.mortbay.jetty</groupId>
                <artifactId>maven-jetty-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

Re: problems running project on jetty

Posted by bendg <be...@gmail.com>.
Thanks - this works a treat...



Mark Hobson wrote:
> 
> On 11/01/07, bendg <be...@gmail.com> wrote:
>> I have been struggling with this problem for a couple of days now, any
>> ideas?
>>
>> [ERROR] BUILD ERROR
>> [INFO]
>> ------------------------------------------------------------------------
>> [INFO] The plugin 'org.codehaus.mojo:jetty-maven-plugin' does not exist
>> or
>> no valid version could be found
>>
>> I tried adding:
>>
>> <plugin>
>>                 <groupId>org.codehaus.mojo</groupId>
>>                 <artifactId>jetty-maven-plugin</artifactId>
>>             </plugin>
>>
>> But to no avail..
>>
>> Any ideas?
> 
> Perhaps using the correct groupId?
> 
> http://jetty.mortbay.org/maven-plugin/howto.html
> 
> Mark
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 

-- 
View this message in context: http://www.nabble.com/problems-running-project-on-jetty-tf2239041s177.html#a8276653
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: problems running project on jetty

Posted by Mark Hobson <ma...@gmail.com>.
On 11/01/07, bendg <be...@gmail.com> wrote:
> I have been struggling with this problem for a couple of days now, any ideas?
>
> [ERROR] BUILD ERROR
> [INFO]
> ------------------------------------------------------------------------
> [INFO] The plugin 'org.codehaus.mojo:jetty-maven-plugin' does not exist or
> no valid version could be found
>
> I tried adding:
>
> <plugin>
>                 <groupId>org.codehaus.mojo</groupId>
>                 <artifactId>jetty-maven-plugin</artifactId>
>             </plugin>
>
> But to no avail..
>
> Any ideas?

Perhaps using the correct groupId?

http://jetty.mortbay.org/maven-plugin/howto.html

Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: problems running project on jetty

Posted by bendg <be...@gmail.com>.
I have been struggling with this problem for a couple of days now, any ideas?

[ERROR] BUILD ERROR
[INFO]
------------------------------------------------------------------------
[INFO] The plugin 'org.codehaus.mojo:jetty-maven-plugin' does not exist or
no valid version could be found

I tried adding:

<plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
            </plugin>

But to no avail..

Any ideas?
-- 
View this message in context: http://www.nabble.com/problems-running-project-on-jetty-tf2239041s177.html#a8276385
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: problems running project on jetty

Posted by wlfshmn <jo...@gmail.com>.
Greetings,

I experience the same problem using putty6 with a myfaces project using core
and tomahawk, but not ADF.

My project runs fine if deployed on tomcat5.5 however. I suspect there is a
problem with regards to how jetty locates myfaces jars, as the jetty page
has instructions to put hem in jetty's ext folder, as per 
http://docs.codehaus.org/display/JETTY/MyFaces
http://docs.codehaus.org/display/JETTY/MyFaces , yet I don't see how to get
hte jetty maven plugin to assist me in this.

Anyone with ideas?

Johan


dudu wrote:
> 
> Thanks Wayne...
> 
> the message error is not found on google :(.
> I have removed all dependencies and putted again, but without sucess.
> If I try with the jars on my pc, it works. I think there are a problem
> with
> the jars on mvn repository, like calling wrong dependencies  or wrong
> versions of it.
> 
> 
> On 9/8/06, Wayne Fay <wa...@gmail.com> wrote:
>>
>> This seems like a JSF problem, not really a Maven issue per se.
>>
>> I'd send a similar email (minus the pom) to a couple JSF groups and
>> see what they say about it.
>>
>> Also I'd try deploying your app to another app server to see if
>> perhaps its simply a Jetty bug.
>>
>> Wayne
>>
>> On 9/8/06, Dudu <ed...@yahoo.com.br> wrote:
>> > I don't know what to do...
>> > i'm migrating my project to maven, but always happen a problem with
>> > dependencies...
>> > I'm using adf faces, tomahawk and Sun RI.
>> > To corrige this error, I'm trying to add some libraries...
>> >
>> > This is the error:
>> > HTTP ERROR: 500
>> >
>> > /sag/index.jspx(47,19) PWC6317: The attributes for a standard action
>> > cannot be deferred expressions
>> >
>> > RequestURI=/SagWeb/sag/index.jspx
>> >
>> > *Powered by Jetty:// <http://jetty.mortbay.org/>*
>> >
>> > My index.jspx is this:
>> > <?xml version='1.0' encoding='windows-1252'?>
>> > <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
>> >          xmlns:h="http://java.sun.com/jsf/html"
>> >          xmlns:f="http://java.sun.com/jsf/core"
>> >          xmlns:af="http://xmlns.oracle.com/adf/faces"
>> >          xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
>> >          xmlns:x="http://myfaces.apache.org/tomahawk">
>> >  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
>> >  <f:view>
>> >    <afh:html>
>> >      <f:loadBundle basename="br.com.sag.view.backing.messages"
>> var="msg"/>
>> >      <afh:head title="#{msg.nomeAplicacao} - #{
>> usuario.currentModule.nome
>> > }">
>> >        <link href="../css/sag.css" rel="stylesheet" media="screen"/>
>> >        <afh:script source="/js/indexCode.js"/>
>> >        <afh:script source="/js/indexRefreshCondicoes.js"/>
>> >      </afh:head>
>> >      <afh:body id="body">
>> >        <af:panelPage id="panelPage1">
>> >          <f:facet name="menu2"></f:facet>
>> >          <f:facet name="infoUser"></f:facet>
>> >          <f:facet name="messages"></f:facet>
>> >          <f:facet name="search"></f:facet>
>> >          <f:facet name="actions"></f:facet>
>> >          <f:facet name="brandingAppContextual">
>> >            <x:jscookMenu layout="hbr" theme="ThemeOffice"
>> >                          binding="#{backing_sag_index.jscookMenu1}"
>> >                          id="jscookMenu1">
>> >              <x:navigationMenuItems
>> > binding="#{backing_sag_index.navigationMenuItems1}"
>> >                                     id="navigationMenuItems1"
>> >                                     value="#{backing_sag_index.menu}"/>
>> >            </x:jscookMenu>
>> >          </f:facet>
>> >          <f:facet name="contextSwitcher"></f:facet>
>> >          <f:facet name="infoFootnote"></f:facet>
>> >          <f:facet name="infoReturn"></f:facet>
>> >          <f:facet name="infoStatus">
>> >
>> >               <af:goLink  destination="#ERRO"
>> >                    rendered="#{backing_sag_pohecamp2.hasErrors}"
>> >                    id="vailink"
>> >                   >
>> >                <h:graphicImage
>> >                    id="erro"
>> >                    style="BORDER:0"
>> >                    url="/css/images/alerta.gif"
>> >                    title="#{msg.msgExisteErro}"
>> >                />
>> >                <h:outputText value="#{msg.msgErro}"/>
>> >              </af:goLink>
>> >          </f:facet>
>> >          <f:facet name="infoSupplemental"></f:facet>
>> >          <f:facet name="location"></f:facet>
>> >          <f:facet name="menu1"></f:facet>
>> >          <f:facet name="menuGlobal">
>> >            <h:panelGroup>
>> >              <af:outputText value="Usuário: " styleClass="x19"/>
>> >              <af:outputLabel value="#{usuario.nome}" styleClass="x19"/>
>> >            </h:panelGroup>
>> >          </f:facet>
>> >          <f:facet name="branding"></f:facet>
>> >          <f:facet name="brandingApp"></f:facet>
>> >          <f:facet name="appCopyright">
>> >            <f:verbatim>Copyright</f:verbatim>
>> >          </f:facet>
>> >          <f:facet name="appPrivacy">
>> >            <f:verbatim>Privacidade</f:verbatim>
>> >          </f:facet>
>> >          <f:facet name="appAbout">
>> >            <f:verbatim>Sobre</f:verbatim>
>> >          </f:facet>
>> >          <f:facet name="menuSwitch">
>> >            <af:form>
>> >              <af:commandLink text="Trocar módulo "
>> >                              shortDesc="Entrar em outro módulo do SAG"
>> >                              rendered="#{usuario.codfprod == null}"
>> >                              immediate="true"
>> >
>> > action="#{backing_sag_index.actionSwitchModule}"/>
>> >              <f:verbatim>&nbsp;</f:verbatim>
>> >              <af:goLink text=" Sair " shortDesc="Sair do sistema"
>> >                         destination="/logoff"></af:goLink>
>> >            </af:form>
>> >          </f:facet>
>> >          <af:form>
>> >            <af:showOneTab binding="#{backing_sag_index.showOneTab}"
>> > id="_detail">
>> >            </af:showOneTab>
>> >          </af:form>
>> >          <x:div rendered="#{backing_sag_index.imageVisible}"
>> > styleClass="SagTextCentered">
>> >            <af:objectImage
>> > source="#{backing_sag_index.IMAGE_URL}"></af:objectImage>
>> >          </x:div>
>> >        </af:panelPage>
>> >        <f:verbatim>
>> >         
>> >        </f:verbatim>
>> >        <h:messages showSummary="true" showDetail="true"
>> >                    errorClass="af_messages_error"
>> >                    warnClass="af_messages_message-text"
>> layout="table"/>
>> >      </afh:body>
>> >    </afh:html>
>> >  </f:view>
>> > </jsp:root>
>> >
>> > And my pom.xml is this:
>> > <project xmlns="http://maven.apache.org/POM/4.0.0"
>> >    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>> >    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
>> > http://maven.apache.org/maven-v4_0_0.xsd">
>> >    <modelVersion>4.0.0</modelVersion>
>> >    <groupId>br.com.sag</groupId>
>> >    <artifactId>SagWeb</artifactId>
>> >    <packaging>war</packaging>
>> >    <version>1.0-SNAPSHOT</version>
>> >    <name>Maven Webapp Archetype</name>
>> >    <url>http://maven.apache.org</url>
>> >    <dependencies>
>> >        <dependency>
>> >            <groupId>junit</groupId>
>> >            <artifactId>junit</artifactId>
>> >            <version>4.0</version>
>> >            <scope>test</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>org.hibernate</groupId>
>> >            <artifactId>hibernate</artifactId>
>> >            <version>3.1.3</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>log4j</groupId>
>> >            <artifactId>log4j</artifactId>
>> >            <version>1.2.12</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>oracle.adf</groupId>
>> >            <artifactId>adf-faces-impl</artifactId>
>> >            <version>10.1.3.0.4</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>oracle.adf</groupId>
>> >            <artifactId>adf-faces-api</artifactId>
>> >            <version>10.1.3.0.4</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>oro</groupId>
>> >            <artifactId>oro</artifactId>
>> >            <version>2.0.8</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>myfaces</groupId>
>> >            <artifactId>tomahawk</artifactId>
>> >            <version>1.1.2</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>commons-configuration</groupId>
>> >            <artifactId>commons-configuration</artifactId>
>> >            <version>1.2</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>javax.mail</groupId>
>> >            <artifactId>mail</artifactId>
>> >            <version>1.4</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>org.apache.shale</groupId>
>> >            <artifactId>shale-test</artifactId>
>> >            <version>1.0.3</version>
>> >            <scope>test</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>javax.faces</groupId>
>> >            <artifactId>jsf-impl</artifactId>
>> >            <version>1.1_02</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>javax.servlet</groupId>
>> >            <artifactId>servlet-api</artifactId>
>> >            <version>2.4</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>javax.servlet.jsp</groupId>
>> >            <artifactId>jsp-api</artifactId>
>> >            <version>2.1</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>javax.servlet.jsp</groupId>
>> >            <artifactId>jsp-api</artifactId>
>> >            <version>2.0</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>javax.servlet</groupId>
>> >            <artifactId>jstl</artifactId>
>> >            <version>1.1.2</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >        <dependency>
>> >            <groupId>javax.faces</groupId>
>> >            <artifactId>jsf-api</artifactId>
>> >            <version>1.1_02</version>
>> >            <scope>compile</scope>
>> >        </dependency>
>> >    </dependencies>
>> >    <build>
>> >        <finalName>SagWeb</finalName>
>> >        <plugins>
>> >            <plugin>
>> >                <artifactId>maven-compiler-plugin</artifactId>
>> >                <configuration>
>> >                    <source>1.5</source>
>> >                    <target>1.5</target>
>> >                </configuration>
>> >            </plugin>
>> >            <plugin>
>> >                <groupId>org.mortbay.jetty</groupId>
>> >                <artifactId>maven-jetty-plugin</artifactId>
>> >            </plugin>
>> >        </plugins>
>> >    </build>
>> > </project>
>> >
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
>>
> 
> 
> -- 
> ----------
> Dudu
> GoogleTalk: eduardopichler[at]gmail[dot]com
> skype:eduardopichler
> 
> 

-- 
View this message in context: http://www.nabble.com/problems-running-project-on-jetty-tf2239041.html#a6234374
Sent from the Maven - Users forum at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: problems running project on jetty

Posted by Dudu <ed...@yahoo.com.br>.
Thanks Wayne...

the message error is not found on google :(.
I have removed all dependencies and putted again, but without sucess.
If I try with the jars on my pc, it works. I think there are a problem with
the jars on mvn repository, like calling wrong dependencies  or wrong
versions of it.


On 9/8/06, Wayne Fay <wa...@gmail.com> wrote:
>
> This seems like a JSF problem, not really a Maven issue per se.
>
> I'd send a similar email (minus the pom) to a couple JSF groups and
> see what they say about it.
>
> Also I'd try deploying your app to another app server to see if
> perhaps its simply a Jetty bug.
>
> Wayne
>
> On 9/8/06, Dudu <ed...@yahoo.com.br> wrote:
> > I don't know what to do...
> > i'm migrating my project to maven, but always happen a problem with
> > dependencies...
> > I'm using adf faces, tomahawk and Sun RI.
> > To corrige this error, I'm trying to add some libraries...
> >
> > This is the error:
> > HTTP ERROR: 500
> >
> > /sag/index.jspx(47,19) PWC6317: The attributes for a standard action
> > cannot be deferred expressions
> >
> > RequestURI=/SagWeb/sag/index.jspx
> >
> > *Powered by Jetty:// <http://jetty.mortbay.org/>*
> >
> > My index.jspx is this:
> > <?xml version='1.0' encoding='windows-1252'?>
> > <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
> >          xmlns:h="http://java.sun.com/jsf/html"
> >          xmlns:f="http://java.sun.com/jsf/core"
> >          xmlns:af="http://xmlns.oracle.com/adf/faces"
> >          xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
> >          xmlns:x="http://myfaces.apache.org/tomahawk">
> >  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
> >  <f:view>
> >    <afh:html>
> >      <f:loadBundle basename="br.com.sag.view.backing.messages"
> var="msg"/>
> >      <afh:head title="#{msg.nomeAplicacao} - #{
> usuario.currentModule.nome
> > }">
> >        <link href="../css/sag.css" rel="stylesheet" media="screen"/>
> >        <afh:script source="/js/indexCode.js"/>
> >        <afh:script source="/js/indexRefreshCondicoes.js"/>
> >      </afh:head>
> >      <afh:body id="body">
> >        <af:panelPage id="panelPage1">
> >          <f:facet name="menu2"></f:facet>
> >          <f:facet name="infoUser"></f:facet>
> >          <f:facet name="messages"></f:facet>
> >          <f:facet name="search"></f:facet>
> >          <f:facet name="actions"></f:facet>
> >          <f:facet name="brandingAppContextual">
> >            <x:jscookMenu layout="hbr" theme="ThemeOffice"
> >                          binding="#{backing_sag_index.jscookMenu1}"
> >                          id="jscookMenu1">
> >              <x:navigationMenuItems
> > binding="#{backing_sag_index.navigationMenuItems1}"
> >                                     id="navigationMenuItems1"
> >                                     value="#{backing_sag_index.menu}"/>
> >            </x:jscookMenu>
> >          </f:facet>
> >          <f:facet name="contextSwitcher"></f:facet>
> >          <f:facet name="infoFootnote"></f:facet>
> >          <f:facet name="infoReturn"></f:facet>
> >          <f:facet name="infoStatus">
> >
> >               <af:goLink  destination="#ERRO"
> >                    rendered="#{backing_sag_pohecamp2.hasErrors}"
> >                    id="vailink"
> >                   >
> >                <h:graphicImage
> >                    id="erro"
> >                    style="BORDER:0"
> >                    url="/css/images/alerta.gif"
> >                    title="#{msg.msgExisteErro}"
> >                />
> >                <h:outputText value="#{msg.msgErro}"/>
> >              </af:goLink>
> >          </f:facet>
> >          <f:facet name="infoSupplemental"></f:facet>
> >          <f:facet name="location"></f:facet>
> >          <f:facet name="menu1"></f:facet>
> >          <f:facet name="menuGlobal">
> >            <h:panelGroup>
> >              <af:outputText value="Usuário: " styleClass="x19"/>
> >              <af:outputLabel value="#{usuario.nome}" styleClass="x19"/>
> >            </h:panelGroup>
> >          </f:facet>
> >          <f:facet name="branding"></f:facet>
> >          <f:facet name="brandingApp"></f:facet>
> >          <f:facet name="appCopyright">
> >            <f:verbatim>Copyright</f:verbatim>
> >          </f:facet>
> >          <f:facet name="appPrivacy">
> >            <f:verbatim>Privacidade</f:verbatim>
> >          </f:facet>
> >          <f:facet name="appAbout">
> >            <f:verbatim>Sobre</f:verbatim>
> >          </f:facet>
> >          <f:facet name="menuSwitch">
> >            <af:form>
> >              <af:commandLink text="Trocar módulo "
> >                              shortDesc="Entrar em outro módulo do SAG"
> >                              rendered="#{usuario.codfprod == null}"
> >                              immediate="true"
> >
> > action="#{backing_sag_index.actionSwitchModule}"/>
> >              <f:verbatim>&nbsp;</f:verbatim>
> >              <af:goLink text=" Sair " shortDesc="Sair do sistema"
> >                         destination="/logoff"></af:goLink>
> >            </af:form>
> >          </f:facet>
> >          <af:form>
> >            <af:showOneTab binding="#{backing_sag_index.showOneTab}"
> > id="_detail">
> >            </af:showOneTab>
> >          </af:form>
> >          <x:div rendered="#{backing_sag_index.imageVisible}"
> > styleClass="SagTextCentered">
> >            <af:objectImage
> > source="#{backing_sag_index.IMAGE_URL}"></af:objectImage>
> >          </x:div>
> >        </af:panelPage>
> >        <f:verbatim>
> >        <a name="ERRO" />
> >        </f:verbatim>
> >        <h:messages showSummary="true" showDetail="true"
> >                    errorClass="af_messages_error"
> >                    warnClass="af_messages_message-text" layout="table"/>
> >      </afh:body>
> >    </afh:html>
> >  </f:view>
> > </jsp:root>
> >
> > And my pom.xml is this:
> > <project xmlns="http://maven.apache.org/POM/4.0.0"
> >    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> >    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> > http://maven.apache.org/maven-v4_0_0.xsd">
> >    <modelVersion>4.0.0</modelVersion>
> >    <groupId>br.com.sag</groupId>
> >    <artifactId>SagWeb</artifactId>
> >    <packaging>war</packaging>
> >    <version>1.0-SNAPSHOT</version>
> >    <name>Maven Webapp Archetype</name>
> >    <url>http://maven.apache.org</url>
> >    <dependencies>
> >        <dependency>
> >            <groupId>junit</groupId>
> >            <artifactId>junit</artifactId>
> >            <version>4.0</version>
> >            <scope>test</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>org.hibernate</groupId>
> >            <artifactId>hibernate</artifactId>
> >            <version>3.1.3</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>log4j</groupId>
> >            <artifactId>log4j</artifactId>
> >            <version>1.2.12</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>oracle.adf</groupId>
> >            <artifactId>adf-faces-impl</artifactId>
> >            <version>10.1.3.0.4</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>oracle.adf</groupId>
> >            <artifactId>adf-faces-api</artifactId>
> >            <version>10.1.3.0.4</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>oro</groupId>
> >            <artifactId>oro</artifactId>
> >            <version>2.0.8</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>myfaces</groupId>
> >            <artifactId>tomahawk</artifactId>
> >            <version>1.1.2</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>commons-configuration</groupId>
> >            <artifactId>commons-configuration</artifactId>
> >            <version>1.2</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>javax.mail</groupId>
> >            <artifactId>mail</artifactId>
> >            <version>1.4</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>org.apache.shale</groupId>
> >            <artifactId>shale-test</artifactId>
> >            <version>1.0.3</version>
> >            <scope>test</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>javax.faces</groupId>
> >            <artifactId>jsf-impl</artifactId>
> >            <version>1.1_02</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>javax.servlet</groupId>
> >            <artifactId>servlet-api</artifactId>
> >            <version>2.4</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>javax.servlet.jsp</groupId>
> >            <artifactId>jsp-api</artifactId>
> >            <version>2.1</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>javax.servlet.jsp</groupId>
> >            <artifactId>jsp-api</artifactId>
> >            <version>2.0</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>javax.servlet</groupId>
> >            <artifactId>jstl</artifactId>
> >            <version>1.1.2</version>
> >            <scope>compile</scope>
> >        </dependency>
> >        <dependency>
> >            <groupId>javax.faces</groupId>
> >            <artifactId>jsf-api</artifactId>
> >            <version>1.1_02</version>
> >            <scope>compile</scope>
> >        </dependency>
> >    </dependencies>
> >    <build>
> >        <finalName>SagWeb</finalName>
> >        <plugins>
> >            <plugin>
> >                <artifactId>maven-compiler-plugin</artifactId>
> >                <configuration>
> >                    <source>1.5</source>
> >                    <target>1.5</target>
> >                </configuration>
> >            </plugin>
> >            <plugin>
> >                <groupId>org.mortbay.jetty</groupId>
> >                <artifactId>maven-jetty-plugin</artifactId>
> >            </plugin>
> >        </plugins>
> >    </build>
> > </project>
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>


-- 
----------
Dudu
GoogleTalk: eduardopichler[at]gmail[dot]com
skype:eduardopichler

Re: problems running project on jetty

Posted by Wayne Fay <wa...@gmail.com>.
This seems like a JSF problem, not really a Maven issue per se.

I'd send a similar email (minus the pom) to a couple JSF groups and
see what they say about it.

Also I'd try deploying your app to another app server to see if
perhaps its simply a Jetty bug.

Wayne

On 9/8/06, Dudu <ed...@yahoo.com.br> wrote:
> I don't know what to do...
> i'm migrating my project to maven, but always happen a problem with
> dependencies...
> I'm using adf faces, tomahawk and Sun RI.
> To corrige this error, I'm trying to add some libraries...
>
> This is the error:
> HTTP ERROR: 500
>
> /sag/index.jspx(47,19) PWC6317: The attributes for a standard action
> cannot be deferred expressions
>
> RequestURI=/SagWeb/sag/index.jspx
>
> *Powered by Jetty:// <http://jetty.mortbay.org/>*
>
> My index.jspx is this:
> <?xml version='1.0' encoding='windows-1252'?>
> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
>          xmlns:h="http://java.sun.com/jsf/html"
>          xmlns:f="http://java.sun.com/jsf/core"
>          xmlns:af="http://xmlns.oracle.com/adf/faces"
>          xmlns:afh="http://xmlns.oracle.com/adf/faces/html"
>          xmlns:x="http://myfaces.apache.org/tomahawk">
>  <jsp:directive.page contentType="text/html;charset=windows-1252"/>
>  <f:view>
>    <afh:html>
>      <f:loadBundle basename="br.com.sag.view.backing.messages" var="msg"/>
>      <afh:head title="#{msg.nomeAplicacao} - #{usuario.currentModule.nome
> }">
>        <link href="../css/sag.css" rel="stylesheet" media="screen"/>
>        <afh:script source="/js/indexCode.js"/>
>        <afh:script source="/js/indexRefreshCondicoes.js"/>
>      </afh:head>
>      <afh:body id="body">
>        <af:panelPage id="panelPage1">
>          <f:facet name="menu2"></f:facet>
>          <f:facet name="infoUser"></f:facet>
>          <f:facet name="messages"></f:facet>
>          <f:facet name="search"></f:facet>
>          <f:facet name="actions"></f:facet>
>          <f:facet name="brandingAppContextual">
>            <x:jscookMenu layout="hbr" theme="ThemeOffice"
>                          binding="#{backing_sag_index.jscookMenu1}"
>                          id="jscookMenu1">
>              <x:navigationMenuItems
> binding="#{backing_sag_index.navigationMenuItems1}"
>                                     id="navigationMenuItems1"
>                                     value="#{backing_sag_index.menu}"/>
>            </x:jscookMenu>
>          </f:facet>
>          <f:facet name="contextSwitcher"></f:facet>
>          <f:facet name="infoFootnote"></f:facet>
>          <f:facet name="infoReturn"></f:facet>
>          <f:facet name="infoStatus">
>
>               <af:goLink  destination="#ERRO"
>                    rendered="#{backing_sag_pohecamp2.hasErrors}"
>                    id="vailink"
>                   >
>                <h:graphicImage
>                    id="erro"
>                    style="BORDER:0"
>                    url="/css/images/alerta.gif"
>                    title="#{msg.msgExisteErro}"
>                />
>                <h:outputText value="#{msg.msgErro}"/>
>              </af:goLink>
>          </f:facet>
>          <f:facet name="infoSupplemental"></f:facet>
>          <f:facet name="location"></f:facet>
>          <f:facet name="menu1"></f:facet>
>          <f:facet name="menuGlobal">
>            <h:panelGroup>
>              <af:outputText value="Usuário: " styleClass="x19"/>
>              <af:outputLabel value="#{usuario.nome}" styleClass="x19"/>
>            </h:panelGroup>
>          </f:facet>
>          <f:facet name="branding"></f:facet>
>          <f:facet name="brandingApp"></f:facet>
>          <f:facet name="appCopyright">
>            <f:verbatim>Copyright</f:verbatim>
>          </f:facet>
>          <f:facet name="appPrivacy">
>            <f:verbatim>Privacidade</f:verbatim>
>          </f:facet>
>          <f:facet name="appAbout">
>            <f:verbatim>Sobre</f:verbatim>
>          </f:facet>
>          <f:facet name="menuSwitch">
>            <af:form>
>              <af:commandLink text="Trocar módulo "
>                              shortDesc="Entrar em outro módulo do SAG"
>                              rendered="#{usuario.codfprod == null}"
>                              immediate="true"
>
> action="#{backing_sag_index.actionSwitchModule}"/>
>              <f:verbatim>&nbsp;</f:verbatim>
>              <af:goLink text=" Sair " shortDesc="Sair do sistema"
>                         destination="/logoff"></af:goLink>
>            </af:form>
>          </f:facet>
>          <af:form>
>            <af:showOneTab binding="#{backing_sag_index.showOneTab}"
> id="_detail">
>            </af:showOneTab>
>          </af:form>
>          <x:div rendered="#{backing_sag_index.imageVisible}"
> styleClass="SagTextCentered">
>            <af:objectImage
> source="#{backing_sag_index.IMAGE_URL}"></af:objectImage>
>          </x:div>
>        </af:panelPage>
>        <f:verbatim>
>        <a name="ERRO" />
>        </f:verbatim>
>        <h:messages showSummary="true" showDetail="true"
>                    errorClass="af_messages_error"
>                    warnClass="af_messages_message-text" layout="table"/>
>      </afh:body>
>    </afh:html>
>  </f:view>
> </jsp:root>
>
> And my pom.xml is this:
> <project xmlns="http://maven.apache.org/POM/4.0.0"
>    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
> http://maven.apache.org/maven-v4_0_0.xsd">
>    <modelVersion>4.0.0</modelVersion>
>    <groupId>br.com.sag</groupId>
>    <artifactId>SagWeb</artifactId>
>    <packaging>war</packaging>
>    <version>1.0-SNAPSHOT</version>
>    <name>Maven Webapp Archetype</name>
>    <url>http://maven.apache.org</url>
>    <dependencies>
>        <dependency>
>            <groupId>junit</groupId>
>            <artifactId>junit</artifactId>
>            <version>4.0</version>
>            <scope>test</scope>
>        </dependency>
>        <dependency>
>            <groupId>org.hibernate</groupId>
>            <artifactId>hibernate</artifactId>
>            <version>3.1.3</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>log4j</groupId>
>            <artifactId>log4j</artifactId>
>            <version>1.2.12</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>oracle.adf</groupId>
>            <artifactId>adf-faces-impl</artifactId>
>            <version>10.1.3.0.4</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>oracle.adf</groupId>
>            <artifactId>adf-faces-api</artifactId>
>            <version>10.1.3.0.4</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>oro</groupId>
>            <artifactId>oro</artifactId>
>            <version>2.0.8</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>myfaces</groupId>
>            <artifactId>tomahawk</artifactId>
>            <version>1.1.2</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>commons-configuration</groupId>
>            <artifactId>commons-configuration</artifactId>
>            <version>1.2</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>javax.mail</groupId>
>            <artifactId>mail</artifactId>
>            <version>1.4</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>org.apache.shale</groupId>
>            <artifactId>shale-test</artifactId>
>            <version>1.0.3</version>
>            <scope>test</scope>
>        </dependency>
>        <dependency>
>            <groupId>javax.faces</groupId>
>            <artifactId>jsf-impl</artifactId>
>            <version>1.1_02</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>javax.servlet</groupId>
>            <artifactId>servlet-api</artifactId>
>            <version>2.4</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>javax.servlet.jsp</groupId>
>            <artifactId>jsp-api</artifactId>
>            <version>2.1</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>javax.servlet.jsp</groupId>
>            <artifactId>jsp-api</artifactId>
>            <version>2.0</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>javax.servlet</groupId>
>            <artifactId>jstl</artifactId>
>            <version>1.1.2</version>
>            <scope>compile</scope>
>        </dependency>
>        <dependency>
>            <groupId>javax.faces</groupId>
>            <artifactId>jsf-api</artifactId>
>            <version>1.1_02</version>
>            <scope>compile</scope>
>        </dependency>
>    </dependencies>
>    <build>
>        <finalName>SagWeb</finalName>
>        <plugins>
>            <plugin>
>                <artifactId>maven-compiler-plugin</artifactId>
>                <configuration>
>                    <source>1.5</source>
>                    <target>1.5</target>
>                </configuration>
>            </plugin>
>            <plugin>
>                <groupId>org.mortbay.jetty</groupId>
>                <artifactId>maven-jetty-plugin</artifactId>
>            </plugin>
>        </plugins>
>    </build>
> </project>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org