Running Tapestry 5.0.18 on Google App Engine

2009-08-25 Thread Dmitry Gusev
there by default, but works ok in appengine cloud), here is the solution: http://dmitrygusev.blogspot.com/2009/08/turn-java-security-manager-off-in.html -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Running Tapestry 5.0.18 on Google App Engine

2009-08-26 Thread Dmitry Gusev
> restart the application. > Applications made up of servlets and JSPs will be running very quickly, but > I guess a framework like Tapestry that has to initialize a lot of services > might take a bit longer? > > > regards, > > Onno > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: New Tapestry Website - Final review

2009-09-20 Thread Dmitry Gusev
Java Persistence > http://www.laliluna.de > > > > > --------- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: New Tapestry Website - Final review

2009-09-20 Thread Dmitry Gusev
It is also unusual/unconvenient that menu items reflected on up/down keys. If I expand menu item and it contents doesn't fit the screen I want to scroll the page by the down key, and in current implementation I don't get what I expect. On Mon, Sep 21, 2009 at 00:01, Dmitry Gusev wrote:

Re: New Tapestry Website - Final review

2009-09-20 Thread Dmitry Gusev
s what I wanted to do - explore menu entries. I just didn't expect any elements on a web page (especially links) get focused. > It wouldn't be a problem to allow multiple open menus as well. I invite > other people to comment on this as well and to choose a preference. > >

Re: Good news about Tapestry 5 in Google App Engine

2009-10-28 Thread Dmitry Gusev
ode.google.com/p/googleappengine/wiki/SdkForJavaReleaseNotes > > >> > > >> "Support for the Stax API, javax.xml.stream. You can now use both the > > >> JDK's Stax parser as well as third-party Stax libraries like > Woodstox." > > >> > > >> Can anyone confirm that a vanilla Tapestry 5.1.0.5 works in GAE now? > > >> > > >> -- > > >> Thiago H. de Paula Figueiredo > > >> Independent Java consultant, developer, and instructor > > >> http://www.arsmachina.com.br/thiago > > >> > > >> - > > >> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > >> For additional commands, e-mail: users-h...@tapestry.apache.org > > >> > > >> > > > > > > > > > -- > > > regards, > > > Jun Tsai > > > > > > > > > > > -- > > regards, > > Jun Tsai > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Tapestry 5.2.0.0-SNAPSHOT with GAE SDK 1.2.6

2009-10-29 Thread Dmitry Gusev
-with-gae-sdk.html HTH -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: GAE and Tapestry5 integration

2009-11-08 Thread Dmitry Gusev
.com. > > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: GAE and Tapestry5 integration

2009-11-08 Thread Dmitry Gusev
erride public Schedule find(Key scheduleKey) { return em.find(Schedule.class, scheduleKey); } } *Then inject ScheduleDAO in your page class using T5's @Inject annotation and use it.* On Sun, Nov 8, 2009 at 17:46, Dmitry Gusev wrote: > Tapestry 5.1 should run on GA

Re: GAE and Tapestry5 integration

2009-11-09 Thread Dmitry Gusev
DatastorePersistenceProvider > at > > org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1338) >at > > org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory

Re: Tapestry 5, JPA and Hibernate

2009-12-14 Thread Dmitry Gusev
sultant, developer, > and instructor > Owner, software architect and developer, Ars Machina Tecnologia da > Informação Ltda. > http://www.arsmachina.com.br > > ----- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Affortable Hosting solutions for Tapestry WebApps

2009-12-18 Thread Dmitry Gusev
k you. > > >> Eldred Mullany > > >> > > >> > > >> > > > > > > > > > - > > > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > > For additional commands, e-mail: users-h...@tapestry.apache.org > > > > > > > > > > - > > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > For additional commands, e-mail: users-h...@tapestry.apache.org > > > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: T 5.2 & App Engine 1.3 SDK

2009-12-29 Thread Dmitry Gusev
hange from T5 Upload to that) > and I'm running into the same issues (e.g. java.lang.ClassFormatError: > Invalid length 65050 in LocalVariableTable ) but I can't get it working w/ > the same hacks. > > Any ideas / thoughts / experiences ? > > Regards, > > Alex K > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: T 5.2 & App Engine 1.3 SDK

2010-01-11 Thread Dmitry Gusev
llPremain(InstrumentationImpl.java:338) > > FATAL ERROR in native method: processing of -javaagent > failed > > Thus, I had to add an empty premain() method to get it to work. > > Here's my agent class just in case anyone is interested: > > package com.google.a

Re: tapestry without js libs

2010-02-10 Thread Dmitry Gusev
many components depend on javascript but usually I dont use > those anyway. > > I would like to use jquery and I know I can set it to have no conflicts > with > prototype. > > pozdrawiam > Paweł Kamiński > > kami...@gmail.com > pkaminski....@gmail.com > ___

Re: GAE & T5 : Passing a request to the T5 pipeline from a servlet

2010-02-21 Thread Dmitry Gusev
hat) and invoke some service in it to "post > process" the uploads. > > Can anyone point me where I should be looking at for the entrypoint into > the > T5 processing pipeline that I can invoke from the servlet ? > > Thanks in advance, > > Alex K > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: GAE & T5 : Passing a request to the T5 pipeline from a servlet

2010-02-21 Thread Dmitry Gusev
False alarm, its working, the problem was in AccessController On Sun, Feb 21, 2010 at 17:43, Dmitry Gusev wrote: > Hi, Alex! > > Did you had any success with this? > > I have similiar problem now implementing GAE Task Queue API in my T5 app. > > > On Thu, Dec 31, 2009

Re: Hosting Apache Tapestry5.1 on GAE (Google Application Engine)

2010-02-22 Thread Dmitry Gusev
va-army.blogspot.com/2010/02/hosting-apache-tapestry51-on-gae-google.html > > > >> > > > > >> > You'll find the application's link it but here it is > > > >> > again<http://j-army.appspot.com/> > > > >> > . > > > >> > > > > >> > Please note that it has absolutely NOTHING but registering, > logging > > in > > > >> and > > > >> > logging out ! > > > >> > That's as much as I've gone with tapestry so far. I had nothing in > > > mind > > > >> to > > > >> > do ! > > > >> > > > > >> > Enjoy :) > > > >> > > > > >> > -- > > > >> > Muhammad Mohsen Hussien > > > >> > Jr. Java Software Engineer > > > >> > HP Enterprise Services > > > >> > > > > >> > > > >> > - > > > >> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > > >> For additional commands, e-mail: users-h...@tapestry.apache.org > > > >> > > > >> > > > > > > > > > > - > > > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > > For additional commands, e-mail: users-h...@tapestry.apache.org > > > > > > > > > > > > -- > > Muhammad Mohsen Hussien > > Jr. Java Software Engineer > > HP Enterprise Services > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: GAE & T5 : Passing a request to the T5 pipeline from a servlet

2010-02-22 Thread Dmitry Gusev
t; > Regards, > > Alex Kotchnev > > On Sun, Feb 21, 2010 at 1:57 PM, Dmitry Gusev >wrote: > > > False alarm, its working, the problem was in AccessController > > > > On Sun, Feb 21, 2010 at 17:43, Dmitry Gusev > > wrote: > > > > > Hi, Alex

Re: Render large page

2010-03-05 Thread Dmitry Gusev
ry.onDomLoadedCallback(); > > }); > -- > View this message in context: > http://n2.nabble.com/Render-large-page-tp4677583p4684690.html > Sent from the Tapestry Users mailing list archive at Nabble.com. > > --------

Need help with an error "PerthreadManagerImpl cleanup: Error invoking listener org.tynamo.jpa.internal.jpatransactionmanageri...@808e07: Transaction is not active"

2010-03-23 Thread Dmitry Gusev
cService.runUntilServerShutdown(RpcService.java:251) at com.google.apphosting.runtime.JavaRuntime$RpcRunnable.run(JavaRuntime.java:394) at java.lang.Thread.run(Unknown Source) -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Tapestry 5.2 + Google Appengine

2010-03-27 Thread Dmitry Gusev
65384 >> in LocalVariableTable in class file >> org/apache/tapestry5/corelib/components/Form >> java.lang.ClassFormatError: Invalid length 65384 in LocalVariableTable in >> class file org/apache/tapestry5/corelib/components/Form >> at java.lang.ClassLoader.defineClass1(Nat

Page without markup

2010-03-30 Thread Dmitry Gusev
working. Or maybe there's some other way I may implement task handlers with T5? -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Page without markup

2010-03-30 Thread Dmitry Gusev
t;). Would it be preferred way? On Tue, Mar 30, 2010 at 20:20, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Tue, 30 Mar 2010 13:13:54 -0300, Dmitry Gusev > wrote: > > Hello, >> > > Hi! > > > is it possible to have page class without (with em

Re: Page without markup

2010-03-31 Thread Dmitry Gusev
ng wrong? On Tue, Mar 30, 2010 at 23:20, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Tue, 30 Mar 2010 15:42:39 -0300, Dmitry Gusev > wrote: > > My onActivate methods in such pages return nothing, they're void. >> > > In this case, Tapest

Re: Grid: Customizing cell CSS based on property value

2010-04-01 Thread Dmitry Gusev
h: 100%; >>height: 100%; >> } >> >> doesn't it works? >> > > No, this was my first try. ;) > > > - Stephan > > ----- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Page without markup

2010-04-01 Thread Dmitry Gusev
1, 2010 at 15:44, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Wed, 31 Mar 2010 05:30:49 -0300, Dmitry Gusev > wrote: > > Can't get it working with Dispatcher. >> > > Take a look at > http://wiki.apache.org/tapestry/Tapestry5HowToCreateADi

Re: Persist value of checkbox ?

2010-04-08 Thread Dmitry Gusev
; > > > > > -- > Howard M. Lewis Ship > > Creator of Apache Tapestry > > The source for Tapestry training, mentoring and support. Contact me to > learn how I can get you up and productive in Tapestry fast! > > (971) 678-5210 > http://howardlewisship.com > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Asset service issues in GAE

2010-04-13 Thread Dmitry Gusev
gt;>> 1. go to http://zadachite-dev.appspot.com (this is the "dev" version > >>> which > >>> is unlikely to be warm right now) > >>> > >>> 2. Upon the initial loading of the pages, some of the graphics (more or > >>> less > >>> randomly) or stylesheets don't return as they get 404s: > >>> > >>> > >>> > >>> 404 Unable to locate asset > >>> 'classpath:ctx/91328db67ddf7725/yaml/core/base.css' (the file does not > >>> exist). > >>> > >>> > >>> Error: Unable to locate asset > >>> 'classpath:ctx/91328db67ddf7725/yaml/core/base.css' (the file does not > >>> exist). > >>> > >>> > >>> > >>> or for images, it's a straight 404 w/o any further response. > >>> > >>> 3. Browse to some of the other pages of the site - one by one, the > >>> "missing" > >>> assets start showing up one by one and eventually the layout renders > >>> correctly. After the app is "warmed up" now, even if you refresh the > page > >>> including the initially cached assets, they load fine. > >>> -- > >>> View this message in context: > >>> > >>> > http://old.nabble.com/Asset-service-issues-in-GAE-tp28219164p28219164.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 > >>> > >>> > >>> > >>> > >> > >> > > > > - > > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > For additional commands, e-mail: users-h...@tapestry.apache.org > > > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Asset service issues in GAE

2010-04-13 Thread Dmitry Gusev
at > $HttpServletRequestFilter_127e75ce693.service($HttpServletRequestFilter_127e75ce693.java) > >at > $HttpServletRequestHandler_127e75ce697.service($HttpServletRequestHandler_127e75ce697.java) >at > nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper$1.doFilter(HttpServletRequestFilterW

Re: Google Map Module and JavaScript-only PDF viewer component | GSOC2010

2010-04-14 Thread Dmitry Gusev
me , this method is ok for render PDF file to Images > ? > > > > charith > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: [T5.1] Obtaining The Page Name In A MarkupRendererFilter

2010-05-07 Thread Dmitry Gusev
current Page name from? > > Cheers, > > Steve. > -- > Steve Eynon > mobie: (+592) 678 4236 > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Tapestry5 Anchor Usage for Navigation

2013-10-25 Thread Dmitry Gusev
n context: > > > http://tapestry.1045711.n5.nabble.com/Tapestry5-Anchor-Usage-for-Navigation-tp5036547p5036735.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 > > > > > > > -- > Ilya Obshadko > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: How to do a Batch transaction with Tapestry-Hibernate

2013-10-27 Thread Dmitry Gusev
> > > > >>>>> current thread as would @Inject Session session; would do. > > > > >>>>> > > > > >>>>> > > > > >>>>> > > > > >>>>> > > > > >>>>> 2013/10/25 George Christman > > > > >>>>> > > > > >>>>>> So I guess I'm still a little confused as to what is the best > to > > > do > > > > >>>>>> it. > > > > >>>>>> @CommitAfter seems to work fine for individual transactions > but > > > does > > > > >>>>>> not > > > > >>>>>> work well with batch jobs do to it holding on to the object in > > > > memory. > > > > >>>>>> Anyhow, I could not figure out how to get Martins > > > > >>>>>> session.getTransaction() > > > > >>>>>> to work, however I did end up getting the following code to > > work. > > > > >>>>>> Could > > > > >>>>>> someone tell me if I'm doing this correctly? Also should I be > > > > closing > > > > >>>>>> and > > > > >>>>>> rolling back the transaction? > > > > >>>>>> > > > > >>>>>> //Mock scenario > > > > >>>>>> > > > > >>>>>> @Inject > > > > >>>>>> private HibernateSessionManager hibernateSessionManager; > > > > >>>>>> > > > > >>>>>> public void onActionFromTest() { > > > > >>>>>> Session session = > hibernateSessionManager.getSession(); > > > > >>>>>> > > > > >>>>>> for (int i = 0; i < 10; i++) { > > > > >>>>>> employee = new Employee("George " + i); > > > > >>>>>> > > > > >>>>>> session.save(employee); > > > > >>>>>> > > > > >>>>>> if (i % 250 == 0) { > > > > >>>>>> session.flush(); > > > > >>>>>> session.clear(); > > > > >>>>>> hibernateSessionManager.commit(); > > > > >>>>>> } > > > > >>>>>> } > > > > >>>>>> > > > > >>>>>> session.flush(); > > > > >>>>>> session.clear(); > > > > >>>>>> hibernateSessionManager.commit(); > > > > >>>>>> > > > > >>>>>> > > > > >>>>>> > > > > >>>>>> On Fri, Oct 25, 2013 at 9:07 AM, Thiago H. de Paula > Figueiredo < > > > > >>>>>> thiag...@gmail.com> wrote: > > > > >>>>>> > > > > >>>>>> > On Fri, Oct 25, 2013 at 10:53 AM, Barry Books < > > trs...@gmail.com > > > > > > > > >>>>>> wrote: > > > > >>>>>> > > > > > >>>>>> > While it's true you can run into problems by nesting > > > @CommitAfter > > > > >>>>>> the same > > > > >>>>>> > > can be said about nesting any commits. The Tapestry > database > > > > >>>>>> model is > > > > >>>>>> > > simple. There is one connection per request and when you > > call > > > > >>>>>> commit it > > > > >>>>>> > > does a commit. > > > > >>>>>> > > > > > > >>>>>> > > > > > >>>>>> > > > > > >>>>>> > Tapestry itself doesn't have any database model. It's a web > > > > >>>>>> framework and > > > > >>>>>> > nothing else. You can use it with any database, including > > none. > > > > >>>>>> > Tapestry-Hibernate is a package that provides *simple* > support > > > for > > > > >>>>>> > Hibernate and should be used in *simple* scenarios. If you > > need > > > > >>>>>> something > > > > >>>>>> > that's not simple, like any transaction handling not > supported > > > by > > > > >>>>>> > @CommitAfter, use Tapestry and some transaction handler > (EJB, > > > > >>>>>> Spring-TX, > > > > >>>>>> > etc) but not Tapestry-Hibernate. > > > > >>>>>> > > > > > >>>>>> > > > > > >>>>>> > > > > > >>>>>> > > > > > >>>>>> > > > > > > >>>>>> > > > > > > >>>>>> > > On Fri, Oct 25, 2013 at 7:31 AM, Lance Java < > > > > >>>>>> lance.j...@googlemail.com > > > > >>>>>> > > >wrote: > > > > >>>>>> > > > > > > >>>>>> > > > I'm assuming a fork is broken too because it's no good > for > > > > >>>>>> eating soup? > > > > >>>>>> > > > Sounds like you need a spoon, it's easy to write your > own > > > > >>>>>> annotation... > > > > >>>>>> > > > Perhaps you want a @MaybeCommitAfter ;) > > > > >>>>>> > > > > > > > >>>>>> > > > > > > >>>>>> > > > > > >>>>>> > > > > > >>>>>> > > > > > >>>>>> > -- > > > > >>>>>> > Thiago > > > > >>>>>> > > > > > >>>>>> > > > > >>>>>> > > > > >>>>>> > > > > >>>>>> -- > > > > >>>>>> George Christman > > > > >>>>>> www.CarDaddy.com > > > > >>>>>> P.O. Box 735 > > > > >>>>>> Johnstown, New York > > > > >>>>>> > > > > >>>>> > > > > >>>>> > > > > >>>> > > > > >>> > > > > >> > > > > > > > > > > > > > > > > > > > > > -- > > > George Christman > > > www.CarDaddy.com > > > P.O. Box 735 > > > Johnstown, New York > > > > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Tapestry5 Anchor Usage for Navigation

2013-10-27 Thread Dmitry Gusev
nd of 'bridge' > between browser history events and Tapestry server-side events. > > > On Sat, Oct 26, 2013 at 5:06 PM, Dmitry Gusev >wrote: > > > Please note: > > > > Anchors or URL fragments as they are referred to in RFC > > 1738<htt

Re: Eclipse Tapestry5 Plugin update

2013-10-30 Thread Dmitry Gusev
/anjlab/eclipse-tapestry5-plugin#install On Fri, Oct 4, 2013 at 2:21 PM, Dmitry Gusev wrote: > Version 1.2.5 is available for update now. > > This is a bug fix release: > - Support QuickSwitch for Kepler SR1 > there was a breaking change in Eclipse internal API I us

Re: Simply refresh a zone after datatable record edit - not so simple?

2013-10-30 Thread Dmitry Gusev
json", > response.toString()); > } > > public String getTime() { > return new java.util.Date().toString(); > } > > > But it seems that ajaxResponseRenderer.addRender("boxZone", boxZone); > doesn't do anything. Am I missing something? Isn't it that simple? > > Regards, > Lidija > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Simply refresh a zone after datatable record edit - not so simple?

2013-10-30 Thread Dmitry Gusev
at's returned to the browser. > > But nothing concerning the zone. There must be something I'm missing. > There's no java exception and no JavaScript error. > > Is there any simple tapestry example for refreshing the zone from java? > > Regards, > Lidija > &

Re: Tapestry-Hibernate using sessions inside of scheduler or threads.

2013-11-01 Thread Dmitry Gusev
new connections everytime. Anyhow, I'm wondering if anybody else has > successfully been able to Inject a hibernate session into the scheduler / > new thread without creating new connections? > > -- > George Christman > www.CarDaddy.com > P.O. Box 735 > Johnstown, New York > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Ajax and Validation

2013-11-01 Thread Dmitry Gusev
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Eclipse Tapestry5 Plugin update

2013-11-05 Thread Dmitry Gusev
> > Norman Franke > Answering Service for Directors, Inc. > www.myasd.com > > > > On Oct 4, 2013, at 6:21 AM, Dmitry Gusev wrote: > > > Version 1.2.5 is available for update now. > > > > This is a bug fix release: > > - Support QuickSwitch for

Re: [T5.3] Philosophy of bubbling up, but how drop to the components ?

2013-11-06 Thread Dmitry Gusev
------- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Best way to implement continuously background jobs

2013-11-11 Thread Dmitry Gusev
l. Be > warned, > > the pool size is 3 by default (configurable via a symbol). The > > ParallelExecutor will invoke PerThreadManager.cleanup() once your > Runnable > > completes to clean up the hibernate session and any PerThreadValue > > instances. > > > > > > -- > Ilya Obshadko > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Interface "Request"

2013-11-18 Thread Dmitry Gusev
if a Request > object exists for the thread (and therefore ASM.get() will work) or not > (and therefore cause ASM methods to throw NPEs)? > > Thanks in advance and kind regards, > Wulf Wechsung > > > > > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Interface "Request"

2013-11-18 Thread Dmitry Gusev
s a > non-null proxy that NPEs because it's delegate is actually null. > > Kind Regards, > Wulf > -Original Message- > From: Dmitry Gusev [mailto:dmitry.gu...@gmail.com] > Sent: Montag, 18. November 2013 13:45 > To: Tapestry users > Subject: Re: Interface &

Re: Web frameworks

2013-11-18 Thread Dmitry Gusev
compatibility issues, which I read a lot about on > google search? Or is it because it's a one man project? > > What do you think? > > Regards, > Emmanuel > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Web frameworks

2013-11-18 Thread Dmitry Gusev
lans working on T5 live class reloading improvements? On Mon, Nov 18, 2013 at 11:26 PM, Dmitry Gusev wrote: > Anton Arhipov answered similar question there: > > As we mentioned before, it is not possible to cover all the frameworks in >> one go. > > ... >> You could ask t

Version 2 of Eclipse Tapestry5 Plugin available for download

2013-11-21 Thread Dmitry Gusev
this update your Tapestry Context view won't work after restart, you need to close it and open it once again via Window -> Show View -> Tapestry Context. -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Tapetsry IoC starting a class with background task that uses an injected service

2013-11-22 Thread Dmitry Gusev
; injected services are set? With EagerLoad the class gets instantiated but > of course the services are null. > > John -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Tapetsry IoC starting a class with background task that uses an injected service

2013-11-22 Thread Dmitry Gusev
zed yet, but, when you first call > them, they will be initialized. > > -- > Thiago H. de Paula Figueiredo > Tapestry, Java and Hibernate consultant and developer > http://machina.com.br > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: [ANNOUNCEMENT] tynamo-federatedaccounts 0.4.3 released!

2013-11-25 Thread Dmitry Gusev
r.java:145) >>> >>> > at >>> >>> > >>> >>> > >>> >>> >>> org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84) >>> >>> > at >>>

Re: How do you run 5.4 apps with Eclipse/Gradle?

2013-11-26 Thread Dmitry Gusev
> >> > >> } > >> > >> > >> and that works if I add src/main/resources to the classpath and check > >> exported entries only. > >> > > > > src/main/resources should be part of the classpath in a way or another > > (directly or through adding the folder to which classes are compiled. > > > > > > This may even be better because I don't need a > >> plugin but still does not fit my definition of 'just works'. I would > rate > >> it promising. > >> > > > > Running an embedded Jetty instance, for me, is the best option after > > RunJettyRun. > > > > > > -- > > Thiago H. de Paula Figueiredo > > > > --**--**- > > To unsubscribe, e-mail: users-unsubscribe@tapestry.**apache.org< > users-unsubscr...@tapestry.apache.org> > > For additional commands, e-mail: users-h...@tapestry.apache.org > > > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: How to refresh a zone containing document.write()?

2013-11-26 Thread Dmitry Gusev
containing javascript's > document.write()? > >> > > > > The proper way of calling JavaScript code after a Zone update is to > listen > > to the Tapestry.ZONE_UPDATED_EVENT event from the element which is the > Zone. > > > > -- > > Thiago H. de Paula Figueiredo > > Tapestry, Java and Hibernate consultant and developer > > http://machina.com.br > > > > - > > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > For additional commands, e-mail: users-h...@tapestry.apache.org > > > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Loving the eclipse-tapestry5-plugin

2013-12-03 Thread Dmitry Gusev
t; say it's great!! >> >> The killer feature for me is the '+' button to create a .tml, .css, .js >> file from a java class in a maven friendly location pre-filled with useful >> templates. >> >> Kudos to Dmitry Gusev for a great plugin. >> &

Re: Loving the eclipse-tapestry5-plugin

2013-12-04 Thread Dmitry Gusev
ust started using the new(ish) eclipse-tapestry5-plugin and I > must > >>> say it's great!! > >>> > >>> The killer feature for me is the '+' button to create a

Re: component paramter frustrations

2013-12-06 Thread Dmitry Gusev
achina.com.br > Help me spend a whole month working on Tapestry bug fixes and > improvements: http://igg.me/at/t5month > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: component paramter frustrations

2013-12-06 Thread Dmitry Gusev
ng value } } On Fri, Dec 6, 2013 at 6:07 PM, Dmitry Gusev wrote: > I don't think you understand that tapestry parameters are actually > bindings, which means they don't store any values at all -- the value if > stored on the referencing side. See this example:

Completion Proposals support in Eclipse Tapestry5 Plugin

2013-12-09 Thread Dmitry Gusev
Javadoc tooltip for each proposal. This feature will be available in XML, JSP, or HTML editors of Eclipse WTP. -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Completion Proposals support in Eclipse Tapestry5 Plugin

2013-12-09 Thread Dmitry Gusev
Some screenshots: https://github.com/anjlab/eclipse-tapestry5-plugin/blob/master/README.md#completion-proposals On Mon, Dec 9, 2013 at 2:35 PM, Dmitry Gusev wrote: > Eclipse Tapestry5 Plugin now supports Completion Proposals in WTP Editors. > > This is an experimental feature an

Re: Completion Proposals support in Eclipse Tapestry5 Plugin

2013-12-09 Thread Dmitry Gusev
ery cool. How are you getting all this info. Are you able to use tapestry > services? Or are you rolling your own solution? > > I know gradle has a tooling api so that external tools can query the gradle > model. Perhaps Tapestry needs a similar concept? > On 9 Dec 2013

Re: Text in textfield is always Uppercase (first character)

2013-12-13 Thread Dmitry Gusev
Java and Hibernate consultant and developer > http://machina.com.br > > ----- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: [ANN] tapestry-atmosphere 0.0.1 released

2014-01-03 Thread Dmitry Gusev
; > > I ment in comparison to baby :-) > > > > > > 2014/1/3 Lance Java > > > > > It's a toss up... tomcat (cloudbees default container) has special > > > requirements for async > > > > > > > > > > > > https://github

Re: Loving the eclipse-tapestry5-plugin

2014-01-13 Thread Dmitry Gusev
s is the default Eclipse WTP >> project layout. >> >> Regards, >> Michael >> >> >> >> Am 03.12.13 18:30, schrieb Dmitry Gusev: >> >>> What is the directory structure you use? Are you using multi-project >>> structure? >>> Do

Re: HTTPS enabled Application

2014-01-15 Thread Dmitry Gusev
ants.*SECURE_ENABLED*, "true")”; > > > > Still all the pageLinks and actionLinks generating http request. > > > > Any idea guys why it is happening? > > > > Regards > > Mahendra > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: HTTPS enabled Application

2014-01-15 Thread Dmitry Gusev
Mahendra > > -Original Message- > From: Dmitry Gusev [mailto:dmitry.gu...@gmail.com] > Sent: Wednesday, January 15, 2014 5:20 PM > To: Tapestry users > Subject: Re: HTTPS enabled Application > > Try putting @org.apache.tapestry5.annotations.Secure annotations on y

Re: Configuration.addPackage(...)

2014-01-15 Thread Dmitry Gusev
} > catch (ClassNotFoundException ex) > { > throw new RuntimeException(ex); > } > } > } > } > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: How do you unit test services with dependent services

2014-01-21 Thread Dmitry Gusev
gt; -- > George Christman > www.CarDaddy.com > P.O. Box 735 > Johnstown, New York > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: How do you unit test services with dependent services

2014-01-21 Thread Dmitry Gusev
> If we need to mock methods in the service that's being bested than we > usually use Spy in Spock or the equivalent feature in other mock > frameworks. > > Cheers, > Dragan Sahpaski > > > On Tue, Jan 21, 2014 at 6:34 PM, Dmitry Gusev >wrote: > > > I usu

Re: How do you unit test services with dependent services

2014-01-21 Thread Dmitry Gusev
> Cheers, > Dragan Sahpaski > > > On Tue, Jan 21, 2014 at 6:34 PM, Dmitry Gusev >wrote: > > > I usually create base class where I construct registry instance, then I > use > > registry.getService(Intf.class) when I need an instance of a service. > > >

Re: How do you unit test services with dependent services

2014-01-21 Thread Dmitry Gusev
; >> > hostname="hri185169"> > >> > > >> > - >> > > classname="org.domain.etss.services.form.TimeSheetServiceTest">- >> > message="Contribution > >> > > >> > > >> > org.domain.etss.se

Re: Tapestry Eclipse Plugin on the Eclipse Market Place

2014-01-22 Thread Dmitry Gusev
redo > Tapestry, Java and Hibernate consultant and developer > http://machina.com.br > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Tapestry Eclipse Plugin on the Eclipse Market Place

2014-01-23 Thread Dmitry Gusev
Tapestry, Java and Hibernate consultant and developer > > http://machina.com.br > > > > --------- > > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > For additional commands, e-mail: users-h...@tapestry.apache.org > > > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: ScheduledExecutorService in tapestry ioc

2014-02-06 Thread Dmitry Gusev
------- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Preferred Template Location

2014-02-12 Thread Dmitry Gusev
a package? > > -- > George Christman > www.CarDaddy.com > P.O. Box 735 > Johnstown, New York > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Preferred Template Location

2014-02-12 Thread Dmitry Gusev
om.company.project.components can you put > MyPage.java and MyPage.tml, or would the tml need to be placed in Other > Sources src/main/resources.com.company.project.components? > > Thanks. > > > On Wed, Feb 12, 2014 at 10:51 AM, Dmitry Gusev >wrote: > > > Hi! &

Re: Executing JS function from component ONCE

2014-02-19 Thread Dmitry Gusev
t; -- > Thiago H. de Paula Figueiredo > Tapestry, Java and Hibernate consultant and developer > http://machina.com.br > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: How to pass a javascript function in tapestry mixin

2014-02-26 Thread Dmitry Gusev
eloper >>> http://machina.com.br >>> >>> - >>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org >>> For additional commands, e-mail: users-h...@tapestry.apache.org >>> >>> >>> >> >> > > -- > Thiago H. de Paula Figueiredo > Tapestry, Java and Hibernate consultant and developer > http://machina.com.br > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: How to Declare JSONObject function ?

2014-03-20 Thread Dmitry Gusev
unction() > > {$(this).hide();}}" > > > > But it does not work. In both cases above I tried with arguments: > > function(event, ui) {}, but it did not work. > > > > How can I declare this function ?? > > > > Thanks. > > Reply, Re > > > -- > Thiago H. de Paula Figueiredo > Tapestry, Java and Hibernate consultant and developer > http://machina.com.br > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org -- Dmitry Gusev AnjLab Team http://anjlab.com

Eclipse Tapestry5 Project version 2.3.0 available for download

2014-04-06 Thread Dmitry Gusev
changes to project's codebase (like add/delete modules, etc.) 2. Changes to components/pages, like adding new parameters/properties, will be picked up immediately in completion proposals in WTP editors -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Eclipse Tapestry5 Project version 2.3.0 available for download

2014-04-06 Thread Dmitry Gusev
rote: > On Sun, 06 Apr 2014 06:42:33 -0300, Dmitry Gusev > wrote: > > Hi, Dmitry! > > > Two new features in this update: >> >>1. Support for JavaScript stacks >> - Stacks have the same support in Tapestry Context view as >> >> CSS/Java

Re: T5.3 - What's the easiest way to detect the current request type?

2014-05-16 Thread Dmitry Gusev
It would be a lot of work to reorganize the code around the setupRender() > function, so I'd much rather a simple test. > > Does anyone know how this can be done? > > -- > Robert Hailey > > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: event triggering inside form loop

2014-05-20 Thread Dmitry Gusev
bmit is being used inside a loop and IS NOT ENCLOSED BY > OTHER COMPONENT, this scheme works. For example, in the same application I > have constructs like: > > > > > > That works as expected (and just like you described it should work). > > But, if we replace it with > > > > > > and t:submit is placed INSIDE t:mycomponent, we have a problem I've just > described. I'm not sure if it's indeed a Tapestry bug or it's just not > intended to work this way. > > -- > Ilya Obshadko > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Prevent session id from appearing in URL while being indexed by google

2014-06-04 Thread Dmitry Gusev
earch?q=site:cardaddy.com&client=firefox-a&hs=qLR&rls=org.mozilla:en-US:official&channel=sb&ei=d8COU_CRDJSmsQT_lIDoDQ&start=80&sa=N&biw=1280&bih=1199 > > -- > George Christman > www.CarDaddy.com > P.O. Box 735 > Johnstown, New York > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Prevent session id from appearing in URL while being indexed by google

2014-06-04 Thread Dmitry Gusev
Tomcat 7, Glassfish v3, and any other Servlet > 3.0-compliant servlet container. First, you can add this to your web.xml > webapp config: > > > COOKIE > > > > On Wed, Jun 4, 2014 at 6:58 AM, Dmitry Gusev > wrote: > > > Hi George, > > > > The ID

Re: Prevent session id from appearing in URL while being indexed by google

2014-06-04 Thread Dmitry Gusev
Wed, Jun 4, 2014 at 8:32 AM, Dmitry Gusev > wrote: > > > I don't think you should migrate your app server to do this, your current > > server probably supports this feature too! > > What is it btw? > > > > There will be side-effects: users without cookies

Re: Prevent session id from appearing in URL while being indexed by google

2014-06-04 Thread Dmitry Gusev
;m not logged in to > my account while it's still generating session id's. Any thoughts? > > > On Wed, Jun 4, 2014 at 10:46 AM, Thiago H de Paula Figueiredo < > thiag...@gmail.com> wrote: > > > On Wed, 04 Jun 2014 10:16:24 -0300, Dmitry Gusev > > >

Re: Provide validation markup on a specific field(s) within a loop using serverside recorderror

2014-06-06 Thread Dmitry Gusev
t; in the array. > > Any thoughts? > > -- > George Christman > www.CarDaddy.com > P.O. Box 735 > Johnstown, New York > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Using tapestry tml as a mail template

2014-06-11 Thread Dmitry Gusev
ndering would it be possible to create a page (i.e. tml and java > > code) and then sending that data to the database on certain event. > > basically using tapestry as a template mechanism > > > > Can I serve row output of the page somehow? In other words to force > > tapestry to compile html for a given page and then redirecting that > output > > to the database? > > > > Does anyone know any such examples? > > > > Cheers > > > > -- > > Sincerely > > *Boris Horvat* > > > > > > -- > Ilya Obshadko > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: live class reloading for custom package

2014-06-13 Thread Dmitry Gusev
gt; reloading. > > -- > Thiago H. de Paula Figueiredo > Tapestry, Java and Hibernate consultant and developer > http://machina.com.br > > ----- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: notify embedded components

2014-06-19 Thread Dmitry Gusev
;>> page.listenTo("**SomethingHappened"); >>> } >>> >>> void onSomethingHappened() >>> { >>> // called when triggered by page >>> } >>> } >>> >>> Help appreciated, than

Re: Preload All Pages On Startup

2014-06-25 Thread Dmitry Gusev
hat > something like this may be attempted in web.xml? > > > > >Employees >Employees > > org.apache.tapestry.ApplicationServlet >2 > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Forms require that the request method be POST

2014-06-25 Thread Dmitry Gusev
picion. > >> >> > > >> >> > > >> >> > -- > >> >> > Thiago H. de Paula Figueiredo > >> >> > Tapestry, Java and Hibernate consultant and developer > >> >> > http://machina.com.br > >> &

Re: Forms require that the request method be POST

2014-06-25 Thread Dmitry Gusev
back to a blank form, or > will it continue with the form submission? > > > On Wed, Jun 25, 2014 at 1:56 PM, Dmitry Gusev > wrote: > > > Hi George, > > > > See one possible solution here: > > > https://github.com/tynamo/tapestry-security/issues/7#issu

Re: Forms require that the request method be POST

2014-06-25 Thread Dmitry Gusev
gt; > > On Wed, Jun 25, 2014 at 2:44 PM, Dmitry Gusev > wrote: > > > It won't continue form submission, user will be redirected to the page > with > > empty form. > > > > > > On Wed, Jun 25, 2014 at 10:31 PM, George Christman < > > gchrist

Re: service implementation reloading and background processes

2014-06-27 Thread Dmitry Gusev
entation that it's > about to be reloaded? > > Thanks in advance. > > -- > Ilya Obshadko > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: What is the JVM option to specify modules to be loaded ?

2014-07-05 Thread Dmitry Gusev
x27;t relate the > values in it to what I need to do. Has it been removed ? > > http://people.apache.org/~uli/tapestry-site/configuration.html > > *-* > *Muhammad Gelbana* > http://www.linkedin.com/in/mgelbana > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: What is the JVM option to specify modules to be loaded ?

2014-07-05 Thread Dmitry Gusev
a > > > On Sat, Jul 5, 2014 at 12:23 PM, Dmitry Gusev > wrote: > > > It's > > > > > http://tapestry.apache.org/configuration.html#Configuration-SettingExecutionModes > > > > > > On Sat, Jul 5, 2014 at 2:08 PM, Muhammad Gelbana

Re: Wait for the triggerEvent to finish

2014-07-13 Thread Dmitry Gusev
e so that I wait for the return of the > callback and then proceed to the onSuccess method? > > Thanks > > -- > Sincerely > *Boris Horvat* > -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: Wait for the triggerEvent to finish

2014-07-16 Thread Dmitry Gusev
ot the impression > that triggerEvent method is not blocking...but if it is then my problem is > somewhere else I guess, right? > > > On Sun, Jul 13, 2014 at 7:02 PM, Dmitry Gusev > > wrote: > > > Hi Boris, > > > > resources.triggerEvent() is a blocking operatio

Re: Inject dynamic number of components

2014-07-18 Thread Dmitry Gusev
ponent.method(); > } > > I want to the the same for dynamic number of components, created by the > loop > > - > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > > For additional commands, e-m

  1   2   3   4   5   >