Re: Calling repository methods from a Wicket page

2016-10-05 Thread Kambiz Darabi
; https://github.com/apache/isis/blob/rel/isis-1.13.0/core/viewer-wicket-ui/src/main/java/org/apache/isis/viewer/wicket/ui/pages/accmngt/register/RegisterPanel.java#L127 > > > > On 29 September 2016 at 22:08, Kambiz Darabi <dar...@m-creations.com> wrote: > >> Hi, >> >&

Calling repository methods from a Wicket page

2016-09-29 Thread Kambiz Darabi
Hi, in one of our applications, we have a Wicket page which is mounted onto a context path and streams a video resource to the calling client, based on some page parameters. Up to now, this page uses http calls to the RO viewer to perform the domain-related validations, lookups etc. I would

Re: WebServer --port option not working

2016-09-29 Thread Kambiz Darabi
button. Thanks again, Joerg! On 2016-09-29 10:53 CEST, "Rade, Joerg / Kuehne + Nagel / Ham GI-DP" <joerg.r...@kuehne-nagel.com> wrote: > Hi Kambiz, > > I'm using > > mvn -Djetty.port=9090 jetty:run > > and it works for me with 1.13.0 > > -j > --

Re: WebServer --port option not working

2016-09-29 Thread Kambiz Darabi
m GI-DP < > joerg.r...@kuehne-nagel.com>: > >> Hi Kambiz, >> >> I'm using >> >> mvn -Djetty.port=9090 jetty:run >> >> and it works for me with 1.13.0 >> >> -j >> -Ursprüngliche Nachricht- >> Von: Kambi

WebServer --port option not working

2016-09-28 Thread Kambiz Darabi
return value doesn't contain the port property which is present in configurationBuilder.configuration as isis.embedded-web-server.port=12080 Could someone please verify this? Maybe I'm doing something wrong. Thank you Kambiz Kambiz Darabi -- m-creations gmbh Acker 2 55116 Mainz Germany W

Re: Binary, non-base 64 upload

2016-08-06 Thread Kambiz Darabi
om/mtgrigorov > > On Fri, Aug 5, 2016 at 4:27 PM, Kambiz Darabi <dar...@m-creations.com> > wrote: > >> Hello Martin, >> >> On 2016-08-05 13:42 CEST, Martin Grigorov <mgrigo...@apache.org> wrote: >> >> > [...] >> > The problem h

Re: Binary, non-base 64 upload

2016-08-05 Thread Kambiz Darabi
ons as result of export functions, etc.) as >> well >> > as means to persist them (i.e. move them to another >> > container/bucket/folder). >> > >> > We then developed a custom servlet that handles download and upload and >> > integrate them wit

Re: Binary, non-base 64 upload

2016-08-05 Thread Kambiz Darabi
a custom servlet that handles download and upload and > integrate them with isis. This enabled us to implement features like forced > attachment content disposition, or on-demand image resizing. > > Should you have other ideas or questions, feel free to ask. > > > Best rega

Code formatter settings

2016-05-13 Thread Kambiz Darabi
Hi, are the Eclipse formatter settings in mothballed/src/site/resources/ide/eclipse/templates/Apache-code-style-formatting.xml still valid or is there an updated version somewhere else and I just don't find it? Thanks Kambiz

Re: Isis security module questions

2016-05-13 Thread Kambiz Darabi
Hi Óscar, On 2016-05-12 17:17 CEST, Óscar Bou - GOVERTIS wrote: > Regarding Users and Roles current implementation, perhaps we could > refactor it using interfaces, giving: > - a default implementation (the current JDO-based one that persists to > the database). > - a new

Re: Multi-Database

2016-05-13 Thread Kambiz Darabi
entities in both databases), it either commits > or rolls back the entire transaction in both databases. Is this the > way it works? > > -----Original Message- > From: Kambiz Darabi [mailto:dar...@m-creations.com] > Sent: Thursday, April 28, 2016 6:57 AM > To: Guilherme541 Gamer

Isis security module questions

2016-05-12 Thread Kambiz Darabi
could guide us on how to tackle the problem. Thanks Kambiz Kambiz Darabi -- m-creations gmbh Acker 2 55116 Mainz Germany W: http://www.m-creations.com E: dar...@m-creations.com T: +49 6131 6224417 F: +49 6131 6224418 -- Registered Office: Mainz, HRB Mainz 7382 Managing Directors: Frank Pacholak

Re: Multi-Database

2016-04-29 Thread Kambiz Darabi
s how I usually contact him: andydatanucleus.org > > Mentioning you are part of the Apache Isis community (and my name) > won't do any harm. Do cc me if you wish. > > Cheers > Dan > > On 29 April 2016 at 11:42, Kambiz Darabi <dar...@m-creations.com> > wrote: &

Re: Multi-Database

2016-04-28 Thread Kambiz Darabi
Hi Moacir, we worked on the same problem recently and have a moderately working solution, but it involved a patch to DataNucleus itself. This is how an entity is annotated: @PersistenceCapable(identityType = IdentityType.DATASTORE, schema = "subscription_service", table = "subscribers")

Re: Build error during org.apache.isis.tool:isis-maven-plugin:1.11.1:swagger

2016-04-28 Thread Kambiz Darabi
Hi, I have the same error with 1.12.1 (cf. stack trace below) while running in my integration test module and using the real AppManifest as suggested in ISIS-1295 [1] (although I had to comment out the security module temporarily because it led to another error) . I am trying to debug it and it

Collection argument for service

2016-02-03 Thread Kambiz Darabi
Hi, I'm wrestling with a service which is going to be called by a hand-written javascript client (written by others). The client wants to send something like this: { "urls": [ { "id": "test-1", "url": "http://example.com/abc; }, { "id": "test-2", "url": "http://example.com/def; } ] } and

Re: Spiro support in Isis

2015-08-17 Thread Kambiz Darabi
Hi Jeroen, On 2015-08-17 17:44 CEST, Jeroen van der Wal jer...@stromboli.it wrote: Hi Kambiz, Do you want to use Spiro as a client against an Apache Isis application or creating a bespoke interface and aiming for lighter JSON payloads? In the latter case you might want to take a look at

Spiro support in Isis

2015-08-17 Thread Kambiz Darabi
Hi, is Isis capable of supporting the simple domain model as described in section 1.25.1 of the RO spec? I ask because of Richard Pawson's answer to my question on github: https://github.com/SpiroLibraries/Spiro.Modern/issues/2 I'm afraid this is not going to be straightforward. Either Isis

Running tests in tck-viewer-restful-objects

2015-07-20 Thread Kambiz Darabi
Hi, I'm not sure whether it was a good idea to post the below message to the dev mailing list. Sorry for cross-posting but maybe someone on this list can help me. Thank you for your help. Kambiz Start of forwarded message From: Kambiz Darabi dar...@m

Re: POSTing to an /objects/{domainType} resource

2015-07-15 Thread Kambiz Darabi
Hello Jörg, On 2015-07-15 09:07 CEST, Rade, Joerg / Kuehne + Nagel / Ham GI-PS joerg.r...@kuehne-nagel.com wrote: Hi Kambiz, welcome to the list! When you GET http://yourhost:yourport/your-webapp/restful/services you should see a list of available resources. If you drill down further,

POSTing to an /objects/{domainType} resource

2015-07-14 Thread Kambiz Darabi
track? Thank you Kambiz Darabi -- m-creations gmbh Acker 2 55116 Mainz Germany W: http://www.m-creations.com E: dar...@m-creations.com -- Registered Office: Mainz, HRB Mainz 7382 Managing Directors: Frank Pacholak, Kambiz Darabi