Re: ISIS Newbie

2014-01-03 Thread Dan Haywood
On 3 January 2014 12:14, Ged Byrne wrote: > Hi All, > > I'm working with Dharmesh and I thought I'd take a step back and ask a more > general question. > Thanks, Ged... what follows is helpful. > [snip] > > The problem is our requirements are all in screen flows that are using an > inductive

Re: ISIS Newbie

2014-01-03 Thread Ged Byrne
Hi All, I'm working with Dharmesh and I thought I'd take a step back and ask a more general question. First some background: we want to use domain driven design to create a set of entities and services that can be used by multiple applicaitons through the Restful Object interface. The problem is

Re: Adding data Nucleus to Eclipse

2014-01-03 Thread Jeroen van der Wal
Hi Dave, Vladimir is right: the DN plugin only appears in the Package explorer which is available by default in Java perspective. Jeroen On Fri, Jan 3, 2014 at 12:33 PM, Dave Potts wrote: > On 03/01/14 11:25, Vladimir Nišević wrote: >> >> Hi, Eclipse has various perspectives. When developing Ja

Re: Isis: File upload

2014-01-03 Thread Jeroen van der Wal
If you put the CLOB or BLOB on a domain object it is persisted but you can also pass a CLOB/BLOB as a parameter of a method of a domain service: @Named("Administration") public class AdministrationService { public void processFile(final @Named("File to process") Blob fileToProcess) {

Re: Adding data Nucleus to Eclipse

2014-01-03 Thread Dave Potts
On 03/01/14 11:25, Vladimir Nišević wrote: 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

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 a

Application Identity: Issue with Compsite PK class with multiple attributes.

2014-01-03 Thread chittari.varma
I am using ISIS 1.3.0 with JDO 3.0.1, Data Nucleus 3.2.4 Using JDO Application Identity strategy, I have a composite PK class with two attributes(PK fields of type String). As per the JDO specifications, PK class has overridden the following methods: hascode, equals and toString. And it has Co

RE: ISIS Newbie

2014-01-03 Thread Chohan, Dharmesh
Hi I have 2 domain objects objectA and object. I can persist objectA and from objectA screen the control is returned to objectB domain screen. On objectB form, the screen displays the domain properties. However the screen also displays the title/header as "General" and a "Edit" button. I hav

Isis: File upload

2014-01-03 Thread chittari.varma
In ISIS, using BLOB or CLOB type file upload feature can be enabled. But this feature actually stores the uploaded file in the database. But, I will like to process the records in a file uploaded instead of storing the entire file in Database. Is there any listener kind of feature can we use to

RE: Application Identity: Issue with Compsite PK class with multiple attributes.

2014-01-03 Thread chittari.varma
I am using ISIS 1.3.0 with JDO 3.0.1, Data Nucleus 3.2.4 Using JDO Application Identity strategy, I have a composite PK class with two attributes(PK fields of type String). As per the JDO specifications, PK class has overridden the following methods: hascode, equals and toString. And it has C