Ok, so I got a similar issue when I was preparing the release. What I discovered was that the jetty console unzips its contents into a temporary directory, somewhere in your systems /tmp directory. But it doesn't delete anything that's there already.
So could you either delete the appropriate directory and try again? And/or try one of the other ways of running the app. If this fixes the issue I'll update the contributors guide with this info. Thx, Dan On 8 Nov 2015 09:34, "Kevin Meyer" <[email protected]> wrote: > I was running the jar directly as specified in the contributers guide: > java -jar webapp/target/myapp-webapp-1.0-SNAPSHOT-jetty-console.jar > > There is nothing untoward in the console: > 10:28:51,131 [Native qtp102560251-29 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <0> > 10:28:51,133 [Native qtp102560251-29 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <1> > 10:28:51,134 [Native qtp102560251-29 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <2> > 10:28:53,145 [Native qtp102560251-27 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <0> > 10:28:54,953 [Native qtp102560251-37 DEBUG] SELECT > 'domainapp.dom.simple.SimpleObject' AS > NUCLEUS_TYPE,"A0"."name","A0"."id","A0"."version" FROM > "simple"."SimpleObject" "A0" > 10:28:55,018 [Native qtp102560251-28 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <0> > 10:28:55,019 [Native qtp102560251-28 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <1> > 10:28:55,022 [Native qtp102560251-28 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <2> > 10:28:56,458 [Native qtp102560251-26 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <1> > 10:28:58,926 [Native qtp102560251-29 DEBUG] SELECT > 'domainapp.dom.simple.SimpleObject' AS > NUCLEUS_TYPE,"A0"."name","A0"."id","A0"."version" FROM > "simple"."SimpleObject" "A0" > 10:28:59,010 [Native qtp102560251-39 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <0> > 10:28:59,012 [Native qtp102560251-39 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <1> > 10:28:59,013 [Native qtp102560251-39 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <2> > 10:29:00,613 [Native qtp102560251-30 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <2> > 10:29:03,398 [Native qtp102560251-27 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <2> > 10:29:03,743 [PropertiesFactory qtp102560251-27 INFO ] Loading > properties files from > > jar:file:/C:/Users/kmeyer/AppData/Local/Temp/myapp-webapp-1.0-SNAPSHOT-jetty-console.jar_8080/webapp/WEB-INF/lib/isis-viewer-wicket-ui-1.10.0.jar!/org/apache/isis/viewer/wicket/ui/components/actions/ActionParametersFormPanel.properties > with loader > org.apache.wicket.resource.IsoPropertiesFilePropertiesLoader@3bc3d9f8 > 10:29:07,238 [Native qtp102560251-37 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <2> > 10:29:07,294 [Native qtp102560251-28 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <2> > 10:29:07,315 [Native qtp102560251-28 DEBUG] UPDATE > "simple"."SimpleObject" SET "name"=<'Baz2'>, "version"=<2015-11-08 > 10:29:07.314> WHERE "id"=<2> > 10:29:07,350 [Native qtp102560251-26 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <2> > 10:29:19,925 [Native qtp102560251-39 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <2> > 10:29:19,927 [Native qtp102560251-39 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <1> > 10:29:19,929 [Native qtp102560251-39 DEBUG] SELECT > "A0"."name","A0"."version" FROM "simple"."SimpleObject" "A0" WHERE > "A0"."id" = <0> > > > And after I revisit the renamed object, then the drop down list works > normally again.... > > > But yes, the Javascript debugger shows: > > "JQMIGRATE: Logging is active" > jquery-migrate-1.2.1-ver-1446371661849.js:21:1 > window.controllers is deprecated. Do not use it for UA detection. > nsHeaderInfo.js:412:0 > TypeError: text is null select2-ver-1446371661822.js:356:12 > > > 10:32:10.997 TypeError: text is null1 select2-ver-1446371661822.js:356:12 > > > > Regards, > Kevin > > > > On Sun, November 8, 2015 10:13, Dan Haywood wrote: > > How annoying! > > > > > > Before deciding one way or the other, can I just check how you are > > running the generated app? Is it the war file, or from an IDE, or using > > the mvn antrun:run approach? > > > > > > Is there a java stack trace anywhere? > > > > > > And in the JavaScript console of the browser, do you see any errors? > > > > > > Thx, Dan > > On 8 Nov 2015 07:58, "Kevin Meyer" <[email protected]> wrote: > > > > > >> Hi, > >> > >> > >> I've just run through the 1.10.0 release and archetype, and it all > >> installs OK. > >> > >> However.... > >> > >> > >> Running the 1.10.0 archetype I see some improvements, i.e. it does > >> kinda work, but still one possible issue... > >> > >> If I just browse existing objects, I can then re-visit them using the > >> dropdown on the bottom left (the breadcrumbs?) > >> > >> However, if I use the "Update name" action to rename an object, then > >> when I select the breadcrumb I get a rotating circle symbol that never > >> returns anything (the dropdown remains empty)... > >> > >> Do you want to call this a blocker or not? If not, I'll +1 the release > >> later today. > >> > >> Cheers, > >> Kevin > >> > >> > >> PS: I fixed the address in my web-mail client - yes, it was pointing to > >> isis-dev@incubator.... -- > >> Kevin Meyer > >> Ljubljana, Slovenia > >> > >> > >> > >> > > > > > -- > Kevin Meyer > Ljubljana, Slovenia > > >
