Re: Getting isis working with Intellij

2019-11-03 Thread Vladimir Nišević
Hi, in company I am working in, we have many developers using Apache Isis with their favorite IDE, either Eclipse or IntelliJ. Both ways pretty straight forward. Your screenshots are removed, probably by mailing list server, so it is hard to support with no information. Regs, Vladimir James

Re: Major changes with Isis v2

2019-03-28 Thread Vladimir Nišević
Hi Andi, I am really looking forward to this feature! In the past I had lot of discussions regarding using Isis framework instead of Spring Boot/JPA/Hibernate. Having this possibility I guess I will get best of both worlds. What I currently really like about Isis is the possibility of using

Re: Warning a user based on input on action invocation

2018-11-23 Thread Vladimir Nišević
Yes, this feature would be great one! In one application (non Isis but Eclipse RCP) we developed times ago, we had UI style guide where each input field can have warning/information/error depending on current user input (ideally giving feedback on each keystroke or when list selection happened).

Re: New Isis 2 Demo available

2018-09-21 Thread Vladimir Nišević
Hi Andi, just tried out your docker image. Looks great! Looking forward to Isis 2. Thanks Vladimir Am Mi., 19. Sep. 2018 um 09:28 Uhr schrieb Andi Huber : > I'm happy to announce a new docker image build for the isis-2-demo app > [1]. It's built against the latest Apache Isis 2.0.0-M2 snapshot

Re: Support for nested transactions

2018-08-10 Thread Vladimir Nišević
um 11:11 Uhr schrieb Vladimir Nišević < vnise...@gmail.com>: > Hi Dan, thanks for the fast reply! > > Yes, we tried already with TransactionsService but this is not enough > since this supports only one at the time. > > We will go for the solution using AbstractIsisSessionT

Re: Support for nested transactions

2018-08-10 Thread Vladimir Nišević
voked via a background > scheduler. In 1.x you will need to being in quartz, but 2.0.0-M1 has > built-in support. > > HTH, > Dan. > > On Fri, 10 Aug 2018, 08:58 Vladimir Nišević, wrote: > > > Hi folks, as I understand, Isis supports by default one JDBC transactio

Support for nested transactions

2018-08-10 Thread Vladimir Nišević
Hi folks, as I understand, Isis supports by default one JDBC transaction at time as part of single IsisTransaction and single IsisSession. We have a case where we would need nested JDBC transactions or multiple parallel transactions where some of the transactions we would need to rollback and

How to use alternative in memory database for Integration/Cucumber tests

2018-05-14 Thread Vladimir Nišević
Dear Isis community, we have upgraded to Isis 1.16.2 and now we are forced to use HSQL-DB as in-memory database. Here the code from isis-core-runtime-1.16.2.jar which is responsible for that package org.apache.isis.core.runtime.headless; ... public class IsisSystemBootstrapper { private

Re: Chat

2017-12-05 Thread Vladimir Nišević
Hi, for this purpose we usually introduce for a separate domain service, use it's lifecycle ( described here https://isis.apache.org/guides/ugfun/ugfun.html#_ugfun_programming-model_domain-services_initialization ) to initialize/shutdown connectivity the service and implement actions to be used by

SimpleApp has isis.properites at two places

2017-12-01 Thread Vladimir Nišević
Hi, I've just noticed, that in the latest simpleapp (1.15.1) created from archetype there is a file "isis.properties" at two places and it seems that we need them at both: 1. simpleapp\application\src\main\resources\domainapp\application\manifest\isis.properties 2.

Re: Using view model as parameter in restful inteface

2017-10-31 Thread Vladimir Nišević
eference to > the filter to the original REST service, as a regular reference. > (Obviously the URL will be rather long and messy, but that's not a problem > per-se). > > HTH > Dan > > > > > On Thu, 5 Oct 2017 at 13:58 Vladimir Nišević <vnise...@gmail.com> wrote: > >

Re: AW: Quartz | ISIS Metamodel Validation errors

2017-10-09 Thread Vladimir Nišević
+1 Vladimir Am 09.10.2017 12:56 schrieb "Rade, Joerg / Kuehne + Nagel / Ham GI-DP" < joerg.r...@kuehne-nagel.com>: > +1 > > -Ursprüngliche Nachricht- > Von: Stephen Cameron [mailto:steve.cameron...@gmail.com] > Gesendet: Montag, 9. Oktober 2017 12:49 > An: users@isis.apache.org >

Re: Getting "Header is too large 8193>8192" exception when using larger view models

2017-10-06 Thread Vladimir Nišević
ull && key.length() > MIN_LENGTH_TO_CACHE; > } > > > } > > > > This is a bit hacky, and will leak memory, so is not suitable for a high > volume environment. You might therefore want to refactor it to use an > external cache such as Redis, or alternative

Getting "Header is too large 8193>8192" exception when using larger view models

2017-10-06 Thread Vladimir Nišević
Hi, my view models seems to be such large that I get now the exception "Header is too large 8193>8192" when browser submits e.g. an action from rendered view model to server running on jetty. Is this a jetty-specific issue is has generally related with the fact that view model is marshalled into

Using view model as parameter in restful inteface

2017-10-05 Thread Vladimir Nišević
I must provide a REST service accepting more complex view model as input parameter. My view model parameter would look like @DomainObject(nature = Nature.VIEW_MODEL, objectType = "OfferTemplateFilter") @XmlRootElement(name = "OfferTemplateFilter") @XmlAccessorType(XmlAccessType.FIELD) @Getter

Re: Addon module isis-module-settings is not working after upgrade to Isis 1.15.0

2017-08-24 Thread Vladimir Nišević
bove stack > trace) > > thx > Dan > > On Thu, 24 Aug 2017 at 06:50 Vladimir Nišević <vnise...@gmail.com> wrote: > > > Hi, I have an issue with latest Isis version 1.15.0 and module > > isis-module-settings (in both addon versions, 1.15-SNAPSHOT and 1.14.0) >

Addon module isis-module-settings is not working after upgrade to Isis 1.15.0

2017-08-23 Thread Vladimir Nišević
Hi, I have an issue with latest Isis version 1.15.0 and module isis-module-settings (in both addon versions, 1.15-SNAPSHOT and 1.14.0) How to reproduce: * Integrate addon with simpleapp * Try to create an Application Settings "New String" Here my fork with simpleapp and addon:

Specifying cssClass in runfime?

2017-08-19 Thread Vladimir Nišević
Hi, I have a requirement to present the background of specific property based on its value or depending on other object properties. Currently I can define cssClass as described https://isis.apache.org/guides/ugfun/ugfun.html#_ugfun_ui-hints_action-icons-and-css at development time. It would be

Issue with auto-reload - getXxx properties not updated

2017-08-18 Thread Vladimir Nišević
Hi, I am trying to implement auto-refresh feature following the guide ( https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_customisation_auto-refresh ) and have an issue there. I have implemented my own HomePage view model, this has an getXxx method representing an field showing in the home

Re: [ANN] Apache Isis version 1.15.0 Released

2017-08-17 Thread Vladimir Nišević
Thanks Dan, great work! 2017-08-17 3:39 GMT+02:00 Stephen Cameron : > It's excellent, my thanks to all those involved. > > On Tue, Aug 15, 2017 at 5:50 PM, Johan Doornenbal > wrote: > > > Congrats Dan. Thank you for all your work!! > > > > >

Re: simpleapp archetype doesn't build

2016-12-23 Thread Vladimir Nišević
Yes, I observe same issue, tried with artifact version 1.13.2 BR,Vladimir 2016-12-23 5:51 GMT+01:00 Stephen Cameron : > Hi, > > I am try to a maven clean build on the SimpleApp archetype and get the > following error message. > > Maybe something in the pom.xml files?

Re: Issue in isis-module-security - in combination with delegateAuthenticationRealm

2016-12-02 Thread Vladimir Nišević
pending on github. The behavior is configurable thru next property in shiro.ini isisModuleSecurityRealm.autoCreateUser=true BR,Vladimir 2016-12-01 16:43 GMT+01:00 Vladimir Nišević <vnise...@gmail.com>: > Hi, understand, ok, will give a try! > > Regs,Vladimir > > > 2016-1

Re: Issue in isis-module-security - in combination with delegateAuthenticationRealm

2016-12-01 Thread Vladimir Nišević
gt; Dan > > On Thu, 1 Dec 2016 at 15:32 Vladimir Nišević <vnise...@gmail.com> wrote: > > > Hi, I am using security module in combination with our Active Directory: > > > >1. Roles and delegate users (without passwords) are created in Isis > >security

Issue in isis-module-security - in combination with delegateAuthenticationRealm

2016-12-01 Thread Vladimir Nišević
Hi, I am using security module in combination with our Active Directory: 1. Roles and delegate users (without passwords) are created in Isis security module 2. Authentication is done thru company Active Directory I think, I've found an issue in this setup: As part of login procedure,

Re: Simpleapp 12.0.1. - Swagger not working when packaging war and deploying to Tomcat

2016-05-19 Thread Vladimir Nišević
> > > Cheers > Dan > > > > > > > > > > On 16 May 2016 at 10:17, Dan Haywood <d...@haywood-associates.co.uk> wrote: > > > Ok, thanks for reporting, I'll take a look hopefully this evening. > > > > Dan. > > On 16 May 2016 10:02 am,

Simpleapp 12.0.1. - Swagger not working when packaging war and deploying to Tomcat

2016-05-16 Thread Vladimir Nišević
Based on discussion in https://issues.apache.org/jira/browse/ISIS-1358 I think I've found an issue, but I cannot create new JIRA issue any more - seems the issue creation policy has been changed, so I am sending the issue on this way. *Steps to reproduce:* 1. Create archetype as described in

Re: Upgrade to 12.0.1 - Apache Isis Maven plugin "validate goal" needs dom or app module? Validation when Isis Addon is used?

2016-04-27 Thread Vladimir Nišević
bootstrapping. > > Basically all we are doing is specifying how much of the metamodel should > be loaded up for validation. Since there's no point validating 3rd party > modules, it should only specify your domain classes in the 'dom' module. > > Hope that helps. > > Da

Upgrade to 12.0.1 - Apache Isis Maven plugin "validate goal" needs dom or app module? Validation when Isis Addon is used?

2016-04-26 Thread Vladimir Nišević
Hi, after upgrading to 12.0.1 and when "mvn clean install" i get exception *[ERROR] Failed to execute goal org.apache.isis.tool:isis-maven-plugin:1.12.1:validate (default) on project my-dom: Execution default of goal org.apache.isis.tool:isis-maven-plugin:1.12.1:validate failed: The class

Re: collection of similar types

2015-11-26 Thread Vladimir Nišević
't using > inheritance with each subtype in its own table. But for this example, they > do, eg: > > @javax.jdo.annotations.Inheritance(strategy = > InheritanceStrategy.NEW_TABLE) /// this... > public class StepSubtype1 extends Step { > > > Either way, always use

Re: collection of similar types

2015-11-23 Thread Vladimir Nišević
Hi, I have perhaps similar issue. I have an object (Order) which contains a list of objects can be different type but all extend from the same superclass (Step). When I execute the action on order thru wicket UI, the properties of concrete classes StepType1 and StepType2 are not loaded. When I do

Re: collection of similar types

2015-11-23 Thread Vladimir Nišević
nk. > > Dan. > On 23 Nov 2015 1:16 pm, "Vladimir Nišević" <vnise...@gmail.com> wrote: > > > Hi, I have perhaps similar issue. > > > > I have an object (Order) which contains a list of objects can be > different > > type but all extend from the s

Re: New and better view models coming in 1.11.0-SNAPSHOT

2015-11-21 Thread Vladimir Nišević
Hi Dan, thank you, this is a really cool feature! The applications I'm building, have often legacy systems and some parts of my domain models are built on service calls to that legacy systems - in that case we build domain models with view models to hold the data from multiple backends and

Re: [ANN] Apache Isis version 1.10.0 Released

2015-11-10 Thread Vladimir Nišević
Hi Dan and Isis team, great work, thank you! Vladimir > Am 10.11.2015 um 09:22 schrieb Dan Haywood : > > The Apache Isis team is pleased to announce the release of Apache Isis > v1.10.0. > > New features in this release include: > * ISIS-1213 - Support for

Re: CLOB property, editing the value thru wicket viewer text field instead of download/upload file

2015-10-07 Thread Vladimir Nišević
lumn(allowsNull="true", jdbcType="CLOB", > sqlType="LONGVARCHAR") > public String getMyLongTextField() { > return myLongTextField; > } > > public void setMyLongTextField(final String myLongTextField) { > this.myLongTextField = myLongTextField;

Re: CLOB property, editing the value thru wicket viewer text field instead of download/upload file

2015-10-07 Thread Vladimir Nišević
Hi Jeroen, sorry, I was to fast with my comment, your proposal works also! Many thanks! Regs,Vladimir 2015-10-07 12:52 GMT+02:00 Vladimir Nišević <vnise...@gmail.com>: > Hi Jeroen, I've used that already, but I have failed thru 2000 chars > restriction. > > Regs,Vladimir >

Re: CLOB property, editing the value thru wicket viewer text field instead of download/upload file

2015-10-06 Thread Vladimir Nišević
teText(@ParameterLayout(multiLine=20) String text) { >setClob(...); > } > public String default0UpdateText() { return > getClob().getChars().toString(); } > > > HTH > Dan > > > > > > > >> On 6 October 2015 at 15:32, Vladimir Nišević

Re: RAD RACE 2015

2015-10-05 Thread Vladimir Nišević
So much truth in your words David! Would really appreciate if someone can find Richards blog. @Dan: many thanks for sharing your RAD Race experience. Vladimir > Am 06.10.2015 um 05:26 schrieb David Tildesley : > > Hi Stephen, >> On Tuesday, 6 October 2015 12:20 AM,

Re: [ANN] Apache Isis version 1.9.0 Released

2015-09-04 Thread Vladimir Nišević
Thanks guys, we will also merge our coming project with 1.9.0 Regs,Vladimir 2015-09-01 23:45 GMT+02:00 Dan Haywood : > The Apache Isis team is pleased to announce the release of Apache Isis > v1.9.0. > > New release includes 18 new features, 50 improvements and 25

Re: Neo4j and Apache Isis

2015-07-14 Thread Vladimir Nišević
Hi Dan, I've just tried out this example but have problems when opening the neo4j server http://localhost:7474/ I've started the app thru webapp - Run maven - jetty:run and Isis starts fine. Run Fixture scripts works as well, I see sample Hosts entites created.. Do I have to start the neo4j

Re: Calling any IntelliJ users

2015-07-13 Thread Vladimir Nišević
Hi Martin, haven't seen your hint before sending the mail, Thanks anyway. Regs,Vladimir 2015-07-13 14:15 GMT+02:00 Vladimir Nišević vnise...@gmail.com: Ok, I think you've ment this one: https://isis.apache.org/guides/cg.html#_maven_helper_plugin Regs,Vladimir 2015-07-13 14:02 GMT+02:00

Re: Calling any IntelliJ users

2015-07-13 Thread Vladimir Nišević
Hi Dan, clickling the link [1] brings up a 404 Not Found Regs,Vladimir 2015-07-08 9:56 GMT+02:00 Dan Haywood d...@haywood-associates.co.uk: Hi folks, for those of you using IntelliJ, I just updated our website to reference the new and improved maven helper plugin that you can install [1].

Re: Calling any IntelliJ users

2015-07-13 Thread Vladimir Nišević
Hi Dan, I've just went thru your guide and want to give you my feedback. After the described steps how to setup the idea in the step maven helper plugin https://isis.apache.org/guides/cg.html#_maven_helper_plugin you assume from chapter 2.1.2 that the Isis source code is already checked out

Re: Accessing to two (or more) relational databases at the same time

2015-06-08 Thread Vladimir Nišević
? Exactely! I can live with that, although it would be good to have automatic transaction begin/commit for other DB's like Isis does it. Dan On 5 June 2015 at 20:36, Vladimir Nišević vnise...@gmail.com wrote: Hi Dan, yes, I have created two domain services representing/managing connections

Re: Accessing to two (or more) relational databases at the same time

2015-06-05 Thread Vladimir Nišević
? otherwise, I have some thoughts... Cheers Dan On 21 May 2015 at 05:51, Vladimir Nišević vnise...@gmail.com wrote: Hi guys, we have a situation where we need to access to two(or more) oracle and one ms-sql database and read/write data from/to this databases at the same time. I see

Re: Validate method not working

2015-05-30 Thread Vladimir Nišević
. 2015-05-30 11:41 GMT-03:00 Vladimir Nišević vnise...@gmail.com: Hi ,Gabriel, is the price a property of domain object or action? Show us a whole class. Check http://isis.apache.org/how-tos/how-to-02-100-How-to-validate-user-input-for-a-property.html or http://isis.apache.org/how-tos

Fwd: Entity action with Clob parameter thru restful service

2015-03-12 Thread Vladimir Nišević
Hi there, here my question I've posted in isis dev mailing list. Probably it is isis-users question. Maybe someone can help me with a hint. BR,Vladimir Anfang der weitergeleiteten E‑Mail: Von: Vladimir Nišević vnise...@gmail.com Datum: 06. März 2015 10:00:53 MEZ An: d...@isis.apache.org d

Re: Entity action with Clob parameter thru restful service

2015-03-12 Thread Vladimir Nišević
. Regs,Vladimir 2015-03-11 21:10 GMT+01:00 Martin Grigorov mgrigo...@apache.org: Hi, I haven't used Isis restful support yet but let me think loud on your questions: On Wed, Mar 11, 2015 at 6:33 PM, Vladimir Nišević vnise...@gmail.com wrote: Hi there, here my question I've posted in isis

Re: Using property files to setup IsisSystemForTest

2014-12-04 Thread Vladimir Nišević
discovered by the @DomainService annotation. We've had no requirement to use isis.properties in our integtest projects so far, perhaps you can share the reason why the current situation doesn't work for you? Cheers, Jeroen On Mon, Nov 24, 2014 at 11:52 AM, Vladimir Nišević vnise

Wicket viewer - Clob/Blob as return value of an domain service action, download file...

2014-12-04 Thread Vladimir Nišević
Hi there, I'm trying to implement an action on Domain Service (callable form menu) with an Clob return value e.g. String content = HiThere; return new org.apache.isis.applib.value.Clob(addresses.txt, new MimeType(text, plain), content.toCharArray()); Would expect to get an Save As dialog to

Re: Upgrade Jackson from 1.9.11 to 2.4.3

2014-11-26 Thread Vladimir Nišević
, 2014 at 5:03 PM, Dan Haywood d...@haywood-associates.co.uk wrote: That'll probably be ok to do, yes. Could you raise a ticket in JIRA, please? Thx Dan On 21 November 2014 14:51, Vladimir Nišević vnise...@gmail.com wrote: Hi guys, we are using ISIS with custom json

Using property files to setup IsisSystemForTest

2014-11-24 Thread Vladimir Nišević
Hi guys, based on example from ToDo, we have wrote an our own AppSystemInitializier, where we building our own IsisSystemForTest but with the difference that we want to reuse current property files, and not explicitly declare same we have in the properties again (e.g. domain services). So the

Upgrade Jackson from 1.9.11 to 2.4.3

2014-11-21 Thread Vladimir Nišević
Hi guys, we are using ISIS with custom json representation of our responses, and for that purposes we are using Jackson https://github.com/FasterXML/jackson We want to use 2.4.x-version, but Isis is currently using 1.9.11 Is there any chance to get an upgrade of isis to 2.4.3 ? Regards,Vladimir

Usage of multiple DomainObjectContainers ?

2014-10-01 Thread Vladimir Nišević
Hi guys, I have a requirement where parts of my domain objects come from different sources. a. reational database b. elasticsearch (accessible thru REST interface) What would be a feasible approach? My first idea was to introduce a view models and instantiate them manually and fill them from

Re: Usage of multiple DomainObjectContainers ?

2014-10-01 Thread Vladimir Nišević
(at minimum) fork it into isisaddons [1] Cheers Dan [1] http://www.isisaddons.org/ On 1 October 2014 08:44, Vladimir Nišević vnise...@gmail.com wrote: Hi guys, I have a requirement where parts of my domain objects come from different sources. a. reational database b. elasticsearch

Re: using externalized configuration parameter in a domain service

2014-09-24 Thread Vladimir Nišević
store such stuff in the database. Other add-ons listed at [2] Cheers Dan [1] https://github.com/isisaddons/isis-module-settings [2] http://www.isisaddons.org/ On 23 September 2014 14:08, Vladimir Nišević vnise...@gmail.com wrote: Found on my own the answer in documentation

Re: using externalized configuration parameter in a domain service

2014-09-24 Thread Vladimir Nišević
) { this.properties = properties; } } On Wed, Sep 24, 2014 at 9:33 AM, Vladimir Nišević vnise...@gmail.com wrote: Hi Dan, yes I saw the Settings add-on. Bur I need to use the configuration parameter when instantiating my domain service (Isis biotstrap?). As far

ViewModel as return value of domain service

2014-09-23 Thread Vladimir Nišević
Hi everybody, here my second question today. I need to provide a domain service which handles multiple elasticsearch and database queries and builds a non persistent domain object and gives that as a response to the 3rd party client thru REST API. So my idea is to define a ViewModel classes

Re: Adding data Nucleus to Eclipse

2014-01-03 Thread Vladimir Nišević
Hi, Eclipse has various perspectives. When developing Java, you usually use one of this perspectives: Java or Java EE. Perspective Java EE comes with specific Eclipse plugins - J2EE Development - see http://www.eclipse.org/downloads/moreinfo/jee.php I've observed that Datanucleus plugin and Add