Usability Issues

classic Classic list List threaded Threaded
18 messages Options
Reply | Threaded
Open this post in threaded view
|

Usability Issues

Merin Shaji
Hi,

I have a few issues with the page view in OPS:

1) How can I set the focus on a particular text box when the page loads? Can I use any xforms event for this?

2) Normally when I enter some values in the text box and press the Enter key, the form gets submitted. This does not happen in OPS. Here I have to press the Tab key to bring control to the submit button and then press Enter key. Is there a way to do it the other way?

These are crucial usability issues. Could some one please suggest a solution for this?

Thanks & Regards
Merin



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

RE: Usability Issues

Ryan Puddephatt
Hi Merin

>Hi,
>
>I have a few issues with the page view in OPS:
>
>1) How can I set the focus on a particular text box when the page loads?
Can I use any xforms event for this?
>
You can do the following in your xforms:model

<xforms:setfocus control="id_of_control" ev:event="xforms-ready"/>

>2) Normally when I enter some values in the text box and press the Enter
key, the form gets submitted. This does not happen in OPS. Here I have to
press the Tab key to bring control to the submit button and then press Enter
key. Is there a way to do it the other way?

This should happen, I don't think OPS change anything to stop that

>These are crucial usability issues. Could some one please suggest a
solution for this?

Ryan Puddephatt
Software Engineer

Teleflex Group - IT UK
1 Michaelson Square
Livingston
West Lothian
Scotland
EH54 7DP

e> [hidden email]
t> +44(0)1506 407 110
f> +44(0)1506 407 108




--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

RE: Usability Issues

Mee, Laurence
In reply to this post by Merin Shaji
Hi.

I also am seeing this issue.
I did think it was because I was using an <xforms:trigger> to generate
the button, but when I switched to an <xforms:submit> it still didn't
submit unless it had the focus.
I believe that any input box that has the focus swallows the event
preventing it from triggering the submit.

Laurence Mee
Product Manager - Information Solutions Consultancy
Intelligent Transport Systems
Atkins Highways and Transportation

Woodcote Grove, Ashley Road, EPSOM, KT18 5BW, UK.
Tel: +44 (0)1372 750000
Fax: +44 (0)1372 750000
E-mail: [hidden email]
www.atkinsglobal.com/its

-----Original Message-----
From: Ryan Puddephatt [mailto:[hidden email]]
Sent: 19 July 2006 13:48
To: [hidden email]
Subject: RE: [ops-users] Usability Issues

Hi Merin

>Hi,
>
>I have a few issues with the page view in OPS:
>
>1) How can I set the focus on a particular text box when the page
loads?
Can I use any xforms event for this?
>
You can do the following in your xforms:model

<xforms:setfocus control="id_of_control" ev:event="xforms-ready"/>

>2) Normally when I enter some values in the text box and press the
>Enter
key, the form gets submitted. This does not happen in OPS. Here I have
to press the Tab key to bring control to the submit button and then
press Enter key. Is there a way to do it the other way?

This should happen, I don't think OPS change anything to stop that

>These are crucial usability issues. Could some one please suggest a
solution for this?

Ryan Puddephatt
Software Engineer

Teleflex Group - IT UK
1 Michaelson Square
Livingston
West Lothian
Scotland
EH54 7DP

e> [hidden email]
t> +44(0)1506 407 110
f> +44(0)1506 407 108




This message has been scanned for viruses by MailControl - (see
http://bluepages.wsatkins.co.uk/?4318150)


This email and any attached files are confidential and copyright protected. If you are not the addressee, any dissemination of this communication is strictly prohibited. Unless otherwise expressly agreed in writing, nothing stated in this communication shall be legally binding.



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Erik Bruchez
Administrator
In reply to this post by Merin Shaji
Merin,

 > I have a few issues with the page view in OPS:
 >
 > 1) How can I set the focus on a particular text box when the page
 >    loads? Can I use any xforms event for this?

See the answer suggested in this thread. If that doesn't work, let us
know.

 > 2) Normally when I enter some values in the text box and press the
 >    Enter key, the form gets submitted. This does not happen in
 >    OPS. Here I have to press the Tab key to bring control to the
 >    submit button and then press Enter key. Is there a way to do it
 >    the other way?

Nothing easier with XForms: do something like:

<xforms:input ...>
   <xforms:label>...</xforms:label>
   <xforms:send ev:event="DOMActivate" submission="my-submission"/>
</xforms:input>

Note that it doesn't make much sense for such a behavior to be the
default: some people want it, some not, and with XForms you can have
100 different submission if you want, so I think the explicit way with
DOMActivate / send is quite good.

-Erik

--
Orbeon - XForms Everywhere:
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Merin Shaji
In reply to this post by Ryan Puddephatt
Hi,
 
I tried to run the attached sample page and setFocus is not working in it. Please review this page.
 
I tried it this way also:

<xforms:action

ev:event="xforms-ready">

      <xforms:setfocus control="user-name"/>

</xforms:action>
Still it did not work.
 
Thanks & Regards
Merin

 
On 7/19/06, Ryan Puddephatt <[hidden email]> wrote:
Hi Merin

>Hi,
>
>I have a few issues with the page view in OPS:
>
>1) How can I set the focus on a particular text box when the page loads?
Can I use any xforms event for this?
>
You can do the following in your xforms:model

<xforms:setfocus control="id_of_control" ev:event="xforms-ready"/>

>2) Normally when I enter some values in the text box and press the Enter
key, the form gets submitted. This does not happen in OPS. Here I have to
press the Tab key to bring control to the submit button and then press Enter
key. Is there a way to do it the other way?

This should happen, I don't think OPS change anything to stop that

>These are crucial usability issues. Could some one please suggest a
solution for this?

Ryan Puddephatt
Software Engineer

Teleflex Group - IT UK
1 Michaelson Square
Livingston
West Lothian
Scotland
EH54 7DP

e> [hidden email]
t> +44(0)1506 407 110
f> +44(0)1506 407 108





--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto: [hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws





--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

sample.xhtml (2K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Erik Bruchez
Administrator
Merin,

It turns out that this is a bug. We are fixing it ASAP, in fact the
server-side code is already fixed and it should be a matter of minutes
for Alex to fix up the client-side code.

-Erik

Merin Shaji wrote:

> Hi,
>  
> I tried to run the attached sample page and setFocus is not working in
> it. Please review this page.
>  
> I tried it this way also:
>
> <xforms:action
>
> ev:event="xforms-ready">
>
>       <xforms:setfocus control="user-name"/>
>
> </xforms:action>
> Still it did not work.
>  
> Thanks & Regards
> Merin
>
>  
> On 7/19/06, *Ryan Puddephatt* <[hidden email]
> <mailto:[hidden email]>> wrote:
>
>     Hi Merin
>
>      >Hi,
>      >
>      >I have a few issues with the page view in OPS:
>      >
>      >1) How can I set the focus on a particular text box when the page
>     loads?
>     Can I use any xforms event for this?
>      >
>     You can do the following in your xforms:model
>
>     <xforms:setfocus control="id_of_control" ev:event="xforms-ready"/>
>
>      >2) Normally when I enter some values in the text box and press the
>     Enter
>     key, the form gets submitted. This does not happen in OPS. Here I
>     have to
>     press the Tab key to bring control to the submit button and then
>     press Enter
>     key. Is there a way to do it the other way?
>
>     This should happen, I don't think OPS change anything to stop that
>
>      >These are crucial usability issues. Could some one please suggest a
>     solution for this?
>
>     Ryan Puddephatt
>     Software Engineer
>
>     Teleflex Group - IT UK
>     1 Michaelson Square
>     Livingston
>     West Lothian
>     Scotland
>     EH54 7DP
>
>     e> [hidden email] <mailto:[hidden email]>
>     t> +44(0)1506 407 110
>     f> +44(0)1506 407 108
>
>
>
>
>
>     --
>     You receive this message as a subscriber of the
>     [hidden email] <mailto:[hidden email]> mailing list.
>     To unsubscribe: mailto:[hidden email]
>     <mailto:[hidden email]>
>     For general help: mailto: [hidden email]
>     <mailto:[hidden email]>?subject=help
>     ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws

--
Orbeon - XForms Everywhere:
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Merin Shaji
 
Thanks Erik for your timely reply.
 
Meanwhile, I am facing some other issues.
 
1) The xforms:alert message is not getting displayed in my page when the constraint is violated. Is there an issue like this now? Can I get a solution for this by copying some script file from the latest nightly builds?
 
2) Is there a way to include blank space checking in the constraints? Something like constraint="string-length(trim(.))>0"

Many Thanks
Merin

 
On 7/20/06, Erik Bruchez <[hidden email]> wrote:
Merin,

It turns out that this is a bug. We are fixing it ASAP, in fact the
server-side code is already fixed and it should be a matter of minutes
for Alex to fix up the client-side code.

-Erik

Merin Shaji wrote:
> Hi,
>
> I tried to run the attached sample page and setFocus is not working in
> it. Please review this page.
>

> I tried it this way also:
>
> <xforms:action
>
> ev:event="xforms-ready">
>
>       <xforms:setfocus control="user-name"/>
>
> </xforms:action>
> Still it did not work.
>
> Thanks & Regards
> Merin
>
>
> On 7/19/06, *Ryan Puddephatt* <[hidden email]
> <mailto: [hidden email]>> wrote:
>
>     Hi Merin
>
>      >Hi,
>      >
>      >I have a few issues with the page view in OPS:
>      >
>      >1) How can I set the focus on a particular text box when the page
>     loads?
>     Can I use any xforms event for this?
>      >
>     You can do the following in your xforms:model
>
>     <xforms:setfocus control="id_of_control" ev:event="xforms-ready"/>
>
>      >2) Normally when I enter some values in the text box and press the
>     Enter
>     key, the form gets submitted. This does not happen in OPS. Here I
>     have to
>     press the Tab key to bring control to the submit button and then
>     press Enter
>     key. Is there a way to do it the other way?
>
>     This should happen, I don't think OPS change anything to stop that
>
>      >These are crucial usability issues. Could some one please suggest a
>     solution for this?
>
>     Ryan Puddephatt
>     Software Engineer
>
>     Teleflex Group - IT UK
>     1 Michaelson Square
>     Livingston
>     West Lothian
>     Scotland
>     EH54 7DP
>

>     e> [hidden email] <mailto:[hidden email]>
>     t> +44(0)1506 407 110
>     f> +44(0)1506 407 108
>
>
>
>
>
>     --
>     You receive this message as a subscriber of the
>     [hidden email] <mailto:[hidden email]> mailing list.
>     To unsubscribe: mailto:[hidden email]
>     <mailto:[hidden email]>
>     For general help: mailto: [hidden email]
>     <mailto:[hidden email]>?subject=help
>     ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>
>
> ------------------------------------------------------------------------
>
>
> --
> You receive this message as a subscriber of the [hidden email] mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws


--
Orbeon - XForms Everywhere:
http://www.orbeon.com/blog/




--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto: [hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws





--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Erik Bruchez
Administrator
Merin,

 > 1) The xforms:alert message is not getting displayed in my page when
 > the constraint is violated. Is there an issue like this now? Can I
 > get a solution for this by copying some script file from the latest
 > nightly builds?

I am not sure if there is such an issue. To get the latest code, you
have to get everthing: JAR files, scripts, etc. We are working on
making it easier to upgrade for 3.1.

Currently, errors simply show as red icons, with the alert text
appearing when you hover over the icon, but we are going to have
customizable error summaries as well really soon (1-2 weeks).

 > 2) Is there a way to include blank space checking in the
 > constraints?  Something like *constraint="string-length(trim(.))>0"*

Sure:

   constraint="string-length(normalize-space(.)) > 0"

-Erik

 >
 > Many Thanks
 > Merin
 >
 >
 > On 7/20/06, *Erik Bruchez* <[hidden email]
 > <mailto:[hidden email]>> wrote:
 >
 >     Merin,
 >
 >     It turns out that this is a bug. We are fixing it ASAP, in fact the
 >     server-side code is already fixed and it should be a matter of
minutes
 >     for Alex to fix up the client-side code.
 >
 >     -Erik
 >
 >     Merin Shaji wrote:
 >      > Hi,
 >      >
 >      > I tried to run the attached sample page and setFocus is not
 >     working in
 >      > it. Please review this page.
 >      >
 >      > I tried it this way also:
 >      >
 >      > <xforms:action
 >      >
 >      > ev:event="xforms-ready">
 >      >
 >      >       <xforms:setfocus control="user-name"/>
 >      >
 >      > </xforms:action>
 >      > Still it did not work.
 >      >
 >      > Thanks & Regards
 >      > Merin
 >      >
 >      >
 >      > On 7/19/06, *Ryan Puddephatt* <[hidden email]
 >     <mailto:[hidden email]>
 >      > <mailto: [hidden email]
 >     <mailto:[hidden email]>>> wrote:
 >      >
 >      >     Hi Merin
 >      >
 >      >      >Hi,
 >      >      >
 >      >      >I have a few issues with the page view in OPS:
 >      >      >
 >      >      >1) How can I set the focus on a particular text box when
 >     the page
 >      >     loads?
 >      >     Can I use any xforms event for this?
 >      >      >
 >      >     You can do the following in your xforms:model
 >      >
 >      >     <xforms:setfocus control="id_of_control"
 >     ev:event="xforms-ready"/>
 >      >
 >      >      >2) Normally when I enter some values in the text box and
 >     press the
 >      >     Enter
 >      >     key, the form gets submitted. This does not happen in OPS.
Here I
 >      >     have to
 >      >     press the Tab key to bring control to the submit button
and then
 >      >     press Enter
 >      >     key. Is there a way to do it the other way?
 >      >
 >      >     This should happen, I don't think OPS change anything to stop
 >     that
 >      >
 >      >      >These are crucial usability issues. Could some one please
 >     suggest a
 >      >     solution for this?
 >      >
 >      >     Ryan Puddephatt
 >      >     Software Engineer
 >      >
 >      >     Teleflex Group - IT UK
 >      >     1 Michaelson Square
 >      >     Livingston
 >      >     West Lothian
 >      >     Scotland
 >      >     EH54 7DP
 >      >
 >      >     e> [hidden email] <mailto:[hidden email]>
 >     <mailto:[hidden email] <mailto:[hidden email]>>
 >      >     t> +44(0)1506 407 110
 >      >     f> +44(0)1506 407 108
 >      >
 >      >
 >      >
 >      >
 >      >
 >      >     --
 >      >     You receive this message as a subscriber of the
 >      >     [hidden email] <mailto:[hidden email]>
 >     <mailto: [hidden email] <mailto:[hidden email]>>
 >     mailing list.
 >      >     To unsubscribe: mailto:[hidden email]
 >     <mailto:[hidden email]>
 >      >     <mailto: [hidden email]
 >     <mailto:[hidden email]>>
 >      >     For general help: mailto: [hidden email]
 >     <mailto:[hidden email]>
 >      >     <mailto:[hidden email]
 >     <mailto:[hidden email]>>?subject=help
 >      >     ObjectWeb mailing lists service home page:
 >     http://www.objectweb.org/wws
 >      >
 >      >
 >      >
 >      >
 >      >
 >
------------------------------------------------------------------------
 >
 >      >
 >      >
 >      > --
 >      > You receive this message as a subscriber of the
 >     [hidden email] <mailto:[hidden email]> mailing
list.
 >      > To unsubscribe: mailto: [hidden email]
 >     <mailto:[hidden email]>
 >      > For general help: mailto:[hidden email]
 >     <mailto:[hidden email]>?subject=help
 >      > ObjectWeb mailing lists service home page:
 >     http://www.objectweb.org/wws
 >
 >
 >     --
 >     Orbeon - XForms Everywhere:
 >     http://www.orbeon.com/blog/

--
Orbeon - XForms Everywhere:
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Merin Shaji
Hi Erik,
 
Currently, errors simply show as red icons, with the alert text appearing when you hover over the icon

This is working. I never checked it that way. I thought a tool tip with the message given in the alert will be displayed when a constraint violation occurs, without the user hovering over the red icon.
 
Thanks & Regards
Merin


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Erik Bruchez
Administrator
Yup, and we are making also good progress making the tooltips appear
better, as well as making the new alert summary feature work well :-)

So stay tuned :-)

-Erik

Merin Shaji wrote:

> Hi Erik,
>  
> Currently, errors simply show as red icons, with the alert text
> appearing when you hover over the icon
>
> This is working. I never checked it that way. I thought a tool tip with
> the message given in the alert will be displayed when a constraint
> violation occurs, without the user hovering over the red icon.
>  
> Thanks & Regards
> Merin
--
Orbeon - XForms Everywhere:
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Alessandro  Vernet
Administrator
In reply to this post by Merin Shaji
On 7/19/06, Merin Shaji <[hidden email]> wrote:
> I tried it this way also:
>
> <xforms:action ev:event="xforms-ready">
>
>       <xforms:setfocus control="user-name"/>
>
> </xforms:action>
> Still it did not work.

Merin,

This is now fixed.

Alex
--
Blog (XML, Web apps, Open Source):
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
--
Follow Orbeon on Twitter: @orbeon
Follow me on Twitter: @avernet
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Merin Shaji
Alex,
 
Which all files should I copy from the nightly build to make it working?
 
Thanks & Regards
Merin

 
On 7/25/06, Alessandro Vernet <[hidden email]> wrote:
On 7/19/06, Merin Shaji <[hidden email]> wrote:
> I tried it this way also:
>
> <xforms:action ev:event="xforms-ready">
>
>       <xforms:setfocus control="user-name"/>
>
> </xforms:action>
> Still it did not work.

Merin,

This is now fixed.

Alex
--
Blog (XML, Web apps, Open Source):
http://www.orbeon.com/blog/




--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto: [hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws





--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Alessandro  Vernet
Administrator
On 7/24/06, Merin Shaji <[hidden email]> wrote:
> Which all files should I copy from the nightly build to make it working?

Merin,

This is a fix that involves both JavaScript and Java code. If you are
already using a recent nightly build, you might be able to update just
the xforms.js in the resources as well as all the jar files in
WEB-INF/lib. If you are using some of the more advanced controls (HTML
area, slider, tree, menu) you might want to wait a few more days as
those are broken in the current build. Otherwise you can give a try to
the latest builds and let us know how it works for you.

Alex
--
Blog (XML, Web apps, Open Source):
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
--
Follow Orbeon on Twitter: @orbeon
Follow me on Twitter: @avernet
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Merin Shaji

 

On 7/27/06, Alessandro Vernet <[hidden email]> wrote:
Merin,

This is a fix that involves both JavaScript and Java code. If you are
already using a recent nightly build, you might be able to update just
the xforms.js in the resources as well as all the jar files in
WEB-INF/lib. If you are using some of the more advanced controls (HTML
area, slider, tree, menu) you might want to wait a few more days as
those are broken in the current build. Otherwise you can give a try to
the latest builds and let us know how it works for you.

Alex
--

Hi Alex,

I installed a new version of the presentation server (25 July build) and integrated my application in it.

xforms:setfocus is working fine. Pressing the enter key submits the form (Earlier I had to click the button with the mouse). The "Loading" message appears at the top right on form submit.

But unlike the previous version, presentation server start up does not show the following message in the console:

2006-07-27 14:28:14,405 INFO org.orbeon.oxf.webapp.ProcessorService null - Servlet - Servlet initialized.
2006-07-27 14:28:14,483 INFO org.orbeon.oxf.webapp.ProcessorService null - Servlet - Servlet initialized.
2006-07-27 14:28:14,483 INFO org.orbeon.oxf.webapp.ProcessorService null - Servlet - About to run processor: [{<a href="http://www.orbeon.com/oxf/processors}pipeline">http://www.orbeon.com/oxf/processors}pipeline, config -> oxf:/context/servlet- initialized.xpl]
2006-07-27 14:28:14,717 INFO org.orbeon.oxf.processor.DebugProcessor null - message:
oxf:/context/servlet-initialized.xpl, line 19, column 46
<message xmlns:oxf=" http://www.orbeon.com/oxf/processors" xmlns:p="http://www.orbeon.com/oxf/pipeline">Servlet initialized.</message>
2006-07-27 14:28:14,717 INFO org.orbeon.oxf.webapp.ProcessorService null - Done running processor - Timing: 234 - Cache hits: 1, fault: 4, adds: 4, success rate: 20%
2006-07-27 14:28:14,827 INFO org.apache.struts.util.PropertyMessageResources null - Initializing, config=' org.apache.struts.util.LocalStrings', returnNull=true
2006-07-27 14:28:14,827 INFO org.apache.struts.util.PropertyMessageResources null - Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
2006-07-27 14:28:15,139 INFO org.apache.struts.util.PropertyMessageResources null - Initializing, config='org.orbeon.oxf.struts.examples.ApplicationResources', returnNull=true
2006-07-27 14:28:15,139 INFO org.apache.struts.util.PropertyMessageResources null - Initializing, config='org.orbeon.oxf.struts.examples.ApplicationResources', returnNull=true
2006-07-27 14:28:15,155 INFO org.apache.struts.validator.ValidatorPlugIn null - Loading validation rules file from '/WEB-INF/validator- rules.xml'
2006-07-27 14:28:15,233 INFO org.apache.struts.validator.ValidatorPlugIn null - Loading validation rules file from '/WEB-INF/validation.xml'
2006-07-27 14:28:15,389 INFO org.apache.struts.util.PropertyMessageResources null - Initializing, config='org.orbeon.oxf.struts.examples.ModuleResources', returnNull=true

Is it removed from the new version? Or is it some problem with my installation? I am facing some issues with my new project. The login page is getting displayed. But I can't login. I think some error is thrown when database operation is performed. I am using hibernate version 3.1. I have copied all jar files from my application to the new project(including hibernate.jar and database driver). I can't figure out whether this error is orbeon specific or related to my application.

Can you give some suggestion on what the issue might be?

Thanks & Regards
Merin



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Alessandro  Vernet
Administrator
On 7/27/06, Merin Shaji <[hidden email]> wrote:
> But unlike the previous version, presentation server start up does not show
> the following message in the console:
>
> 2006-07-27 14:28:14,405 INFO
> org.orbeon.oxf.webapp.ProcessorService null - Servlet -
> Servlet initialized.

Hi Merin,

Do you see anything related to PresentationServer in the log? You
should at least see something like:

Starting PresentationServer Release 3.0.1.200605060258
Initializing Resource Manager with: ...

> Is it removed from the new version? Or is it some problem with my
> installation? I am facing some issues with my new project. The login page is
> getting displayed. But I can't login. I think some error is thrown when
> database operation is performed. I am using hibernate version 3.1. I have
> copied all jar files from my application to the new project(including
> hibernate.jar and database driver). I can't figure out whether this error is
> orbeon specific or related to my application.

You are running OPS as a filter, right? If the XForms engine
transforming the XForms into HTML, or do you still have XForms in the
page sent to the browser?

Alex
--
Blog (XML, Web apps, Open Source):
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
--
Follow Orbeon on Twitter: @orbeon
Follow me on Twitter: @avernet
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Merin Shaji
Do you see anything related to PresentationServer in the log? You
should at least see something like:

Starting PresentationServer Release 3.0.1.200605060258
Initializing Resource Manager with: ...
 
Hi Alex,
 
I am getting the messages
 
Starting PresentationServer Release 3.0.1.200605060258
Initializing Resource Manager with: ...
in the log. Mapping for OPSServletFilter is included in web.xml. I am using web.xml of the nightly build, to which additional entries were added for running my application.
 
And for the first page (login page), XForms engine is transforming XForms to HTML.
 
In web.xml I have changed the init param (processor name) for ops-main-servlet as
oxf:/<my-application>/page-flow.xml where <my-application> is the folder under resources which I have copied from my application. If that mapping is changed to oxf:/page- flow.xml, I am getting the orbeon examples page for http://localhost:8888 and the examples are working fine.

This is the log I'm getting at server start up:
 

oxf.resources.priority.1=org.orbeon.oxf.resources.WebAppResourceManagerFactory, oxf.resources.webapp.rootdir=/WEB-INF/resources}
Jul 28, 2006 9:13:16 AM org.apache.catalina.core.ApplicationContext log
INFO: exist-rest-servlet: EXistServlet: exist.home=D:\Merin\IDE\eclipse\workspace\OPSNew\WEB-INF
Jul 28, 2006 9:13:16 AM org.apache.catalina.core.ApplicationContext log
INFO: exist-rest-servlet: reading configuration from D:\Merin\IDE\eclipse\workspace\OPSNew\WEB-INF\exist- conf.xml
IN CONFIGURE
cluster.journal.maxStore 65000
cluster.journal.shift 100
Jul 28, 2006 9:13:16 AM org.apache.catalina.core.ApplicationContext log
INFO: exist-rest-servlet: configuring eXist instance
Scanning journal  [=======                                           ] (14 %)
Scanning journal  [=========                                         ] (18 %)
Scanning journal  [===========                                       ] (22 %)
Scanning journal  [=============                                     ] (26 %)
Scanning journal  [====================                              ] (40 %)
Scanning journal  [======================                            ] (44 %)
Scanning journal  [========================                          ] (48 %)
Scanning journal  [==========================                        ] (52 %)
Scanning journal  [=================================                 ] (66 %)
Scanning journal  [===================================               ] (70 %)
Scanning journal  [=====================================             ] (74 %)
Scanning journal  [==============================================    ] (92 %)
Scanning journal  [================================================  ] (96 %)
Jul 28, 2006 9:13:17 AM org.apache.catalina.core.ApplicationContext log
INFO: exist-rest-servlet: registering XMLDB driver
Jul 28, 2006 9:13:17 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
Jul 28, 2006 9:13:17 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
Jul 28, 2006 9:13:18 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.orbeon.oxf.struts.examples.ApplicationResources ', returnNull=true
Jul 28, 2006 9:13:18 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.orbeon.oxf.struts.examples.ApplicationResources', returnNull=true
Jul 28, 2006 9:13:18 AM org.apache.struts.validator.ValidatorPlugIn initResources
INFO: Loading validation rules file from '/WEB-INF/validator-rules.xml'
Jul 28, 2006 9:13:18 AM org.apache.struts.validator.ValidatorPlugIn initResources
INFO: Loading validation rules file from '/WEB-INF/validation.xml'
Jul 28, 2006 9:13:18 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.orbeon.oxf.struts.examples.ModuleResources ', returnNull=true
Jul 28, 2006 9:13:18 AM org.apache.coyote.http11.Http11BaseProtocol start
INFO: Starting Coyote HTTP/1.1 on http-8888
Jul 28, 2006 9:13:18 AM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Jul 28, 2006 9:13:18 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/47  config=null
Jul 28, 2006 9:13:18 AM org.apache.catalina.storeconfig.StoreLoader load
INFO: Find registry server-registry.xml at classpath resource
Jul 28, 2006 9:13:19 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 10621 ms

Thanks & Regards

Merin



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Alessandro  Vernet
Administrator
Merin,

It looks like PresentationServer is starting correctly. Is the issue
still outstanding? If it is, what is the symptom you are observing
now?

Alex

On 7/27/06, Merin Shaji <[hidden email]> wrote:

>
> Do you see anything related to PresentationServer in the log? You
> should at least see something like:
>
> Starting PresentationServer Release 3.0.1.200605060258
> Initializing Resource Manager with: ...
>
>
> Hi Alex,
>
> I am getting the messages
>
>
> Starting PresentationServer Release 3.0.1.200605060258
> Initializing Resource Manager with: ...
>
> in the log. Mapping for OPSServletFilter is included in web.xml. I am using
> web.xml of the nightly build, to which additional entries were added for
> running my application.
>
> And for the first page (login page), XForms engine is transforming XForms to
> HTML.
>
> In web.xml I have changed the init param (processor name) for
> ops-main-servlet as
> oxf:/<my-application>/page-flow.xml where <my-application> is the folder
> under resources which I have copied from my application. If that mapping is
> changed to oxf:/page- flow.xml, I am getting the orbeon examples page for
> http://localhost:8888 and the examples are working fine.
>
> This is the log I'm getting at server start up:
>
>
>
> oxf.resources.priority.1=org.orbeon.oxf.resources.WebAppResourceManagerFactory,
> oxf.resources.webapp.rootdir=/WEB-INF/resources}
> Jul 28, 2006 9:13:16 AM
> org.apache.catalina.core.ApplicationContext log
> INFO: exist-rest-servlet: EXistServlet:
> exist.home=D:\Merin\IDE\eclipse\workspace\OPSNew\WEB-INF
> Jul 28, 2006 9:13:16 AM
> org.apache.catalina.core.ApplicationContext log
> INFO: exist-rest-servlet: reading configuration from
> D:\Merin\IDE\eclipse\workspace\OPSNew\WEB-INF\exist-
> conf.xml
> IN CONFIGURE
> cluster.journal.maxStore 65000
> cluster.journal.shift 100
> Jul 28, 2006 9:13:16 AM
> org.apache.catalina.core.ApplicationContext log
> INFO: exist-rest-servlet: configuring eXist instance
>  Scanning journal  [=======
>           ] (14 %)
> Scanning journal  [=========
>          ] (18 %)
> Scanning journal  [===========
>          ] (22 %)
> Scanning journal  [=============
>          ] (26 %)
> Scanning journal  [====================
>          ] (40 %)
> Scanning journal  [======================
>          ] (44 %)
> Scanning journal  [========================
>          ] (48 %)
> Scanning journal  [==========================
>          ] (52 %)
> Scanning journal  [=================================
>          ] (66 %)
> Scanning journal  [===================================
>          ] (70 %)
> Scanning journal  [=====================================
>          ] (74 %)
> Scanning journal
> [==============================================    ] (92 %)
> Scanning journal
> [================================================  ] (96 %)
> Jul 28, 2006 9:13:17 AM
> org.apache.catalina.core.ApplicationContext log
> INFO: exist-rest-servlet: registering XMLDB driver
> Jul 28, 2006 9:13:17 AM
> org.apache.struts.util.PropertyMessageResources <init>
> INFO: Initializing,
> config='org.apache.struts.util.LocalStrings',
> returnNull=true
> Jul 28, 2006 9:13:17 AM
> org.apache.struts.util.PropertyMessageResources <init>
> INFO: Initializing,
> config='org.apache.struts.action.ActionResources',
> returnNull=true
> Jul 28, 2006 9:13:18 AM
> org.apache.struts.util.PropertyMessageResources <init>
> INFO: Initializing,
> config='org.orbeon.oxf.struts.examples.ApplicationResources
> ', returnNull=true
> Jul 28, 2006 9:13:18 AM
> org.apache.struts.util.PropertyMessageResources <init>
> INFO: Initializing,
> config='org.orbeon.oxf.struts.examples.ApplicationResources',
> returnNull=true
> Jul 28, 2006 9:13:18 AM
> org.apache.struts.validator.ValidatorPlugIn initResources
> INFO: Loading validation rules file from '/WEB-INF/validator-rules.xml'
> Jul 28, 2006 9:13:18 AM
> org.apache.struts.validator.ValidatorPlugIn initResources
>  INFO: Loading validation rules file from '/WEB-INF/validation.xml'
> Jul 28, 2006 9:13:18 AM
> org.apache.struts.util.PropertyMessageResources <init>
> INFO: Initializing,
> config='org.orbeon.oxf.struts.examples.ModuleResources ',
> returnNull=true
> Jul 28, 2006 9:13:18 AM
> org.apache.coyote.http11.Http11BaseProtocol start
> INFO: Starting Coyote HTTP/1.1 on http-8888
> Jul 28, 2006 9:13:18 AM org.apache.jk.common.ChannelSocket
> init
> INFO: JK: ajp13 listening on /0.0.0.0:8009
> Jul 28, 2006 9:13:18 AM org.apache.jk.server.JkMain start
> INFO: Jk running ID=0 time=0/47  config=null
> Jul 28, 2006 9:13:18 AM
> org.apache.catalina.storeconfig.StoreLoader load
> INFO: Find registry server-registry.xml at classpath resource
> Jul 28, 2006 9:13:19 AM
> org.apache.catalina.startup.Catalina start
> INFO: Server startup in 10621 ms
>
> Thanks & Regards
>
> Merin
>
> --
> You receive this message as a subscriber of the [hidden email]
> mailing list.
> To unsubscribe: mailto:[hidden email]
> For general help: mailto:[hidden email]?subject=help
> ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
>
>
>

--
Blog (XML, Web apps, Open Source):
http://www.orbeon.com/blog/



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
--
Follow Orbeon on Twitter: @orbeon
Follow me on Twitter: @avernet
Reply | Threaded
Open this post in threaded view
|

Re: Usability Issues

Merin Shaji
Alex,
 
It was not the problem with presentation server. The problem was due to conflicting jar file commons-collections. OPS has commons-collections 2.0.jar and our application needs commons-collections-2.1.1.jar (I guess hibernate is using that.)
 
Migration to the new OPS version was successful except for some minor issues. We are looking into it.
 
Thanks & Regards
Merin
 
On 8/12/06, Alessandro Vernet <[hidden email]> wrote:
Merin,

It looks like PresentationServer is starting correctly. Is the issue
still outstanding? If it is, what is the symptom you are observing
now?

Alex


--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws