Re: [ANN] t5components - release 0.5.4

2009-11-09 Thread Kumar_2106

Hi,
I need to Update the TextBox on Change of Select Box. So I am trying to use
t5components/OnEvent. 

So I am trying to update Maven POM  for t5-common dependency for mixins
't5components/OnEvent' on my tml ,but I am getting below error message when
I run mvn clean install 

 (For OnEvent mixins  I succesfully added  > to my
Repository but it does not work fine..So I am trying t5Component now and se 
if it works).

 
org.apache.tapestry
t5c-commons
0.5.15-SNAPSHOT


 
t5components
T5Components Maven Repository
 http://213.160.23.119:8080/t5components




---
] Scanning for projects...
[INFO]

[INFO] Building Data Spend Manager
[INFO]task-segment: [clean, install]
[INFO]

[INFO] [clean:clean]
[INFO] snapshot
nu.localhost.tapestry:tapestry-spring-security:2.1.0-SNAPSHOT: checking for
updates from t5components
[WARNING] repository metadata for: 'snapshot
nu.localhost.tapestry:tapestry-spring-security:2.1.0-SNAPSHOT' could not be
retrieved from repository: t5components due to an error: Error transferring
file
[INFO] Repository 't5components' will be blacklisted
[INFO]

[ERROR] BUILD ERROR
[INFO]

[INFO] Failed to resolve artifact.

Missing:
--
1) org.apache.tapestry:t5c-commons:jar:0.5.15-SNAPSHOT

  Try downloading the file manually from the project website.

  Then, install it using the command: 
  mvn install:install-file -DgroupId=org.apache.tapestry
-DartifactId=t5c-commons -Dversion=0.5.15-SNAPSHOT -Dpackaging=jar
-Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file
there: 
  mvn deploy:deploy-file -DgroupId=org.apache.tapestry
-DartifactId=t5c-commons -Dversion=0.5.15-SNAPSHOT -Dpackaging=jar
-Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency: 
1) net.rockshore.dsm:DataSpendManager:war:1.0-SNAPSHOT
2) org.apache.tapestry:t5c-commons:jar:0.5.15-SNAPSHOT

--
1 required artifact is missing.

for artifact: 
  net.rockshore.dsm:DataSpendManager:war:1.0-SNAPSHOT

from the specified remote repositories:
  t5components (http://213.160.23.119:8080/t5components),
  nexus (https://rockshore.net/nexus/content/groups/public),
  chenillekit (http://www.chenillekit.org/mvnrepo/release)


[INFO]

[INFO] For more information, run Maven with the -e switch
[INFO]

[INFO] Total time: 7 seconds
[INFO] Finished at: Mon Nov 09 14:14:26 GMT 2009
[INFO] Final Memory: 15M/119M



Can You pleas help on this ?? Any piece of advise is highly appreciated.


Thanks,
Kumar




Sven Homburg wrote:
> 
> Hi there,
> 
> the t5components release 0.5.4 is out now.
> special thanks to Tod Orr and Ted Steen to let include 
> their components into T5Components
> 
> project page with demo  click here
> http://213.160.23.119:8080/t5components/
> 

-- 
View this message in context: 
http://old.nabble.com/-ANN--t5components---release-0.5.4-tp15145466p26267272.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: [ANN] t5components - release 0.5.4

2008-01-31 Thread Sven Homburg
sorry, sorry, sorry ...
here with the right group id


  de.hsofttec.t5components
  t5components
  0.5.5




  de.hsofttec.t5components
  t5components-app
  0.5.5



2008/1/31, Peter Stavrinides <[EMAIL PROTECTED]>:
>
> I can back Michael on this, I tried this as well yesterday no difference
> between the two modes.
>
> Peter
>
> Chris Lewis wrote:
> > That sounds off. I'm using snapshot from svn and it works ok. I did
> > word it wrong, you enable it like this:
> >
> > configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, "false");
> >
> > You did say you tried both but I wanted to clear this up. You
> > shouldn't be seeing neutered exception reports.
> >
> > Michael Gerzabek wrote:
> >> Chris,
> >>
> >> Thank you for your comments.
> >>
> >> It's true, after I ran into problems with missing labels in
> >> beaneditform I switched to 5.0.10-SNAPSHOT. I tried  to contribute
> >> FactoryDefaults but there was no difference between "false" and
> >> "true". The exception page stays 'short'.
> >>
> >> Michael
> >>
> >> Chris Lewis schrieb:
> >>> Michael,
> >>>
> >>> A couple observations/notes:
> >>>
> >>> - I don't know why you had to manually install the library (maybe
> >>> the repo was down?), but if you manually installed it then it makes
> >>> sense you had to install the other dependencies by hand. Maven
> >>> manages those, so installing the component lib artifact by hand cuts
> >>> out the maven dependency magic.
> >>>
> >>> - If you got a message about a port address being in use, then
> >>> you've got another server running on it. My guess is that is process
> >>> of another project you're working on, or perhaps an attempted launch
> >>> of the same one. You'll want to find the parent process and kill it,
> >>> then you don't have to manually set your port.
> >>>
> >>> - It seems like you're using 5.0.10-SNAPSHOT. The ExceptionReport
> >>> page hides all of the useful stuff unless you tell T5 to work in the
> >>> new 'development' mode, which is disabled by default. Enable it like
> >>> so:
> >>>
> >>>   public static void
> >>> contributeFactoryDefaults(MappedConfiguration
> >>> configuration)
> >>>   {
> >>>   configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL,
> >>> "true"); //false would be development
> >>>   }
> >>>
> >>> Hope this helps. Also, congrats Sven for frequent releases and
> >>> improvements!
> >>>
> >>> chris
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >>
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
with regards
Sven Homburg


Re: [ANN] t5components - release 0.5.4

2008-01-31 Thread Peter Stavrinides
I can back Michael on this, I tried this as well yesterday no difference 
between the two modes.


Peter

Chris Lewis wrote:
That sounds off. I'm using snapshot from svn and it works ok. I did 
word it wrong, you enable it like this:


configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, "false");

You did say you tried both but I wanted to clear this up. You 
shouldn't be seeing neutered exception reports.


Michael Gerzabek wrote:

Chris,

Thank you for your comments.

It's true, after I ran into problems with missing labels in 
beaneditform I switched to 5.0.10-SNAPSHOT. I tried  to contribute 
FactoryDefaults but there was no difference between "false" and 
"true". The exception page stays 'short'.


Michael

Chris Lewis schrieb:

Michael,

A couple observations/notes:

- I don't know why you had to manually install the library (maybe 
the repo was down?), but if you manually installed it then it makes 
sense you had to install the other dependencies by hand. Maven 
manages those, so installing the component lib artifact by hand cuts 
out the maven dependency magic.


- If you got a message about a port address being in use, then 
you've got another server running on it. My guess is that is process 
of another project you're working on, or perhaps an attempted launch 
of the same one. You'll want to find the parent process and kill it, 
then you don't have to manually set your port.


- It seems like you're using 5.0.10-SNAPSHOT. The ExceptionReport 
page hides all of the useful stuff unless you tell T5 to work in the 
new 'development' mode, which is disabled by default. Enable it like 
so:


  public static void 
contributeFactoryDefaults(MappedConfiguration 
configuration)

  {
  configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, 
"true"); //false would be development

  }

Hope this helps. Also, congrats Sven for frequent releases and 
improvements!


chris



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





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



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



Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek

cool THNX!

Sven Homburg schrieb:

demo application sources


  de.hsofttec
  t5components-app
  0.5.4



t5components
T5Components Maven Repository
http://213.160.23.119:8080/t5components/maven-repository


  



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



RE: [ANN] t5components - release 0.5.4

2008-01-29 Thread Jonathan Barker
Chris,

The  as listed in the instructions is incorrect.  It is listed as:

de.hsofttec

And it should be:

de.hsofttec.t5components


I bumped into this too, and once I made the change, everything went fine.
I'm looking forward to trying out the library.


Jonathan


> -Original Message-
> From: Chris Lewis [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, January 29, 2008 10:21 AM
> To: Tapestry users
> Subject: Re: [ANN] t5components - release 0.5.4
> 
> Michael,
> 
> A couple observations/notes:
> 
> - I don't know why you had to manually install the library (maybe the
> repo was down?), but if you manually installed it then it makes sense
> you had to install the other dependencies by hand. Maven manages those,
> so installing the component lib artifact by hand cuts out the maven
> dependency magic.
> 
> - If you got a message about a port address being in use, then you've
> got another server running on it. My guess is that is process of another
> project you're working on, or perhaps an attempted launch of the same
> one. You'll want to find the parent process and kill it, then you don't
> have to manually set your port.
> 
> - It seems like you're using 5.0.10-SNAPSHOT. The ExceptionReport page
> hides all of the useful stuff unless you tell T5 to work in the new
> 'development' mode, which is disabled by default. Enable it like so:
> 
>public static void
> contributeFactoryDefaults(MappedConfiguration
> configuration)
>{
>configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL,
> "true"); //false would be development
>}
> 
> Hope this helps. Also, congrats Sven for frequent releases and
> improvements!
> 
> chris
> 
> Michael Gerzabek wrote:
> > Sven,
> >
> > The component does work now. But now I'm getting deeper into troubles
> > ... I was playing with T5 and jetty on port 8088. When I started with
> > t5components/GPlotter I got an exception saying address already in
> > use. So I changed the jetty port to  and now everything is fine.
> >
> > A small summary of things that worked for me:
> >
> > - manually installed t5components. Is this the reason why I had to
> > also manually install opencsv and httpclient?
> > - manually installed opencsv-1.8 and commons-httpclient-3.1
> > - changed jetty port to 
> >
> > NOW GPlotter works. But when I get an error, like when I put a wrong
> > adress - BTW German special chars are not allowed (ß,ä,ö,ü), is there
> > a way to change this? - the T5 error page is strangely rendered. No
> > line codes, no pretty dump of request and session. Why?
> >
> > Doing this I also stumbled into another problem the beaneditor has. My
> > bean has a date field which automagically displays with the JS input
> > helper. When I use jetty on port 8088 I get an exception. When I use
> > jetty on port  everything works fine and the calendar select is
> > opened.
> >
> > There is one question left. Is it possible that you also post the
> > gplotterpage that you've included into your Demo section? I have no
> > clue how to implement this actionlink that you nicely put into to Demo.
> >
> > Thank You
> > Michael
> >
> > Sven Homburg schrieb:
> >> hi michael,
> >>
> >> you ve tried it with the right version of HTTPC.
> >> is this jar in your WEB-INF/lib also?
> >>
> >> 2008/1/29, Michael Gerzabek <[EMAIL PROTECTED]>:
> >>
> >>> I tried t5components/GPlotter and got
> >>>
> >>> [ERROR] GoogleMapService Construction of service GoogleMapService
> >>> failed: Error invoking service builder method
> >>>
> de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger,
> >>>
> >>> Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
> >>> org/apache/commons/httpclient/HttpConnectionManager
> >>> java.lang.RuntimeException: Error invoking service builder method
> >>>
> de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger,
> >>>
> >>> Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
> >>> org/apache/commons/httpclient/HttpConnectionManager
> >>> at
> >>>
> org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject(
> >>>
> >>> ServiceBuilderMethodInvoker.java:88)
> >>> at
> >>>
> org.apache.tapestry.ioc.inter

Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Sven Homburg
demo application sources


  de.hsofttec
  t5components-app
  0.5.4



t5components
T5Components Maven Repository
http://213.160.23.119:8080/t5components/maven-repository




2008/1/29, Michael Gerzabek <[EMAIL PROTECTED]>:
>
> Sven,
>
> The component does work now. But now I'm getting deeper into troubles
> ... I was playing with T5 and jetty on port 8088. When I started with
> t5components/GPlotter I got an exception saying address already in use.
> So I changed the jetty port to  and now everything is fine.
>
> A small summary of things that worked for me:
>
> - manually installed t5components. Is this the reason why I had to also
> manually install opencsv and httpclient?
> - manually installed opencsv-1.8 and commons-httpclient-3.1
> - changed jetty port to 
>
> NOW GPlotter works. But when I get an error, like when I put a wrong
> adress - BTW German special chars are not allowed (ß,ä,ö,ü), is there a
> way to change this? - the T5 error page is strangely rendered. No line
> codes, no pretty dump of request and session. Why?
>
> Doing this I also stumbled into another problem the beaneditor has. My
> bean has a date field which automagically displays with the JS input
> helper. When I use jetty on port 8088 I get an exception. When I use
> jetty on port  everything works fine and the calendar select is
> opened.
>
> There is one question left. Is it possible that you also post the
> gplotterpage that you've included into your Demo section? I have no clue
> how to implement this actionlink that you nicely put into to Demo.
>
> Thank You
> Michael
>
> Sven Homburg schrieb:
> > hi michael,
> >
> > you ve tried it with the right version of HTTPC.
> > is this jar in your WEB-INF/lib also?
> >
> > 2008/1/29, Michael Gerzabek <[EMAIL PROTECTED]>:
> >
> >> I tried t5components/GPlotter and got
> >>
> >> [ERROR] GoogleMapService Construction of service GoogleMapService
> >> failed: Error invoking service builder method
> >> de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService
> (Logger,
> >> Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
> >> org/apache/commons/httpclient/HttpConnectionManager
> >> java.lang.RuntimeException: Error invoking service builder method
> >> de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService
> (Logger,
> >> Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
> >> org/apache/commons/httpclient/HttpConnectionManager
> >> at
> >>
> org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject(
> >> ServiceBuilderMethodInvoker.java:88)
> >> at
> >>
> org.apache.tapestry.ioc.internal.SingletonServiceLifecycle.createService(
> >> SingletonServiceLifecycle.java:29)
> >>
> >> ...
> >>
> >> Caused by: java.lang.NoClassDefFoundError:
> >> org/apache/commons/httpclient/HttpConnectionManager
> >> at
> >> de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(
> >> T5ComponentsModule.java:51)
> >> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >> at
> >> sun.reflect.NativeMethodAccessorImpl.invoke(
> NativeMethodAccessorImpl.java
> >> :39)
> >> at
> >> sun.reflect.DelegatingMethodAccessorImpl.invoke(
> >> DelegatingMethodAccessorImpl.java:25)
> >> at java.lang.reflect.Method.invoke(Method.java:585)
> >> at
> >>
> org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject(
> >> ServiceBuilderMethodInvoker.java:76)
> >> ... 75 more
> >>
> >> I tried to add commons HTTPC3.1 but without success. Which version of
> >> commons HttpClient does the component need?
> >>
> >> BTW: In the documentation is
> >> 
> >>
> >> which should be
> >> 
> >>
> >> Michael
> >>
> >> Sven Homburg schrieb:
> >>
> >>> Hi there,
> >>>
> >>> the t5components release 0.5.4 is out now.
> >>> special thanks to Tod Orr and Ted Steen to let include
> >>> their components into T5Components
> >>>
> >>> project page with demo  click here
> >>>
> >> http://213.160.23.119:8080/t5components/
> >>
> >>> -
> >>> best regards
> >>> Sven
> >>>
> >>>
> >> -
> >> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >>
> >>
> >
> >
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
with regards
Sven Homburg


Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek

Chris Lewis schrieb:
Perhaps its a bug that has been fixed in svn. You can use the svn or 
just wait for the snapshots to be regenerated :-)

That will be tomorrow ;) I'm fine with that.



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



Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Chris Lewis
Perhaps its a bug that has been fixed in svn. You can use the svn or 
just wait for the snapshots to be regenerated :-)


Michael Gerzabek wrote:
I set 
5.0.10-SNAPSHOT 
this morning. I did now a clear project and put 
configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, "false"); 
into my AppModule.java. The exception reports are cut.


Michael

Chris Lewis schrieb:
That sounds off. I'm using snapshot from svn and it works ok. I did 
word it wrong, you enable it like this:


configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, "false");

You did say you tried both but I wanted to clear this up. You 
shouldn't be seeing neutered exception reports.


Michael Gerzabek wrote:

Chris,

Thank you for your comments.

It's true, after I ran into problems with missing labels in 
beaneditform I switched to 5.0.10-SNAPSHOT. I tried  to contribute 
FactoryDefaults but there was no difference between "false" and 
"true". The exception page stays 'short'.


Michael

Chris Lewis schrieb:

Michael,

A couple observations/notes:

- I don't know why you had to manually install the library (maybe 
the repo was down?), but if you manually installed it then it makes 
sense you had to install the other dependencies by hand. Maven 
manages those, so installing the component lib artifact by hand 
cuts out the maven dependency magic.


- If you got a message about a port address being in use, then 
you've got another server running on it. My guess is that is 
process of another project you're working on, or perhaps an 
attempted launch of the same one. You'll want to find the parent 
process and kill it, then you don't have to manually set your port.


- It seems like you're using 5.0.10-SNAPSHOT. The ExceptionReport 
page hides all of the useful stuff unless you tell T5 to work in 
the new 'development' mode, which is disabled by default. Enable it 
like so:


  public static void 
contributeFactoryDefaults(MappedConfiguration 
configuration)

  {
  configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, 
"true"); //false would be development

  }

Hope this helps. Also, congrats Sven for frequent releases and 
improvements!


chris



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





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




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





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



Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek
I set 
5.0.10-SNAPSHOT 
this morning. I did now a clear project and put 
configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, "false"); 
into my AppModule.java. The exception reports are cut.


Michael

Chris Lewis schrieb:
That sounds off. I'm using snapshot from svn and it works ok. I did 
word it wrong, you enable it like this:


configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, "false");

You did say you tried both but I wanted to clear this up. You 
shouldn't be seeing neutered exception reports.


Michael Gerzabek wrote:

Chris,

Thank you for your comments.

It's true, after I ran into problems with missing labels in 
beaneditform I switched to 5.0.10-SNAPSHOT. I tried  to contribute 
FactoryDefaults but there was no difference between "false" and 
"true". The exception page stays 'short'.


Michael

Chris Lewis schrieb:

Michael,

A couple observations/notes:

- I don't know why you had to manually install the library (maybe 
the repo was down?), but if you manually installed it then it makes 
sense you had to install the other dependencies by hand. Maven 
manages those, so installing the component lib artifact by hand cuts 
out the maven dependency magic.


- If you got a message about a port address being in use, then 
you've got another server running on it. My guess is that is process 
of another project you're working on, or perhaps an attempted launch 
of the same one. You'll want to find the parent process and kill it, 
then you don't have to manually set your port.


- It seems like you're using 5.0.10-SNAPSHOT. The ExceptionReport 
page hides all of the useful stuff unless you tell T5 to work in the 
new 'development' mode, which is disabled by default. Enable it like 
so:


  public static void 
contributeFactoryDefaults(MappedConfiguration 
configuration)

  {
  configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, 
"true"); //false would be development

  }

Hope this helps. Also, congrats Sven for frequent releases and 
improvements!


chris



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





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




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



Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Chris Lewis
That sounds off. I'm using snapshot from svn and it works ok. I did word 
it wrong, you enable it like this:


configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, "false");

You did say you tried both but I wanted to clear this up. You shouldn't 
be seeing neutered exception reports.


Michael Gerzabek wrote:

Chris,

Thank you for your comments.

It's true, after I ran into problems with missing labels in 
beaneditform I switched to 5.0.10-SNAPSHOT. I tried  to contribute 
FactoryDefaults but there was no difference between "false" and 
"true". The exception page stays 'short'.


Michael

Chris Lewis schrieb:

Michael,

A couple observations/notes:

- I don't know why you had to manually install the library (maybe the 
repo was down?), but if you manually installed it then it makes sense 
you had to install the other dependencies by hand. Maven manages 
those, so installing the component lib artifact by hand cuts out the 
maven dependency magic.


- If you got a message about a port address being in use, then you've 
got another server running on it. My guess is that is process of 
another project you're working on, or perhaps an attempted launch of 
the same one. You'll want to find the parent process and kill it, 
then you don't have to manually set your port.


- It seems like you're using 5.0.10-SNAPSHOT. The ExceptionReport 
page hides all of the useful stuff unless you tell T5 to work in the 
new 'development' mode, which is disabled by default. Enable it like so:


  public static void 
contributeFactoryDefaults(MappedConfiguration 
configuration)

  {
  configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, 
"true"); //false would be development

  }

Hope this helps. Also, congrats Sven for frequent releases and 
improvements!


chris



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





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



Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek

Chris,

Thank you for your comments.

It's true, after I ran into problems with missing labels in beaneditform 
I switched to 5.0.10-SNAPSHOT. I tried  to contribute FactoryDefaults 
but there was no difference between "false" and "true". The exception 
page stays 'short'.


Michael

Chris Lewis schrieb:

Michael,

A couple observations/notes:

- I don't know why you had to manually install the library (maybe the 
repo was down?), but if you manually installed it then it makes sense 
you had to install the other dependencies by hand. Maven manages 
those, so installing the component lib artifact by hand cuts out the 
maven dependency magic.


- If you got a message about a port address being in use, then you've 
got another server running on it. My guess is that is process of 
another project you're working on, or perhaps an attempted launch of 
the same one. You'll want to find the parent process and kill it, then 
you don't have to manually set your port.


- It seems like you're using 5.0.10-SNAPSHOT. The ExceptionReport page 
hides all of the useful stuff unless you tell T5 to work in the new 
'development' mode, which is disabled by default. Enable it like so:


  public static void 
contributeFactoryDefaults(MappedConfiguration 
configuration)

  {
  configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, 
"true"); //false would be development

  }

Hope this helps. Also, congrats Sven for frequent releases and 
improvements!


chris



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



Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Chris Lewis

Michael,

A couple observations/notes:

- I don't know why you had to manually install the library (maybe the 
repo was down?), but if you manually installed it then it makes sense 
you had to install the other dependencies by hand. Maven manages those, 
so installing the component lib artifact by hand cuts out the maven 
dependency magic.


- If you got a message about a port address being in use, then you've 
got another server running on it. My guess is that is process of another 
project you're working on, or perhaps an attempted launch of the same 
one. You'll want to find the parent process and kill it, then you don't 
have to manually set your port.


- It seems like you're using 5.0.10-SNAPSHOT. The ExceptionReport page 
hides all of the useful stuff unless you tell T5 to work in the new 
'development' mode, which is disabled by default. Enable it like so:


  public static void 
contributeFactoryDefaults(MappedConfiguration 
configuration)

  {
  configuration.add(TapestryConstants.PRODUCTION_MODE_SYMBOL, 
"true"); //false would be development

  }

Hope this helps. Also, congrats Sven for frequent releases and improvements!

chris

Michael Gerzabek wrote:

Sven,

The component does work now. But now I'm getting deeper into troubles 
... I was playing with T5 and jetty on port 8088. When I started with 
t5components/GPlotter I got an exception saying address already in 
use. So I changed the jetty port to  and now everything is fine.


A small summary of things that worked for me:

- manually installed t5components. Is this the reason why I had to 
also manually install opencsv and httpclient?

- manually installed opencsv-1.8 and commons-httpclient-3.1
- changed jetty port to 

NOW GPlotter works. But when I get an error, like when I put a wrong 
adress - BTW German special chars are not allowed (ß,ä,ö,ü), is there 
a way to change this? - the T5 error page is strangely rendered. No 
line codes, no pretty dump of request and session. Why?


Doing this I also stumbled into another problem the beaneditor has. My 
bean has a date field which automagically displays with the JS input 
helper. When I use jetty on port 8088 I get an exception. When I use 
jetty on port  everything works fine and the calendar select is 
opened.


There is one question left. Is it possible that you also post the 
gplotterpage that you've included into your Demo section? I have no 
clue how to implement this actionlink that you nicely put into to Demo.


Thank You
Michael

Sven Homburg schrieb:

hi michael,

you ve tried it with the right version of HTTPC.
is this jar in your WEB-INF/lib also?

2008/1/29, Michael Gerzabek <[EMAIL PROTECTED]>:
 

I tried t5components/GPlotter and got

[ERROR] GoogleMapService Construction of service GoogleMapService
failed: Error invoking service builder method
de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger, 


Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
org/apache/commons/httpclient/HttpConnectionManager
java.lang.RuntimeException: Error invoking service builder method
de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger, 


Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
org/apache/commons/httpclient/HttpConnectionManager
at
org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject( 


ServiceBuilderMethodInvoker.java:88)
at
org.apache.tapestry.ioc.internal.SingletonServiceLifecycle.createService( 


SingletonServiceLifecycle.java:29)

...

Caused by: java.lang.NoClassDefFoundError:
org/apache/commons/httpclient/HttpConnectionManager
at
de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(
T5ComponentsModule.java:51)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java 


:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(
DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject( 


ServiceBuilderMethodInvoker.java:76)
... 75 more

I tried to add commons HTTPC3.1 but without success. Which version of
commons HttpClient does the component need?

BTW: In the documentation is


which should be


Michael

Sven Homburg schrieb:
   

Hi there,

the t5components release 0.5.4 is out now.
special thanks to Tod Orr and Ted Steen to let include
their components into T5Components

project page with demo  click here
  

http://213.160.23.119:8080/t5components/
   

-
best regards
Sven

  

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






  



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL P

Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek

Sven,

The component does work now. But now I'm getting deeper into troubles 
... I was playing with T5 and jetty on port 8088. When I started with 
t5components/GPlotter I got an exception saying address already in use. 
So I changed the jetty port to  and now everything is fine.


A small summary of things that worked for me:

- manually installed t5components. Is this the reason why I had to also 
manually install opencsv and httpclient?

- manually installed opencsv-1.8 and commons-httpclient-3.1
- changed jetty port to 

NOW GPlotter works. But when I get an error, like when I put a wrong 
adress - BTW German special chars are not allowed (ß,ä,ö,ü), is there a 
way to change this? - the T5 error page is strangely rendered. No line 
codes, no pretty dump of request and session. Why?


Doing this I also stumbled into another problem the beaneditor has. My 
bean has a date field which automagically displays with the JS input 
helper. When I use jetty on port 8088 I get an exception. When I use 
jetty on port  everything works fine and the calendar select is opened.


There is one question left. Is it possible that you also post the 
gplotterpage that you've included into your Demo section? I have no clue 
how to implement this actionlink that you nicely put into to Demo.


Thank You
Michael

Sven Homburg schrieb:

hi michael,

you ve tried it with the right version of HTTPC.
is this jar in your WEB-INF/lib also?

2008/1/29, Michael Gerzabek <[EMAIL PROTECTED]>:
  

I tried t5components/GPlotter and got

[ERROR] GoogleMapService Construction of service GoogleMapService
failed: Error invoking service builder method
de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger,
Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
org/apache/commons/httpclient/HttpConnectionManager
java.lang.RuntimeException: Error invoking service builder method
de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger,
Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
org/apache/commons/httpclient/HttpConnectionManager
at
org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject(
ServiceBuilderMethodInvoker.java:88)
at
org.apache.tapestry.ioc.internal.SingletonServiceLifecycle.createService(
SingletonServiceLifecycle.java:29)

...

Caused by: java.lang.NoClassDefFoundError:
org/apache/commons/httpclient/HttpConnectionManager
at
de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(
T5ComponentsModule.java:51)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java
:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(
DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at
org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject(
ServiceBuilderMethodInvoker.java:76)
... 75 more

I tried to add commons HTTPC3.1 but without success. Which version of
commons HttpClient does the component need?

BTW: In the documentation is


which should be


Michael

Sven Homburg schrieb:


Hi there,

the t5components release 0.5.4 is out now.
special thanks to Tod Orr and Ted Steen to let include
their components into T5Components

project page with demo  click here
  

http://213.160.23.119:8080/t5components/


-
best regards
Sven

  

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






  



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



Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Sven Homburg
hi michael,

you ve tried it with the right version of HTTPC.
is this jar in your WEB-INF/lib also?

2008/1/29, Michael Gerzabek <[EMAIL PROTECTED]>:
>
> I tried t5components/GPlotter and got
>
> [ERROR] GoogleMapService Construction of service GoogleMapService
> failed: Error invoking service builder method
> de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger,
> Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
> org/apache/commons/httpclient/HttpConnectionManager
> java.lang.RuntimeException: Error invoking service builder method
> de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger,
> Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'):
> org/apache/commons/httpclient/HttpConnectionManager
> at
> org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject(
> ServiceBuilderMethodInvoker.java:88)
> at
> org.apache.tapestry.ioc.internal.SingletonServiceLifecycle.createService(
> SingletonServiceLifecycle.java:29)
>
> ...
>
> Caused by: java.lang.NoClassDefFoundError:
> org/apache/commons/httpclient/HttpConnectionManager
> at
> de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(
> T5ComponentsModule.java:51)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java
> :39)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(
> DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:585)
> at
> org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject(
> ServiceBuilderMethodInvoker.java:76)
> ... 75 more
>
> I tried to add commons HTTPC3.1 but without success. Which version of
> commons HttpClient does the component need?
>
> BTW: In the documentation is
> 
>
> which should be
> 
>
> Michael
>
> Sven Homburg schrieb:
> > Hi there,
> >
> > the t5components release 0.5.4 is out now.
> > special thanks to Tod Orr and Ted Steen to let include
> > their components into T5Components
> >
> > project page with demo  click here
> http://213.160.23.119:8080/t5components/
> >
> > -
> > best regards
> > Sven
> >
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
with regards
Sven Homburg


Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Michael Gerzabek

I tried t5components/GPlotter and got

[ERROR] GoogleMapService Construction of service GoogleMapService 
failed: Error invoking service builder method 
de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger, 
Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'): 
org/apache/commons/httpclient/HttpConnectionManager
java.lang.RuntimeException: Error invoking service builder method 
de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(Logger, 
Map) (at T5ComponentsModule.java:48) (for service 'GoogleMapService'): 
org/apache/commons/httpclient/HttpConnectionManager
   at 
org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject(ServiceBuilderMethodInvoker.java:88)
   at 
org.apache.tapestry.ioc.internal.SingletonServiceLifecycle.createService(SingletonServiceLifecycle.java:29)


...

Caused by: java.lang.NoClassDefFoundError: 
org/apache/commons/httpclient/HttpConnectionManager
   at 
de.hsofttec.t5components.T5ComponentsModule.buildGoogleMapService(T5ComponentsModule.java:51)

   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
   at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

   at java.lang.reflect.Method.invoke(Method.java:585)
   at 
org.apache.tapestry.ioc.internal.ServiceBuilderMethodInvoker.createObject(ServiceBuilderMethodInvoker.java:76)

   ... 75 more

I tried to add commons HTTPC3.1 but without success. Which version of 
commons HttpClient does the component need?


BTW: In the documentation is



which should be



Michael

Sven Homburg schrieb:

Hi there,

the t5components release 0.5.4 is out now.
special thanks to Tod Orr and Ted Steen to let include 
their components into T5Components


project page with demo  click here http://213.160.23.119:8080/t5components/

-
best regards
Sven
  



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



Re: [ANN] t5components - release 0.5.4

2008-01-29 Thread Massimo Lusetti
On Jan 28, 2008 10:07 PM, Sven Homburg <[EMAIL PROTECTED]> wrote:

> Hi there,
>
> the t5components release 0.5.4 is out now.
> special thanks to Tod Orr and Ted Steen to let include
> their components into T5Components
>
> project page with demo  click here http://213.160.23.119:8080/t5components/

Thank you so much! Very nice component library!

-- 
Massimo
http://meridio.blogspot.com

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



Re: [ANN] t5components - release 0.5.4

2008-01-28 Thread Michael Gerzabek

Hi Sven,

I like your Components. Thank You for your work. I tried to include the 
dependency and repository into my pom yesterday like said in the 
webpage. Unfortunately it didn't work. I'm just shallow in maven so I 
assume it was a local problem. Are others observing similar experiences?


BTW adding the jar by hand did work.

And again *T5 rocks* and these components give a powerful add on. My 2 
cents.


Michael

Sven Homburg schrieb:

Hi there,

the t5components release 0.5.4 is out now.
special thanks to Tod Orr and Ted Steen to let include 
their components into T5Components


project page with demo  click here http://213.160.23.119:8080/t5components/

-
best regards
Sven
  



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



[ANN] t5components - release 0.5.4

2008-01-28 Thread Sven Homburg

Hi there,

the t5components release 0.5.4 is out now.
special thanks to Tod Orr and Ted Steen to let include 
their components into T5Components

project page with demo  click here http://213.160.23.119:8080/t5components/

-
best regards
Sven
-- 
View this message in context: 
http://www.nabble.com/-ANN--t5components---release-0.5.4-tp15145466p15145466.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


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