Re: persist a new Object

2015-03-11 Thread Martin Grigorov
Hi, I think you need something like: if (!(this instanceof javax.jdo.spi.PersistenceCapable)) { return null; } OIDImpl longIdentity = (OIDImpl) JDOHelper.getObjectId(this); return longIdentity.getKeyValue(); Martin Grigorov Funemployed! Available for hire! Wicket Training and Consulting

persist a new Object

2015-03-11 Thread Lechner Andreas
Hi all, Maybe i have overseen something. I want to persist MyObject. It has a member ID which is a @PrimaryKey and @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY). When id do: PersistenceManager jdoPersistenceManager = isisJdoSupport.getJdoPersistenceManager(); MyObject

Re: Entity action with Clob parameter thru restful service

2015-03-11 Thread Martin Grigorov
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 dev mailing list. Probably it is isis-users question. Maybe someone can help me with

Re: Displaying Chart in HomePage

2015-03-11 Thread sunand p
Hi Martin, I have limited knowledge on Apache Wicket, just digging in to the WickedCharts isisaddons I found that we already have a ComponentFactory called StandaloneValueAsWickedChartFactory which does what you say, isn't it? Can I reuse it? If yes, how? Also the document

Commercial support availability for Apache Isis

2015-03-11 Thread Andrew Voumard
Hi, I am considering the possibility of using Apache Isis for a commercial project. While I am aware of the community based support available for Apache Isis, can anyone advise whether any companies offer any levels of commercial support for Apache Isis (ex. priority bug fixing, custom

Re: Displaying Chart in HomePage

2015-03-11 Thread Martin Grigorov
Hi, Take a look at https://github.com/martin-g/isis-wicket-waveform. It is very similar project to what you need. -dom module has Waveform object -fixture module creates 3 WaveformObject (this is a domain entity) instances, each of them having an instance of a Waveform -webapp module defines a