[OFBiz] Users - Help me - [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
8 messages Options
Reply | Threaded
Open this post in threaded view
|

[OFBiz] Users - Help me - [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found

Vinicius Nadai
Dear all,

I am having a problem. When I click in menu of my application is send a request with the name  GestaoFrota to controller.xml, but this no is found. And is shown a page white, without error.

My file controller.xml

    <request-map uri="GestaoFrota">
        <security https="false" auth="true"/>
        <response name="success" type="view" value="EditarVeiculo"/>
    </request-map>

    <view-map name="EditarVeiculo" page="/gestaofrota/veiculo/EditarVeiculo.jsp"/>


I am not using FTL files nor Screen files. I am trying to use JSP files.




What it is happening?



Log file:

603598[     RequestHandler.java:208:INFO ] [Processing Request]: GestaoFrota
603640[     RequestManager.java:123:INFO ] [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found
603668[     RequestHandler.java:352:INFO ] [RequestHandler.doRequest]: Response is a view.
603724[     RequestHandler.java:486:INFO ] servletName=control, view=EditarVeiculo


Thanks,

Vinicius Nadai

 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users
Reply | Threaded
Open this post in threaded view
|

Re: [OFBiz] Users - Help me - [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found

Vinicius Nadai
I am needing very the you aid. I do not know more what to make.

Help me!


Vinicius Nadai wrote:
Dear all,

I am having a problem. When I click in menu of my application is send a request with the name  GestaoFrota to controller.xml, but this no is found. And is shown a page white, without error.

My file controller.xml

    <request-map uri="GestaoFrota">
        <security https="false" auth="true"/>
        <response name="success" type="view" value="EditarVeiculo"/>
    </request-map>

    <view-map name="EditarVeiculo" page="/gestaofrota/veiculo/EditarVeiculo.jsp"/>


I am not using FTL files nor Screen files. I am trying to use JSP files.




What it is happening?



Log file:

603598[     RequestHandler.java:208:INFO ] [Processing Request]: GestaoFrota
603640[     RequestManager.java:123:INFO ] [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found
603668[     RequestHandler.java:352:INFO ] [RequestHandler.doRequest]: Response is a view.
603724[     RequestHandler.java:486:INFO ] servletName=control, view=EditarVeiculo


Thanks,

Vinicius Nadai

_______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users


 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users
Reply | Threaded
Open this post in threaded view
|

Re: [OFBiz] Users - Help me - [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found

Hans Bakker
On Wednesday 17 August 2005 22:01, Vinicius Nadai wrote:

>  I am needing very the you aid. I do not know more what to make.
>
>  Help me!
>
>
>      <request-map uri="GestaoFrota">
>          <security https="false" auth="true"/>
>          <response name="success" type="view" value="EditarVeiculo"/>
>      </request-map>
>
>      <view-map name="EditarVeiculo"
> page="/gestaofrota/veiculo/EditarVeiculo.jsp"/>
>
so you are sure you have a

/ofbiz/hot-deploy/your-app/webapp/your-webapp/gestaofrota/veiculo/EditarVeiculo.jsp"

file?

replace "your-*" with the names you have in your system.....

for an example of using jsp files look in the

/ofbiz/framework/webtools/webapp/webtools/WEB-INF/controller.xml file

--
Regards,
Hans Bakker
ANT Websystems Co.,Ltd (http://www.antwebsystems.com)

If you want to verify that this message really originates from
from the above person, download the public key from:
http://www.antwebsystems.com/hbakkerAntwebsystems.asc

 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users

attachment0 (196 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: [OFBiz] Users - Help me - [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found

Vinicius Nadai
Hi Hans,

My application isn't in directory hot-deploy and yes in directory specialized, so:

ofbiz/specialized/tms/gestaofrota/webapp/gestaofrota/veiculo/EditarVeiculo.jsp


and my controller.xml file is equals to controller.xml the webtools application.

Do you have a other sugestion?

Thanks

Hans Bakker wrote:
On Wednesday 17 August 2005 22:01, Vinicius Nadai wrote:
  
 I am needing very the you aid. I do not know more what to make.

 Help me!


     <request-map uri="GestaoFrota">
         <security https="false" auth="true"/>
         <response name="success" type="view" value="EditarVeiculo"/>
     </request-map>

     <view-map name="EditarVeiculo"
page="/gestaofrota/veiculo/EditarVeiculo.jsp"/>

    

so you are sure you have a 

/ofbiz/hot-deploy/your-app/webapp/your-webapp/gestaofrota/veiculo/EditarVeiculo.jsp"

file?

replace "your-*" with the names you have in your system.....

for an example of using jsp files look in the

/ofbiz/framework/webtools/webapp/webtools/WEB-INF/controller.xml file

  

_______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users


 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users
Reply | Threaded
Open this post in threaded view
|

Re: [OFBiz] Users - Help me - [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found

Hans Bakker
Hi Vinicius,

You did setup your tms application in a similar way as
the /application/example component?

what request are you sending to the system?

to make your component known to the system your need to configure a number a
files:
what is the content of your tms/ofbiz-component.xml?
what is the content of:  specialized/component-load.xml file?
what is your directory structure....similar as the example component?

regards,
Hans

On Wednesday 17 August 2005 23:05, Vinicius Nadai wrote:

>  Hi Hans,
>
>  My application isn't in directory hot-deploy and yes in directory
> specialized, so:
>
>
> ofbiz/specialized/tms/gestaofrota/webapp/gestaofrota/veiculo/EditarVeiculo.
>jsp
>
>
>  and my controller.xml file is equals to controller.xml the webtools
> application.
>
>  Do you have a other sugestion?
>
>  Thanks
>
>  Hans Bakker wrote:
> On Wednesday 17 August 2005 22:01, Vinicius Nadai wrote:
>
>  I am needing very the you aid. I do not know more what to make.
>
>  Help me!
>
>
>      <request-map uri="GestaoFrota">
>          <security https="false" auth="true"/>
>          <response name="success" type="view" value="EditarVeiculo"/>
>      </request-map>
>
>      <view-map name="EditarVeiculo"
> page="/gestaofrota/veiculo/EditarVeiculo.jsp"/>
>
>
> so you are sure you have a
>
> /ofbiz/hot-deploy/your-app/webapp/your-webapp/gestaofrota/veiculo/EditarVei
>culo.jsp"
>
> file?
>
> replace "your-*" with the names you have in your system.....
>
> for an example of using jsp files look in the
>
> /ofbiz/framework/webtools/webapp/webtools/WEB-INF/controller.xml file
>
>
>
>
> _______________________________________________
> Users mailing list
> [hidden email]
> http://lists.ofbiz.org/mailman/listinfo/users
--
Regards,
Hans Bakker
ANT Websystems Co.,Ltd (http://www.antwebsystems.com)

If you want to verify that this message really originates from
from the above person, download the public key from:
http://www.antwebsystems.com/hbakkerAntwebsystems.asc

 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users

attachment0 (196 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: [OFBiz] Users - Help me - [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found

David E. Jones
In reply to this post by Vinicius Nadai

There are probably other errors in the log, or something causing  
nothing to be rendered (or something bad to be rendered, try doing a  
View Source in the browser to see what came out).

The log message you highlighted happens all the time and is an INFO  
message, not an ERROR or even a WARNING message, and it wouldn't  
cause that to happen (ie phantom cause).

-David


On Aug 17, 2005, at 7:26 AM, Vinicius Nadai wrote:

> Dear all,
>
> I am having a problem. When I click in menu of my application is  
> send a request with the name  GestaoFrota to controller.xml, but  
> this no is found. And is shown a page white, without error.
>
> My file controller.xml
>
>     <request-map uri="GestaoFrota">
>         <security https="false" auth="true"/>
>         <response name="success" type="view" value="EditarVeiculo"/>
>     </request-map>
>
>     <view-map name="EditarVeiculo" page="/gestaofrota/veiculo/
> EditarVeiculo.jsp"/>
>
>
> I am not using FTL files nor Screen files. I am trying to use JSP  
> files.
>
>
>
>
> What it is happening?
>
>
>
> Log file:
>
> 603598[     RequestHandler.java:208:INFO ] [Processing Request]:  
> GestaoFrota
> 603640[     RequestManager.java:123:INFO ]  
> [RequestManager.getRequestAttribute] Value for attribute "null" of  
> uri "GestaoFrota" not found
> 603668[     RequestHandler.java:352:INFO ]  
> [RequestHandler.doRequest]: Response is a view.
> 603724[     RequestHandler.java:486:INFO ] servletName=control,  
> view=EditarVeiculo
>
>
> Thanks,
>
> Vinicius Nadai
>
> _______________________________________________
> Users mailing list
> [hidden email]
> http://lists.ofbiz.org/mailman/listinfo/users

 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users

smime.p7s (3K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: [OFBiz] Users - Help me - [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found

Vinicius Nadai
In reply to this post by Hans Bakker
Hi Hans,

I analyzed all application of example that you said and she also it gives to the error of "null uri".But functioned. Then this error must be common. I finished discovering that the structure of directories was bad.

Now it comes the new obstacle: JSP in the OFbiz... Comes much difficulty for there..... Hehehe.

Thanks very much Hans, but very much.

Vinicius



Hans Bakker wrote:
Hi Vinicius,

You did setup your tms application in a similar way as 
the /application/example component?

what request are you sending to the system?

to make your component known to the system your need to configure a number a 
files:
what is the content of your tms/ofbiz-component.xml?
what is the content of:  specialized/component-load.xml file?
what is your directory structure....similar as the example component?

regards,
Hans

On Wednesday 17 August 2005 23:05, Vinicius Nadai wrote:
  
 Hi Hans,

 My application isn't in directory hot-deploy and yes in directory
specialized, so:


ofbiz/specialized/tms/gestaofrota/webapp/gestaofrota/veiculo/EditarVeiculo.
jsp


 and my controller.xml file is equals to controller.xml the webtools
application.

 Do you have a other sugestion?

 Thanks

 Hans Bakker wrote:
On Wednesday 17 August 2005 22:01, Vinicius Nadai wrote:

 I am needing very the you aid. I do not know more what to make.

 Help me!


     <request-map uri="GestaoFrota">
         <security https="false" auth="true"/>
         <response name="success" type="view" value="EditarVeiculo"/>
     </request-map>

     <view-map name="EditarVeiculo"
page="/gestaofrota/veiculo/EditarVeiculo.jsp"/>


so you are sure you have a

/ofbiz/hot-deploy/your-app/webapp/your-webapp/gestaofrota/veiculo/EditarVei
culo.jsp"

file?

replace "your-*" with the names you have in your system.....

for an example of using jsp files look in the

/ofbiz/framework/webtools/webapp/webtools/WEB-INF/controller.xml file




_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users
    

  

_______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users


 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users
Reply | Threaded
Open this post in threaded view
|

Re: [OFBiz] Users - Help me - [RequestManager.getRequestAttribute] Value for attribute "null" of uri "GestaoFrota" not found

Vinicius Nadai
In reply to this post by David E. Jones
Hi David,

I look that the error is commom. But already discovery the problem that was giving.

Thanks,

Vinicius

David E. Jones wrote:

There are probably other errors in the log, or something causing  nothing to be rendered (or something bad to be rendered, try doing a  View Source in the browser to see what came out).

The log message you highlighted happens all the time and is an INFO  message, not an ERROR or even a WARNING message, and it wouldn't  cause that to happen (ie phantom cause).

-David


On Aug 17, 2005, at 7:26 AM, Vinicius Nadai wrote:

Dear all,

I am having a problem. When I click in menu of my application is  send a request with the name  GestaoFrota to controller.xml, but  this no is found. And is shown a page white, without error.

My file controller.xml

    <request-map uri="GestaoFrota">
        <security https="false" auth="true"/>
        <response name="success" type="view" value="EditarVeiculo"/>
    </request-map>

    <view-map name="EditarVeiculo" page="/gestaofrota/veiculo/ EditarVeiculo.jsp"/>


I am not using FTL files nor Screen files. I am trying to use JSP  files.




What it is happening?



Log file:

603598[     RequestHandler.java:208:INFO ] [Processing Request]:  GestaoFrota
603640[     RequestManager.java:123:INFO ]  [RequestManager.getRequestAttribute] Value for attribute "null" of  uri "GestaoFrota" not found
603668[     RequestHandler.java:352:INFO ]  [RequestHandler.doRequest]: Response is a view.
603724[     RequestHandler.java:486:INFO ] servletName=control,  view=EditarVeiculo


Thanks,

Vinicius Nadai

_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users


_______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users


 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users