Re: JAXB annotated classes as domain objects

2016-01-25 Thread Vishma Senadhi Dias
Hi Dan, Can you please tell me a way to enter data into a view model? I cannot find a way to update contents of the view model created via JAXB annotations. On 1/25/2016 5:25 PM, Dan Haywood wrote: Hi Vishma, What's the objective here... what do you want the end user to be able to do, and

Apache Isis releases are now tagged under "rel/"

2016-01-25 Thread Dan Haywood
Hi folks, [this mail is for those that build Apache Isis from source code; ignore otherwise] The ASF board recently gave guidance that git release tags should be held under "refs/tags/rel" branch, with any tags pushed to this path unmodifiable. This provides appropriate traceability/provenance

Re: Summernote and Code view?

2016-01-25 Thread Martin Grigorov
Hello Marianne, On Mon, Jan 25, 2016 at 6:30 PM, Marianne Hagaseth < marianne.hagas...@marintek.sintef.no> wrote: > Hi, > Thanks a lot for this summernote editor integration! > https://github.com/isisaddons/isis-wicket-summernote > > Just two questions: > > 1) How do I enter the code view

Summernote and Code view?

2016-01-25 Thread Marianne Hagaseth
Hi, Thanks a lot for this summernote editor integration! https://github.com/isisaddons/isis-wicket-summernote Just two questions: 1) How do I enter the code view text to the domain property? For instance, I want to set a String property of a Domain object to for instance " Passenger ships

Re: why a GET method would store value to database?

2016-01-25 Thread Martin Grigorov
Hi, I believe there are two issues here: 1) Isis doesn't extract the primary key (4028dd814d2213d8014d2213d861) from "4028dd814d2213d8014d2213d861[OID]tm.dom.modules.assets.Device" before passing it to DataNucleus 2) DataNucleus uses misleading exception message. The method call is

JAXB annotated classes as domain objects

2016-01-25 Thread Vishma Senadhi Dias
Hi, I need some assistance with displaying web ui according to the SOAP response. Simple Example: Let's say I have a JAXB annotated object called "Temperature". I have a SOAP web service which needs a place co-ordinates as an input and returns Temperature value as an Output. I have

Re: JAXB annotated classes as domain objects

2016-01-25 Thread Dan Haywood
Hi Vishma, What's the objective here... what do you want the end user to be able to do, and what do you want to be shown in the app? What's are the domain concepts involved? Perhaps you could share some of the code you've written thus far to help us understand. If you can upload what you have

Re: JAXB annotated classes as domain objects

2016-01-25 Thread Vishma Senadhi Dias
Hi Dan, Thanks for replying. My objective is to use Apache ISIS to develop web ui for a web service. I do not need to save the data. Just need to display the data and update. Just a simple CRUD application. End user should be able to create,read,update and delete the contents of the domain