Discussion:
[Middlegen-user] Problem with Many2Many relationship
Emil Goldfarb
2003-05-22 17:42:02 UTC
Permalink
I have been experimenting with Middlegen on a simple set of Database
tables. I am modeling Person - Group many2many relationship by using
three tables PERSONS, GROUP and a relating table MEMBERSHIP, which has
only 2 columns person_pk and group_pk.



I run middlegen with the follwing configuration:



<table generate="true" name="PERSONS" />

<table generate="true" name="GROUPS" />

<table generate="false" name="MEMBERSHIP" />



<many2many>

<tablea generate="true" name="PERSONS"/>

<jointable name="MEMBERSHIP" generate="false"/>

<tableb generate="true" name="GROUPS"/>

</many2many>





When the GUI comes up, I see the two tables with the dashed line in
between.



When I look at the generated code I still get methods for
getMemberships() and setMemberships() which return and accept
Collections of membership objects which are not defined or generated. Is
this normal, or am I doing something wrong.



In addition I have tried modifying the Directionality of the
relationships on the GUI and it has had no impact on the generated code.
I have noticed this in all cases that I have modeled not only in this
one explained above.



Thanks for your help



Emil
Dos Santos
2003-05-30 12:50:05 UTC
Permalink
Hi all, I think I've finally minimized my middlegen
build file but I'm still having problems deploying the
generated .jar in Jboss.

The thing is that I thought it might have been a
problem with a recursive relationship that I had due
to the fact that this was the only bean that was
giving me trouble. I eliminated this relationship in
my database (using MSSQL 2000), for testing purposes
and it still throws exceptions while deploying.

The error is:

[ObjectName: jboss.j2ee:jndiName=myName,service=EJB
state: FAILED
I Depend On:
Depends On Me:
org.jboss.deployment.DeploymentException: Error while
creating table; - nested throwable:
(java.sql.SQLException: [Microsoft][SQLServer 2000 Dri
ver for JDBC][SQLServer]Line 1: Incorrect syntax near
'.'.)]

I have no clue as to why it tries to create the table,
my build file doesn't include anything of the sort.

I would truly truly appreciate any help.

Thanx.



__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
D***@parsec.co.uk
2003-05-30 12:58:05 UTC
Permalink
Jboss attempts to create the tables by default. To turn this off, add a
'createTable="false"' attribute to the Jboss subtask in ejbdoclet.

David

-----Original Message-----
From: Dos Santos [mailto:***@yahoo.com]
Sent: 30 May 2003 15:49
To: middlegen-***@lists.sourceforge.net
Subject: [Middlegen-user] Error deploying jar in Jboss


Hi all, I think I've finally minimized my middlegen
build file but I'm still having problems deploying the
generated .jar in Jboss.

The thing is that I thought it might have been a
problem with a recursive relationship that I had due
to the fact that this was the only bean that was
giving me trouble. I eliminated this relationship in
my database (using MSSQL 2000), for testing purposes
and it still throws exceptions while deploying.

The error is:

[ObjectName: jboss.j2ee:jndiName=myName,service=EJB
state: FAILED
I Depend On:
Depends On Me:
org.jboss.deployment.DeploymentException: Error while
creating table; - nested throwable:
(java.sql.SQLException: [Microsoft][SQLServer 2000 Dri
ver for JDBC][SQLServer]Line 1: Incorrect syntax near
'.'.)]

I have no clue as to why it tries to create the table,
my build file doesn't include anything of the sort.

I would truly truly appreciate any help.

Thanx.



__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com


-------------------------------------------------------
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Dos Santos
2003-05-30 15:26:09 UTC
Permalink
Hi, thanks for your help. I did what you suggested.
But now I get the following error:

BUILD FAILED
file:C:/middlegen-2.0-b1/build.xml:275: Class
xdoclet.modules.jboss.ejb.
JBossSubTask doesn't support the "createtable"
attribute.

Is this normal? This is where I added the attribute:

<jboss
version="3.0"
xmlencoding="ISO-8859-1"
destdir="${build.ejb-meta.dir}/META-INF"
validatexml="true"
datasource="java:/MSSQLDS"
datasourcemapping="${jboss.datasource.mapping}"
createtable="false"
/>

I appreciate your help.
Post by D***@parsec.co.uk
Jboss attempts to create the tables by default. To
turn this off, add a
'createTable="false"' attribute to the Jboss subtask
in ejbdoclet.
David
-----Original Message-----
Sent: 30 May 2003 15:49
Subject: [Middlegen-user] Error deploying jar in
Jboss
Hi all, I think I've finally minimized my middlegen
build file but I'm still having problems deploying
the
generated .jar in Jboss.
The thing is that I thought it might have been a
problem with a recursive relationship that I had due
to the fact that this was the only bean that was
giving me trouble. I eliminated this relationship in
my database (using MSSQL 2000), for testing purposes
and it still throws exceptions while deploying.
[ObjectName: jboss.j2ee:jndiName=myName,service=EJB
state: FAILED
org.jboss.deployment.DeploymentException: Error
while
(java.sql.SQLException: [Microsoft][SQLServer 2000
Dri
ver for JDBC][SQLServer]Line 1: Incorrect syntax
near
'.'.)]
I have no clue as to why it tries to create the
table,
my build file doesn't include anything of the sort.
I would truly truly appreciate any help.
Thanx.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by D***@parsec.co.uk
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by D***@parsec.co.uk
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-05-30 15:35:03 UTC
Permalink
I fixed this last problem by copying the latest
version of the xdoclet Jboss module into Middlegen,
now I'm having problems with the created SELECTs, what
would you suggest? copying the whole new xdoclet
distribution into middlegen?

Thanks again
Post by Dos Santos
Hi, thanks for your help. I did what you suggested.
BUILD FAILED
file:C:/middlegen-2.0-b1/build.xml:275: Class
xdoclet.modules.jboss.ejb.
JBossSubTask doesn't support the "createtable"
attribute.
<jboss
version="3.0"
xmlencoding="ISO-8859-1"
destdir="${build.ejb-meta.dir}/META-INF"
validatexml="true"
datasource="java:/MSSQLDS"
datasourcemapping="${jboss.datasource.mapping}"
createtable="false"
/>
I appreciate your help.
Post by D***@parsec.co.uk
Jboss attempts to create the tables by default.
To
Post by D***@parsec.co.uk
turn this off, add a
'createTable="false"' attribute to the Jboss
subtask
Post by D***@parsec.co.uk
in ejbdoclet.
David
-----Original Message-----
Sent: 30 May 2003 15:49
Subject: [Middlegen-user] Error deploying jar in
Jboss
Hi all, I think I've finally minimized my
middlegen
Post by D***@parsec.co.uk
build file but I'm still having problems deploying
the
generated .jar in Jboss.
The thing is that I thought it might have been a
problem with a recursive relationship that I had
due
Post by D***@parsec.co.uk
to the fact that this was the only bean that was
giving me trouble. I eliminated this relationship
in
Post by D***@parsec.co.uk
my database (using MSSQL 2000), for testing
purposes
Post by D***@parsec.co.uk
and it still throws exceptions while deploying.
jboss.j2ee:jndiName=myName,service=EJB
Post by D***@parsec.co.uk
state: FAILED
org.jboss.deployment.DeploymentException: Error
while
(java.sql.SQLException: [Microsoft][SQLServer 2000
Dri
ver for JDBC][SQLServer]Line 1: Incorrect syntax
near
'.'.)]
I have no clue as to why it tries to create the
table,
my build file doesn't include anything of the
sort.
Post by D***@parsec.co.uk
I would truly truly appreciate any help.
Thanx.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to
Post by D***@parsec.co.uk
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
Post by D***@parsec.co.uk
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Dos Santos
Post by D***@parsec.co.uk
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-05-30 15:52:02 UTC
Permalink
I fixed this last problem by copying the latest
version of the xdoclet Jboss module into Middlegen,
now I'm having problems with the created SELECTs, what
would you suggest? copying the whole new xdoclet
distribution into middlegen?

Thanks again
Post by Dos Santos
Hi, thanks for your help. I did what you suggested.
BUILD FAILED
file:C:/middlegen-2.0-b1/build.xml:275: Class
xdoclet.modules.jboss.ejb.
JBossSubTask doesn't support the "createtable"
attribute.
<jboss
version="3.0"
xmlencoding="ISO-8859-1"
destdir="${build.ejb-meta.dir}/META-INF"
validatexml="true"
datasource="java:/MSSQLDS"
datasourcemapping="${jboss.datasource.mapping}"
createtable="false"
/>
I appreciate your help.
Post by D***@parsec.co.uk
Jboss attempts to create the tables by default.
To
Post by D***@parsec.co.uk
turn this off, add a
'createTable="false"' attribute to the Jboss
subtask
Post by D***@parsec.co.uk
in ejbdoclet.
David
-----Original Message-----
Sent: 30 May 2003 15:49
Subject: [Middlegen-user] Error deploying jar in
Jboss
Hi all, I think I've finally minimized my
middlegen
Post by D***@parsec.co.uk
build file but I'm still having problems deploying
the
generated .jar in Jboss.
The thing is that I thought it might have been a
problem with a recursive relationship that I had
due
Post by D***@parsec.co.uk
to the fact that this was the only bean that was
giving me trouble. I eliminated this relationship
in
Post by D***@parsec.co.uk
my database (using MSSQL 2000), for testing
purposes
Post by D***@parsec.co.uk
and it still throws exceptions while deploying.
jboss.j2ee:jndiName=myName,service=EJB
Post by D***@parsec.co.uk
state: FAILED
org.jboss.deployment.DeploymentException: Error
while
(java.sql.SQLException: [Microsoft][SQLServer 2000
Dri
ver for JDBC][SQLServer]Line 1: Incorrect syntax
near
'.'.)]
I have no clue as to why it tries to create the
table,
my build file doesn't include anything of the
sort.
Post by D***@parsec.co.uk
I would truly truly appreciate any help.
Thanx.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to
Post by D***@parsec.co.uk
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
Post by D***@parsec.co.uk
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Dos Santos
Post by D***@parsec.co.uk
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-05-30 19:13:06 UTC
Permalink
Hi, I'm having trouble using the latest version of
xdoclet when building. I know this probably has
nothing to do with middlegen but meybe somebody can
help me.

The problem is that I wasn't able to use certain
attributes with the xdoclet version that comes with
middlegen. Instead of copying the whole new xdoclet
distribution into my lib directory I wanted to create
a new path, say xdoclet.class.path that I could use in
edoclet. This is what I did:

Right after the lib.class.path declaration I added:
<path id="xdoclet.class.path">
<fileset dir="C:\xdoclet1.2b2\lib">
<include name="*.jar"/>
</fileset>
</path>

Then, inside the ejbdoclet target element I added:

<taskdef
name="ejbdoclet"
classname="xdoclet.modules.ejb.EjbDocletTask"
classpathref="xdoclet.class.path"
/>

The problem is that when I build, I get the following
message:
[ejbdoclet] Make sure the jar file containing the
ejbdoclet class is on the clas
spath specified in the <taskdef> that defined {2}.
These classes are needed in o
rder to generate correct output.

I appreciate any input.
Thanx


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-02 10:46:02 UTC
Permalink
Hi, I'm having trouble using the latest version of
xdoclet when building. I know this probably has
nothing to do with middlegen but meybe somebody can
help me.

The problem is that I wasn't able to use certain
attributes with the xdoclet version that comes with
middlegen. Instead of copying the whole new xdoclet
distribution into my lib directory I wanted to create
a new path, say xdoclet.class.path that I could use in
edoclet. This is what I did:

Right after the lib.class.path declaration I added:
<path id="xdoclet.class.path">
<fileset dir="C:\xdoclet1.2b2\lib">
<include name="*.jar"/>
</fileset>
</path>

Then, inside the ejbdoclet target element I added:

<taskdef
name="ejbdoclet"
classname="xdoclet.modules.ejb.EjbDocletTask"
classpathref="xdoclet.class.path"
/>

The problem is that when I build, I get the following
message:
[ejbdoclet] Make sure the jar file containing the
ejbdoclet class is on the clas
spath specified in the <taskdef> that defined {2}.
These classes are needed in o
rder to generate correct output.

I appreciate any input.
Thanx


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Konstantin Priblouda
2003-06-02 10:59:09 UTC
Permalink
Post by Dos Santos
Hi, I'm having trouble using the latest version of
xdoclet when building. I know this probably has
nothing to do with middlegen but meybe somebody can
help me.
The problem is that I wasn't able to use certain
attributes with the xdoclet version that comes with
middlegen. Instead of copying the whole new xdoclet
distribution into my lib directory I wanted to
create
a new path, say xdoclet.class.path that I could use
in
<path id="xdoclet.class.path">
<fileset dir="C:\xdoclet1.2b2\lib">
<include name="*.jar"/>
</fileset>
</path>
<taskdef
name="ejbdoclet"
classname="xdoclet.modules.ejb.EjbDocletTask"
classpathref="xdoclet.class.path"
/>
The problem is that when I build, I get the
following
[ejbdoclet] Make sure the jar file containing the
ejbdoclet class is on the clas
spath specified in the <taskdef> that defined {2}.
These classes are needed in o
rder to generate correct output.
I would also try to add jar files xdoclet depends on
to the same classpath...

regards,

=====
----[ Konstantin Pribluda ( ko5tik ) ]----------------
Zu Verst�rkung meines Teams suche ich ab Sofort einen
Softwareentwickler[In] f�r die Festanstellung.
Arbeitsort: Mainz
Skills: Programieren, Kentnisse in OpenSource-Bereich
----[ http://www.pribluda.de ]------------------------

__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-02 11:08:12 UTC
Permalink
Thanks for your concern, could you give me an example
of one of these jars. I'm referencing xdoclet's lib
directory.

I appreciate your help.
Post by Dos Santos
Post by Dos Santos
Hi, I'm having trouble using the latest version of
xdoclet when building. I know this probably has
nothing to do with middlegen but meybe somebody
can
Post by Dos Santos
help me.
The problem is that I wasn't able to use certain
attributes with the xdoclet version that comes
with
Post by Dos Santos
middlegen. Instead of copying the whole new
xdoclet
Post by Dos Santos
distribution into my lib directory I wanted to
create
a new path, say xdoclet.class.path that I could
use
Post by Dos Santos
in
Right after the lib.class.path declaration I
<path id="xdoclet.class.path">
<fileset dir="C:\xdoclet1.2b2\lib">
<include name="*.jar"/>
</fileset>
</path>
<taskdef
name="ejbdoclet"
classname="xdoclet.modules.ejb.EjbDocletTask"
classpathref="xdoclet.class.path"
/>
The problem is that when I build, I get the
following
[ejbdoclet] Make sure the jar file containing the
ejbdoclet class is on the clas
spath specified in the <taskdef> that defined {2}.
These classes are needed in o
rder to generate correct output.
I would also try to add jar files xdoclet depends on
to the same classpath...
regards,
=====
----[ Konstantin Pribluda ( ko5tik )
]----------------
Zu Verst�rkung meines Teams suche ich ab Sofort
einen
Softwareentwickler[In] f�r die Festanstellung.
Arbeitsort: Mainz
Skills: Programieren, Kentnisse in
OpenSource-Bereich
----[ http://www.pribluda.de
]------------------------
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Konstantin Priblouda
2003-06-02 11:36:27 UTC
Permalink
Post by Dos Santos
Thanks for your concern, could you give me an
example
of one of these jars. I'm referencing xdoclet's lib
directory.
I appreciate your help.
commons-collections-2.0.jar
commons-logging.jar
log4j.jar

YOur problem probably arises from some unsatified
dependency. You may turn on ant debugging
to see where classloader barfs.

r
egards,

=====
----[ Konstantin Pribluda ( ko5tik ) ]----------------
Zu Verst�rkung meines Teams suche ich ab Sofort einen
Softwareentwickler[In] f�r die Festanstellung.
Arbeitsort: Mainz
Skills: Programieren, Kentnisse in OpenSource-Bereich
----[ http://www.pribluda.de ]------------------------

__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-02 12:04:07 UTC
Permalink
Sadly all those files you've mentioned are in my
directory. I still have no clue as to what could be
going on.

Thanks for your input. If you come up with something
else it would be greatly appreciated.
Post by Konstantin Priblouda
Post by Dos Santos
Thanks for your concern, could you give me an
example
of one of these jars. I'm referencing xdoclet's
lib
Post by Dos Santos
directory.
I appreciate your help.
commons-collections-2.0.jar
commons-logging.jar
log4j.jar
YOur problem probably arises from some unsatified
dependency. You may turn on ant debugging
to see where classloader barfs.
r
egards,
=====
----[ Konstantin Pribluda ( ko5tik )
]----------------
Zu Verst�rkung meines Teams suche ich ab Sofort
einen
Softwareentwickler[In] f�r die Festanstellung.
Arbeitsort: Mainz
Skills: Programieren, Kentnisse in
OpenSource-Bereich
----[ http://www.pribluda.de
]------------------------
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Konstantin Priblouda
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Konstantin Priblouda
2003-06-02 12:12:38 UTC
Permalink
Post by Dos Santos
Sadly all those files you've mentioned are in my
directory. I still have no clue as to what could be
going on.
Thanks for your input. If you come up with something
else it would be greatly appreciated.
Activate ant debug. This shall give you some clue what
class is really missing,

regards,

=====
----[ Konstantin Pribluda ( ko5tik ) ]----------------
Zu Verst�rkung meines Teams suche ich ab Sofort einen
Softwareentwickler[In] f�r die Festanstellung.
Arbeitsort: Mainz
Skills: Programieren, Kentnisse in OpenSource-Bereich
----[ http://www.pribluda.de ]------------------------

__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-02 12:45:03 UTC
Permalink
Hi Konstantin, I truly appreciate your help. I finally
found the missing jar file. Now I have a whole other
problem which I'll make reference to in another post.

Thanks again.
Post by Emil Goldfarb
Post by Dos Santos
Sadly all those files you've mentioned are in my
directory. I still have no clue as to what could
be
Post by Dos Santos
going on.
Thanks for your input. If you come up with
something
Post by Dos Santos
else it would be greatly appreciated.
Activate ant debug. This shall give you some clue
what
class is really missing,
regards,
=====
----[ Konstantin Pribluda ( ko5tik )
]----------------
Zu Verst�rkung meines Teams suche ich ab Sofort
einen
Softwareentwickler[In] f�r die Festanstellung.
Arbeitsort: Mainz
Skills: Programieren, Kentnisse in
OpenSource-Bereich
----[ http://www.pribluda.de
]------------------------
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Emil Goldfarb
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-02 13:09:05 UTC
Permalink
Hi, I've fixed my create table problem (mentioned
below), by setting the Jboss createTable attribute to
false. Now the deployed jar is giving me problems with
the SELECT. It throws the following exception:

[ObjectName:
jboss.j2ee:jndiName=MyBeanLocalHome,service=EJB
state: FAILED
I Depend On:
Depends On Me:
org.jboss.deployment.DeploymentException: Error
compiling EJB-QL
statement 'SELECT DISTINCT OBJECT(o) FROM MyBean o
WHERE o.budget = ?1'
; - nested throwable:
(org.jboss.ejb.plugins.cmp.ejbql.ParseException:
Encounter
ed "o.budget" at line 1, column 57.
Was expecting one of:
"NOT" ...
"(" ...
<COLLECTION_VALUED_PATH> ...
<STRING_VALUED_PATH> ...

It's important to note that in my server log file it
lists all of my localHome classes as started except
for this one. This is quite strange because I think
there's not much of a difference between my tables.
Post by Dos Santos
Post by Emil Goldfarb
Post by Dos Santos
Hi all, I think I've finally minimized my
middlegen
Post by Dos Santos
build file but I'm still having problems
deploying
Post by Emil Goldfarb
Post by Dos Santos
the
generated .jar in Jboss.
The thing is that I thought it might have been a
problem with a recursive relationship that I had
due
Post by Dos Santos
to the fact that this was the only bean that was
giving me trouble. I eliminated this
relationship
Post by Emil Goldfarb
in
Post by Dos Santos
my database (using MSSQL 2000), for testing
purposes
Post by Dos Santos
and it still throws exceptions while deploying.
jboss.j2ee:jndiName=myName,service=EJB
Post by Dos Santos
state: FAILED
org.jboss.deployment.DeploymentException: Error
while
(java.sql.SQLException: [Microsoft][SQLServer
2000
Post by Emil Goldfarb
Post by Dos Santos
Dri
ver for JDBC][SQLServer]Line 1: Incorrect syntax
near
'.'.)]
I have no clue as to why it tries to create the
table,
my build file doesn't include anything of the
sort.
Post by Dos Santos
I would truly truly appreciate any help.
Thanx.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-12 13:25:27 UTC
Permalink
Hi! I was wondering if there's any way of working with
Value Object patterns directly from middlegen or if
I'd have to modify the generated beans to later run
them through xdoclet.

Any input on the subject is welcome.

Thanks.

__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-12 16:47:03 UTC
Permalink
Hi! I'm having a problem with my generated entity
beans and their PK classes.

The thing is that I specify in the GUI for the key
class to be a PK class. When I check the generated
code, it effectively creates the PK class but the
method that's supposed to get the primary key isn't
there. There's a "getter" method for the attribute
that represents the key but it's a String object
instead of being the corresponding PK class object.

I'd truly appreciate any help.

__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Aslak Hellesøy
2003-06-13 06:32:07 UTC
Permalink
Post by Dos Santos
Hi! I'm having a problem with my generated entity
beans and their PK classes.
The thing is that I specify in the GUI for the key
class to be a PK class. When I check the generated
code, it effectively creates the PK class but the
method that's supposed to get the primary key isn't
there. There's a "getter" method for the attribute
that represents the key but it's a String object
instead of being the corresponding PK class object.
XDoclet should generate that for you. Doesn't it?

Aslak
Post by Dos Santos
I'd truly appreciate any help.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Dos Santos
2003-06-12 18:02:01 UTC
Permalink
Hi! i'm sorry to bother you if you already got this
message. I had some problems earlier so I'm sending it
again just in case.

I'm having a problem with my generated entity
beans and their PK classes.

The thing is that I specify in the GUI for the key
class to be a PK class. When I check the generated
code, it effectively creates the PK class but the
method that's supposed to get the primary key isn't
there. There's a "getter" method for the attribute
that represents the key but it's a String object
instead of being the corresponding PK class object.

I'd truly appreciate any help.



__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-12 18:59:01 UTC
Permalink
I found that middlegen has a dataobject attribute for
the cmp20 plugin. The thing is that dataobject is
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently assesses
this in middlegen.

Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of working
with
Value Object patterns directly from middlegen or if
I'd have to modify the generated beans to later run
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Aslak Hellesøy
2003-06-13 06:35:10 UTC
Permalink
Post by Dos Santos
I found that middlegen has a dataobject attribute for
the cmp20 plugin. The thing is that dataobject is
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently assesses
this in middlegen.
Eivind has done some work on this on the CVS
VALUEOBJECT_REFACTORING_BRANCH branch. Check that out.

Aslak
Post by Dos Santos
Thanks.
Eivind Waaler
2003-06-13 06:15:02 UTC
Permalink
Can you describe a bit more detailed:

- What db? Mysql?
- How are your tables defined?
- An example from the bean class you get, with description of what is
wrong with it.

.eivind
Post by Dos Santos
Hi! i'm sorry to bother you if you already got this
message. I had some problems earlier so I'm sending it
again just in case.
I'm having a problem with my generated entity
beans and their PK classes.
The thing is that I specify in the GUI for the key
class to be a PK class. When I check the generated
code, it effectively creates the PK class but the
method that's supposed to get the primary key isn't
there. There's a "getter" method for the attribute
that represents the key but it's a String object
instead of being the corresponding PK class object.
I'd truly appreciate any help.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Eivind Waaler
2003-06-13 06:23:05 UTC
Permalink
I have done some work on this in a separate branch in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from Middlegen CVS repository.

See the following mail thread for more info:
http://sourceforge.net/mailarchive/message.php?msg_id=5077594

.eivind
Post by Dos Santos
I found that middlegen has a dataobject attribute for
the cmp20 plugin. The thing is that dataobject is
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently assesses
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of working
with
Value Object patterns directly from middlegen or if
I'd have to modify the generated beans to later run
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Dos Santos
2003-06-13 10:59:12 UTC
Permalink
No. It generates the PK class but no reference to it
inside the bean class.

For example:

/**
* Returns the code
* @todo support OracleClob,OracleBlob on WLS
* @return the code
*/
public java.lang.String getCode( ) ;

The code is supposed to be the PK of this particular
entity. When I run the middlegen GUI it has a little
key beside this attribute.

Thanks for your help.
Post by Dos Santos
Post by Dos Santos
Hi! I'm having a problem with my generated entity
beans and their PK classes.
The thing is that I specify in the GUI for the key
class to be a PK class. When I check the generated
code, it effectively creates the PK class but the
method that's supposed to get the primary key
isn't
Post by Dos Santos
there. There's a "getter" method for the attribute
that represents the key but it's a String object
instead of being the corresponding PK class
object.
XDoclet should generate that for you. Doesn't it?
Aslak
Post by Dos Santos
I'd truly appreciate any help.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-13 12:23:11 UTC
Permalink
Hi! Thanks for your help. How do I go about getting
the files thatI need for this? I went to the CVS
repository but I couldn't figure out the files that I
needed.

Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate branch
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from Middlegen
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject attribute
for
Post by Dos Santos
the cmp20 plugin. The thing is that dataobject is
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from middlegen or
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans to later
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Dos Santos
Post by Dos Santos
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Eivind Waaler
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Eivind Waaler
2003-06-13 12:30:21 UTC
Permalink
Follow the instructions here to get files from CVS. I use TortoiseCVS for
windows, there I just specify the tag in the Revision tab.

http://sourceforge.net/cvs/?group_id=36044
http://www.tortoisecvs.org/

.eivind
Post by Dos Santos
Hi! Thanks for your help. How do I go about getting
the files thatI need for this? I went to the CVS
repository but I couldn't figure out the files that I
needed.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate branch
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from Middlegen
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject attribute
for
Post by Dos Santos
the cmp20 plugin. The thing is that dataobject is
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from middlegen or
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans to later
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Dos Santos
Post by Dos Santos
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Eivind Waaler
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Dos Santos
2003-06-13 14:26:16 UTC
Permalink
Hi Eivind, thanks for your help. I just wanted to
know, what happens if I do the checkout inside my
middlegen folder? Will it replace the things that I've
done inside it?

I appreciate your help.
Post by Eivind Waaler
Follow the instructions here to get files from CVS.
I use TortoiseCVS for
windows, there I just specify the tag in the
Revision tab.
http://sourceforge.net/cvs/?group_id=36044
http://www.tortoisecvs.org/
.eivind
Post by Dos Santos
Hi! Thanks for your help. How do I go about
getting
Post by Dos Santos
the files thatI need for this? I went to the CVS
repository but I couldn't figure out the files
that I
Post by Dos Santos
needed.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from
Middlegen
Post by Dos Santos
Post by Eivind Waaler
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject
attribute
Post by Dos Santos
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that dataobject
is
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen or
Post by Dos Santos
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans to
later
Post by Dos Santos
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with
sync
Post by Dos Santos
Post by Eivind Waaler
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay
now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with
sync
Post by Dos Santos
Post by Eivind Waaler
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay
now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Dos Santos
Post by Eivind Waaler
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Eivind Waaler
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-13 15:13:10 UTC
Permalink
I'd also like to know where should the valueobject
be.I tried to put it inside the cmp20 tag but it says
that it's not supported.

Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate branch
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from Middlegen
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject attribute
for
Post by Dos Santos
the cmp20 plugin. The thing is that dataobject is
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from middlegen or
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans to later
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Dos Santos
Post by Dos Santos
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Eivind Waaler
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
Dos Santos
2003-06-13 20:00:10 UTC
Permalink
I really need help! I've been trying to update
middlegen with the VALUEOBJECT_REFACTORING_BRANCH but
it doesn't seem to work.

It gives messages like:

file:C:/middlegen/middlegen/app/build.xml:151: Class
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the "valueobject"
attribute.

It's not downloading any middlegen jars into the
samples/lib directory. Should it do that?

I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the valueobject
be.I tried to put it inside the cmp20 tag but it
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate branch
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from
Middlegen
Post by Eivind Waaler
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that dataobject
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from middlegen
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans to
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with
sync
Post by Eivind Waaler
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay
now!
Post by Eivind Waaler
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Eivind Waaler
Post by Dos Santos
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Dos Santos
Post by Eivind Waaler
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
D***@nascopgh.com
2003-06-14 14:57:12 UTC
Permalink
I'd reccommend just grabbing a fresh tree w/ the branch like:

cvs -z 3 -d :pserver:***@cvs.sourceforge.net:/cvsroot/middlegen
login
cvs -z 3 -d :pserver:***@cvs.sourceforge.net:/cvsroot/middlegen co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen





Dos Santos <***@yahoo.com>
Sent by: middlegen-user-***@lists.sourceforge.net
06/13/2003 05:59 PM
Please respond to middlegen-user

To: middlegen-***@lists.sourceforge.net
cc:
Subject: Re: [Middlegen-user] Value Object Patterns


I really need help! I've been trying to update
middlegen with the VALUEOBJECT_REFACTORING_BRANCH but
it doesn't seem to work.

It gives messages like:

file:C:/middlegen/middlegen/app/build.xml:151: Class
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the "valueobject"
attribute.

It's not downloading any middlegen jars into the
samples/lib directory. Should it do that?

I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the valueobject
be.I tried to put it inside the cmp20 tag but it
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate branch
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from
Middlegen
Post by Eivind Waaler
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that dataobject
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from middlegen
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans to
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with
sync
Post by Eivind Waaler
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay
now!
Post by Eivind Waaler
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Eivind Waaler
Post by Dos Santos
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by Dos Santos
Post by Eivind Waaler
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com


-------------------------------------------------------
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now! Click here:
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Dos Santos
2003-06-16 11:07:18 UTC
Permalink
I did that, and for some reason it's not downloading
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/ the
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user] Value
Object Patterns
I really need help! I've been trying to update
middlegen with the VALUEOBJECT_REFACTORING_BRANCH
but
it doesn't seem to work.
file:C:/middlegen/middlegen/app/build.xml:151: Class
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into the
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the valueobject
be.I tried to put it inside the cmp20 tag but it
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from
Middlegen
Post by Eivind Waaler
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that dataobject
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans to
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with
sync
Post by Eivind Waaler
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay
now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Dos Santos
_______________________________________________
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with
sync
Post by Dos Santos
Post by Eivind Waaler
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay
now!
Post by Dos Santos
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Dos Santos
Post by Eivind Waaler
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by D***@nascopgh.com
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by D***@nascopgh.com
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by D***@nascopgh.com
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
=== message truncated ===


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
Eivind Waaler
2003-06-16 11:26:26 UTC
Permalink
When you get Middlegen from CVS you have to build the jar files.

Just write 'ant' in the root directory. Then proceed as normal. If you
look at the build.xml file from this branch you'll see that the <cmp20>
tag has a valueobject="true" attribute. Also the <ejbdoclet> task is set
up with <valueobject> at the right place.

I also generates facade session beans etc.

Let me know if there are problems.

Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not downloading
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/ the
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user] Value
Object Patterns
I really need help! I've been trying to update
middlegen with the VALUEOBJECT_REFACTORING_BRANCH
but
it doesn't seem to work.
file:C:/middlegen/middlegen/app/build.xml:151: Class
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into the
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the valueobject
be.I tried to put it inside the cmp20 tag but it
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from
Middlegen
Post by Eivind Waaler
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that dataobject
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in favor of
valueobject. Is there anything that currently
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way of
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans to
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with
sync
Post by Eivind Waaler
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay
now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Dos Santos
_______________________________________________
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with
sync
Post by Dos Santos
Post by Eivind Waaler
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay
now!
Post by Dos Santos
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Post by Dos Santos
Post by Eivind Waaler
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by D***@nascopgh.com
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync
to
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by D***@nascopgh.com
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by D***@nascopgh.com
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to
Outlook(TM).
=== message truncated ===
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Dos Santos
2003-06-16 12:02:02 UTC
Permalink
Ok, I didn't know that.

I built them and everything seems to be fine. I have
one more question though, what is a session facade? is
it a session wrapper bean?

Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to build
the jar files.
Just write 'ant' in the root directory. Then proceed
as normal. If you
look at the build.xml file from this branch you'll
see that the <cmp20>
tag has a valueobject="true" attribute. Also the
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/ the
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user]
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to update
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into the
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the
valueobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
be.I tried to put it inside the cmp20 tag but
it
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from
Middlegen
Post by Eivind Waaler
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that
dataobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in favor
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
valueobject. Is there anything that
currently
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans
to
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar
with
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
sync
Post by Eivind Waaler
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on
eBay
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar
with
Post by Dos Santos
Post by D***@nascopgh.com
sync
Post by Dos Santos
Post by Eivind Waaler
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on
eBay
Post by Dos Santos
Post by D***@nascopgh.com
now!
=== message truncated ===


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
Eivind Waaler
2003-06-16 12:11:33 UTC
Permalink
Yeah, they're created by the <entityfacade> xdoclet tag. Session beans
wrapping the functionality of the entity beans and transfering all data as
value objects. XDoclet uses dataobjects in the implementation of these, so
we incuded a special version supporting our Middlegen-version of the value
objects..

It has been tested to work quite well. For instance if you want to access
the data remotely, having a facade like that is the best choice. The
entity beans should only be accessed through local interfaces.

.eivind
Post by Dos Santos
Ok, I didn't know that.
I built them and everything seems to be fine. I have
one more question though, what is a session facade? is
it a session wrapper bean?
Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to build
the jar files.
Just write 'ant' in the root directory. Then proceed
as normal. If you
look at the build.xml file from this branch you'll
see that the <cmp20>
tag has a valueobject="true" attribute. Also the
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/ the
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user]
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to update
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into the
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the
valueobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
be.I tried to put it inside the cmp20 tag but
it
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a separate
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch from
Middlegen
Post by Eivind Waaler
CVS repository.
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a dataobject
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that
dataobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in favor
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
valueobject. Is there anything that
currently
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any way
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated beans
to
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar
with
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
sync
Post by Eivind Waaler
to
Post by Dos Santos
Post by Dos Santos
Outlook(TM).
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on
eBay
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
now!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Dos Santos
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar
with
Post by Dos Santos
Post by D***@nascopgh.com
sync
Post by Dos Santos
Post by Eivind Waaler
to Outlook(TM).
Post by Dos Santos
http://calendar.yahoo.com
-------------------------------------------------------
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on
eBay
Post by Dos Santos
Post by D***@nascopgh.com
now!
=== message truncated ===
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Dos Santos
2003-06-16 12:23:34 UTC
Permalink
Yep, actually I've been working with wrapper session
beans on my own. But I'm definitely going to give this
a try.

Thanks again for all your help.
Post by Eivind Waaler
Yeah, they're created by the <entityfacade> xdoclet
tag. Session beans
wrapping the functionality of the entity beans and
transfering all data as
value objects. XDoclet uses dataobjects in the
implementation of these, so
we incuded a special version supporting our
Middlegen-version of the value
objects..
It has been tested to work quite well. For instance
if you want to access
the data remotely, having a facade like that is the
best choice. The
entity beans should only be accessed through local
interfaces.
.eivind
Post by Dos Santos
Ok, I didn't know that.
I built them and everything seems to be fine. I
have
Post by Dos Santos
one more question though, what is a session
facade? is
Post by Dos Santos
it a session wrapper bean?
Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to
build
Post by Dos Santos
Post by Eivind Waaler
the jar files.
Just write 'ant' in the root directory. Then
proceed
Post by Dos Santos
Post by Eivind Waaler
as normal. If you
look at the build.xml file from this branch
you'll
Post by Dos Santos
Post by Eivind Waaler
see that the <cmp20>
tag has a valueobject="true" attribute. Also the
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user]
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to
update
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the
valueobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
be.I tried to put it inside the cmp20 tag
but
Post by Dos Santos
Post by Eivind Waaler
it
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a
separate
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch
from
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Middlegen
Post by Eivind Waaler
CVS repository.
See the following mail thread for more
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a
dataobject
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that
dataobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in
favor
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
valueobject. Is there anything that
currently
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any
way
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated
beans
Post by Dos Santos
Post by Eivind Waaler
to
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online
calendar
Post by Dos Santos
Post by Eivind Waaler
with
=== message truncated ===


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
sabat
2003-06-16 15:17:10 UTC
Permalink
I'd like to check this branch out, but cvs on sourceforge seems to be
broken, and has been for days. Is there some trick for anon access,
other than the standard examples? If not -- is there a build of the
valueobject branch available somewhere else?

-S
Post by Dos Santos
Yep, actually I've been working with wrapper session
beans on my own. But I'm definitely going to give this
a try.
Thanks again for all your help.
Post by Eivind Waaler
Yeah, they're created by the <entityfacade> xdoclet
tag. Session beans
wrapping the functionality of the entity beans and
transfering all data as
value objects. XDoclet uses dataobjects in the
implementation of these, so
we incuded a special version supporting our
Middlegen-version of the value
objects..
It has been tested to work quite well. For instance
if you want to access
the data remotely, having a facade like that is the
best choice. The
entity beans should only be accessed through local
interfaces.
.eivind
Post by Dos Santos
Ok, I didn't know that.
I built them and everything seems to be fine. I
have
Post by Dos Santos
one more question though, what is a session
facade? is
Post by Dos Santos
it a session wrapper bean?
Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to
build
Post by Dos Santos
Post by Eivind Waaler
the jar files.
Just write 'ant' in the root directory. Then
proceed
Post by Dos Santos
Post by Eivind Waaler
as normal. If you
look at the build.xml file from this branch
you'll
Post by Dos Santos
Post by Eivind Waaler
see that the <cmp20>
tag has a valueobject="true" attribute. Also the
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user]
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to
update
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the
valueobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
be.I tried to put it inside the cmp20 tag
but
Post by Dos Santos
Post by Eivind Waaler
it
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a
separate
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch
from
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Middlegen
Post by Eivind Waaler
CVS repository.
See the following mail thread for more
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a
dataobject
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that
dataobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in
favor
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
valueobject. Is there anything that
currently
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any
way
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated
beans
Post by Dos Santos
Post by Eivind Waaler
to
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online
calendar
Post by Dos Santos
Post by Eivind Waaler
with
=== message truncated ===
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
sabat
2003-06-16 15:35:03 UTC
Permalink
Actually, never mind -- the cvs server is obviously overloaded. Retrying
eventually gets a connection.
Post by sabat
I'd like to check this branch out, but cvs on sourceforge seems to be
broken, and has been for days. Is there some trick for anon access,
other than the standard examples? If not -- is there a build of the
valueobject branch available somewhere else?
-S
Post by Dos Santos
Yep, actually I've been working with wrapper session
beans on my own. But I'm definitely going to give this
a try.
Thanks again for all your help.
Post by Eivind Waaler
Yeah, they're created by the <entityfacade> xdoclet
tag. Session beans
wrapping the functionality of the entity beans and
transfering all data as
value objects. XDoclet uses dataobjects in the
implementation of these, so
we incuded a special version supporting our
Middlegen-version of the value
objects..
It has been tested to work quite well. For instance
if you want to access
the data remotely, having a facade like that is the
best choice. The
entity beans should only be accessed through local
interfaces.
.eivind
Post by Dos Santos
Ok, I didn't know that.
I built them and everything seems to be fine. I
have
Post by Dos Santos
one more question though, what is a session
facade? is
Post by Dos Santos
it a session wrapper bean?
Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to
build
Post by Dos Santos
Post by Eivind Waaler
the jar files.
Just write 'ant' in the root directory. Then
proceed
Post by Dos Santos
Post by Eivind Waaler
as normal. If you
look at the build.xml file from this branch
you'll
Post by Dos Santos
Post by Eivind Waaler
see that the <cmp20>
tag has a valueobject="true" attribute. Also the
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
cvs -z 3 -d
login
cvs -z 3 -d
co -r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
cc: Subject: Re: [Middlegen-user]
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to
update
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the
valueobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
be.I tried to put it inside the cmp20 tag
but
Post by Dos Santos
Post by Eivind Waaler
it
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a
separate
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch
from
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Middlegen
Post by Eivind Waaler
CVS repository.
See the following mail thread for more
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a
dataobject
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that
dataobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in
favor
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
valueobject. Is there anything that
currently
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any
way
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated
beans
Post by Dos Santos
Post by Eivind Waaler
to
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online
calendar
Post by Dos Santos
Post by Eivind Waaler
with
=== message truncated ===
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Dos Santos
2003-06-16 15:17:11 UTC
Permalink
Hi Eivind, it's me again. I have a question regarding
the session facades. Is there any way that I could
generate them with remote interfaces while generating
entity beans with local interfaces?

Thanks again.
Post by Eivind Waaler
Yeah, they're created by the <entityfacade> xdoclet
tag. Session beans
wrapping the functionality of the entity beans and
transfering all data as
value objects. XDoclet uses dataobjects in the
implementation of these, so
we incuded a special version supporting our
Middlegen-version of the value
objects..
It has been tested to work quite well. For instance
if you want to access
the data remotely, having a facade like that is the
best choice. The
entity beans should only be accessed through local
interfaces.
.eivind
Post by Dos Santos
Ok, I didn't know that.
I built them and everything seems to be fine. I
have
Post by Dos Santos
one more question though, what is a session
facade? is
Post by Dos Santos
it a session wrapper bean?
Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to
build
Post by Dos Santos
Post by Eivind Waaler
the jar files.
Just write 'ant' in the root directory. Then
proceed
Post by Dos Santos
Post by Eivind Waaler
as normal. If you
look at the build.xml file from this branch
you'll
Post by Dos Santos
Post by Eivind Waaler
see that the <cmp20>
tag has a valueobject="true" attribute. Also the
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user]
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to
update
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the
valueobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
be.I tried to put it inside the cmp20 tag
but
Post by Dos Santos
Post by Eivind Waaler
it
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a
separate
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch
from
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Middlegen
Post by Eivind Waaler
CVS repository.
See the following mail thread for more
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a
dataobject
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that
dataobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in
favor
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
valueobject. Is there anything that
currently
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any
way
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated
beans
Post by Dos Santos
Post by Eivind Waaler
to
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online
calendar
Post by Dos Santos
Post by Eivind Waaler
with
=== message truncated ===


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
Dos Santos
2003-06-16 15:31:01 UTC
Permalink
Hi Sabat, I've had this problem too. I was a little
patient and tried the connection several times. After
about 4 times, on average, I got connected.

I don't think that there is a build anywhere but I'm
really not sure about that assertion.

Hope this helps.
Post by sabat
I'd like to check this branch out, but cvs on
sourceforge seems to be
broken, and has been for days. Is there some trick
for anon access,
other than the standard examples? If not -- is there
a build of the
valueobject branch available somewhere else?
-S
Post by Dos Santos
Yep, actually I've been working with wrapper
session
Post by Dos Santos
beans on my own. But I'm definitely going to give
this
Post by Dos Santos
a try.
Thanks again for all your help.
Post by Eivind Waaler
Yeah, they're created by the <entityfacade>
xdoclet
Post by Dos Santos
Post by Eivind Waaler
tag. Session beans
wrapping the functionality of the entity beans and
transfering all data as
value objects. XDoclet uses dataobjects in the
implementation of these, so
we incuded a special version supporting our
Middlegen-version of the value
objects..
It has been tested to work quite well. For
instance
Post by Dos Santos
Post by Eivind Waaler
if you want to access
the data remotely, having a facade like that is
the
Post by Dos Santos
Post by Eivind Waaler
best choice. The
entity beans should only be accessed through local
interfaces.
.eivind
Post by Dos Santos
Ok, I didn't know that.
I built them and everything seems to be fine. I
have
Post by Dos Santos
one more question though, what is a session
facade? is
Post by Dos Santos
it a session wrapper bean?
Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to
build
Post by Dos Santos
Post by Eivind Waaler
the jar files.
Just write 'ant' in the root directory. Then
proceed
Post by Dos Santos
Post by Eivind Waaler
as normal. If you
look at the build.xml file from this branch
you'll
Post by Dos Santos
Post by Eivind Waaler
see that the <cmp20>
tag has a valueobject="true" attribute. Also the
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user]
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to
update
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
=== message truncated ===


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
D***@nascopgh.com
2003-06-16 16:05:18 UTC
Permalink
I just retry 'til it works (which often takes 5 or 6 tries). You're
getting the termination w/ error code 0 from the cvs server, right?

Dave





sabat <***@eloan.com>
Sent by: middlegen-user-***@lists.sourceforge.net
06/16/2003 01:18 PM
Please respond to middlegen-user

To: middlegen-***@lists.sourceforge.net
cc:
Subject: Re: [Middlegen-user] Value Object Patterns


I'd like to check this branch out, but cvs on sourceforge seems to be
broken, and has been for days. Is there some trick for anon access,
other than the standard examples? If not -- is there a build of the
valueobject branch available somewhere else?

-S
Post by Dos Santos
Yep, actually I've been working with wrapper session
beans on my own. But I'm definitely going to give this
a try.
Thanks again for all your help.
Post by Eivind Waaler
Yeah, they're created by the <entityfacade> xdoclet
tag. Session beans
wrapping the functionality of the entity beans and
transfering all data as
value objects. XDoclet uses dataobjects in the
implementation of these, so
we incuded a special version supporting our
Middlegen-version of the value
objects..
It has been tested to work quite well. For instance
if you want to access
the data remotely, having a facade like that is the
best choice. The
entity beans should only be accessed through local
interfaces.
.eivind
Post by Dos Santos
Ok, I didn't know that.
I built them and everything seems to be fine. I
have
Post by Dos Santos
one more question though, what is a session
facade? is
Post by Dos Santos
it a session wrapper bean?
Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to
build
Post by Dos Santos
Post by Eivind Waaler
the jar files.
Just write 'ant' in the root directory. Then
proceed
Post by Dos Santos
Post by Eivind Waaler
as normal. If you
look at the build.xml file from this branch
you'll
Post by Dos Santos
Post by Eivind Waaler
see that the <cmp20>
tag has a valueobject="true" attribute. Also the
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user]
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to
update
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the
valueobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
be.I tried to put it inside the cmp20 tag
but
Post by Dos Santos
Post by Eivind Waaler
it
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a
separate
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch
from
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Middlegen
Post by Eivind Waaler
CVS repository.
See the following mail thread for more
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a
dataobject
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that
dataobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in
favor
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
valueobject. Is there anything that
currently
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any
way
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated
beans
Post by Dos Santos
Post by Eivind Waaler
to
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online
calendar
Post by Dos Santos
Post by Eivind Waaler
with
=== message truncated ===
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
Great deals on office technology -- on eBay now! Click here:
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
Eivind Waaler
2003-06-16 18:07:09 UTC
Permalink
Isen't that excactly what you get with the value-object version of
Middlegen right now? As far as I remembered that is how I set it up at
least..

Try it out and see.
.eivind
Post by Dos Santos
Hi Eivind, it's me again. I have a question regarding
the session facades. Is there any way that I could
generate them with remote interfaces while generating
entity beans with local interfaces?
Thanks again.
Post by Eivind Waaler
Yeah, they're created by the <entityfacade> xdoclet
tag. Session beans
wrapping the functionality of the entity beans and
transfering all data as
value objects. XDoclet uses dataobjects in the
implementation of these, so
we incuded a special version supporting our
Middlegen-version of the value
objects..
It has been tested to work quite well. For instance
if you want to access
the data remotely, having a facade like that is the
best choice. The
entity beans should only be accessed through local
interfaces.
.eivind
Post by Dos Santos
Ok, I didn't know that.
I built them and everything seems to be fine. I
have
Post by Dos Santos
one more question though, what is a session
facade? is
Post by Dos Santos
it a session wrapper bean?
Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to
build
Post by Dos Santos
Post by Eivind Waaler
the jar files.
Just write 'ant' in the root directory. Then
proceed
Post by Dos Santos
Post by Eivind Waaler
as normal. If you
look at the build.xml file from this branch
you'll
Post by Dos Santos
Post by Eivind Waaler
see that the <cmp20>
tag has a valueobject="true" attribute. Also the
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh tree w/
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH middlegen
06/13/2003 05:59 PM
Please respond to middlegen-user
Subject: Re: [Middlegen-user]
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to
update
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars into
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
samples/lib directory. Should it do that?
I would truly truly appreciate any help!!!!
Post by Dos Santos
I'd also like to know where should the
valueobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
be.I tried to put it inside the cmp20 tag
but
Post by Dos Santos
Post by Eivind Waaler
it
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a
separate
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH branch
from
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Middlegen
Post by Eivind Waaler
CVS repository.
See the following mail thread for more
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
Post by Dos Santos
I found that middlegen has a
dataobject
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
attribute
Post by Eivind Waaler
for
Post by Dos Santos
the cmp20 plugin. The thing is that
dataobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
is
Post by Eivind Waaler
Post by Dos Santos
deprecated in the newest xdoclet in
favor
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
valueobject. Is there anything that
currently
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
assesses
Post by Dos Santos
this in middlegen.
Thanks.
Post by Dos Santos
Hi! I was wondering if there's any
way
Post by Dos Santos
Post by Eivind Waaler
of
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
working
Post by Dos Santos
Post by Dos Santos
with
Value Object patterns directly from
middlegen
Post by Dos Santos
or
Post by Eivind Waaler
if
Post by Dos Santos
Post by Dos Santos
I'd have to modify the generated
beans
Post by Dos Santos
Post by Eivind Waaler
to
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
later
Post by Eivind Waaler
run
Post by Dos Santos
Post by Dos Santos
them through xdoclet.
Any input on the subject is welcome.
Thanks.
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online
calendar
Post by Dos Santos
Post by Eivind Waaler
with
=== message truncated ===
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
-------------------------------------------------------
This SF.NET email is sponsored by: eBay
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
middlegen-user mailing list
https://lists.sourceforge.net/lists/listinfo/middlegen-user
Dos Santos
2003-06-16 19:38:08 UTC
Permalink
Yep! Tried it and it worked just fine. Sorry about
that.

Thanx again!
Post by Eivind Waaler
Isen't that excactly what you get with the
value-object version of
Middlegen right now? As far as I remembered that is
how I set it up at
least..
Try it out and see.
.eivind
Post by Dos Santos
Hi Eivind, it's me again. I have a question
regarding
Post by Dos Santos
the session facades. Is there any way that I could
generate them with remote interfaces while
generating
Post by Dos Santos
entity beans with local interfaces?
Thanks again.
Post by Eivind Waaler
Yeah, they're created by the <entityfacade>
xdoclet
Post by Dos Santos
Post by Eivind Waaler
tag. Session beans
wrapping the functionality of the entity beans
and
Post by Dos Santos
Post by Eivind Waaler
transfering all data as
value objects. XDoclet uses dataobjects in the
implementation of these, so
we incuded a special version supporting our
Middlegen-version of the value
objects..
It has been tested to work quite well. For
instance
Post by Dos Santos
Post by Eivind Waaler
if you want to access
the data remotely, having a facade like that is
the
Post by Dos Santos
Post by Eivind Waaler
best choice. The
entity beans should only be accessed through
local
Post by Dos Santos
Post by Eivind Waaler
interfaces.
.eivind
Post by Dos Santos
Ok, I didn't know that.
I built them and everything seems to be fine.
I
Post by Dos Santos
Post by Eivind Waaler
have
Post by Dos Santos
one more question though, what is a session
facade? is
Post by Dos Santos
it a session wrapper bean?
Thanks so much for your help.
Post by Eivind Waaler
When you get Middlegen from CVS you have to
build
Post by Dos Santos
Post by Eivind Waaler
the jar files.
Just write 'ant' in the root directory. Then
proceed
Post by Dos Santos
Post by Eivind Waaler
as normal. If you
look at the build.xml file from this branch
you'll
Post by Dos Santos
Post by Eivind Waaler
see that the <cmp20>
tag has a valueobject="true" attribute. Also
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
<ejbdoclet> task is set
up with <valueobject> at the right place.
I also generates facade session beans etc.
Let me know if there are problems.
Regards
.eivind
Post by Dos Santos
I did that, and for some reason it's not
downloading
Post by Dos Santos
any middlegen jar files.
Post by D***@nascopgh.com
I'd reccommend just grabbing a fresh
tree w/
Post by Dos Santos
Post by Eivind Waaler
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
cvs -z 3 -d
login
cvs -z 3 -d
co
-r VALUEOBJECT_REFACTORING_BRANCH
middlegen
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
06/13/2003 05:59 PM
Please respond to middlegen-user
[Middlegen-user]
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Value
Post by Dos Santos
Post by D***@nascopgh.com
Object Patterns
I really need help! I've been trying to
update
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
middlegen with the
VALUEOBJECT_REFACTORING_BRANCH
Post by Dos Santos
Post by D***@nascopgh.com
but
it doesn't seem to work.
Class
Post by Dos Santos
Post by D***@nascopgh.com
middlegen.plugins.ent
itybean.CMP20Plugin doesn't support the
"valueobject"
attribute.
It's not downloading any middlegen jars
into
Post by Dos Santos
Post by Eivind Waaler
the
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
samples/lib directory. Should it do
that?
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
I would truly truly appreciate any
help!!!!
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
I'd also like to know where should the
valueobject
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
be.I tried to put it inside the cmp20
tag
Post by Dos Santos
Post by Eivind Waaler
but
Post by Dos Santos
Post by Eivind Waaler
it
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
says
that it's not supported.
Thanks again.
Post by Eivind Waaler
I have done some work on this in a
separate
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
branch
Post by Dos Santos
Post by Eivind Waaler
in CVS. Check out the
VALUEOBJECT_REFACTORING_BRANCH
branch
Post by Dos Santos
Post by Eivind Waaler
from
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Middlegen
Post by Eivind Waaler
CVS repository.
See the following mail thread for
more
http://sourceforge.net/mailarchive/message.php?msg_id=5077594
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by Eivind Waaler
Post by Dos Santos
Post by D***@nascopgh.com
Post by Dos Santos
Post by Eivind Waaler
.eivind
On Thu, 12 Jun 2003, Dos Santos
=== message truncated ===


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

Loading...