Re: SV: Anyone using TogetherSoft TCC with Orion?

2001-06-27 Thread Oisin Kim

Just FYI got htis from Together supportmight concern some of you!
Oisin

--cut--
There are issues with Together and jdk1.3.1 running on RH7.1.  To do
this you will need to edit the java wrapper script and add the following
lines
to the top of the script:
LD_ASSUME_KERNEL=2.2.5;export LD_ASSUME_KERNEL
To edit the java wrapper on Unix, change directories into the
JDK_HOME/bin
directory and,
$ vi .java_wrapper
Also, if you are getting users with errors like:
/usr/java/jdk1.3.0_02/bin/java: /usr/bin/cut
User will need to create a symbolic link from /usr/cut to /usr/bin/cut.
--end cut--




 Tuesday 26 June 2001 16:57, you wrote:
 We use another product called CocoBase by Thought Inc.  It handles all of
 our 1:* relationships.

 At this point you need to use an O/R mapping tool or write your own code
 to do it.  Until EJB 2.2 or 2.3 is formalized.

 Jonathan Bricker
 Lilly Research Labs
 Java ATG




 Magnus Rydin [EMAIL PROTECTED]
 Sent by: [EMAIL PROTECTED]
 06/26/01 07:51 AM
 Please respond to Orion-Interest


 To: Orion-Interest [EMAIL PROTECTED]
 cc:
 Subject:SV: Anyone using TogetherSoft TCC with Orion?

 How do you model EJB 2.0 relations with Together?
 WR
 -Ursprungligt meddelande-
 Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Skickat: den 26 juni 2001 05:31
 Till: Orion-Interest
 Ämne: Re: Anyone using TogetherSoft TCC with Orion?


 We are using TogetherJ with Orion.  I'm not sure I can help you but for
 hot deployment we just make an .ear file and move it to the applications
 directory.  Orion does the rest.  All done in a make file.

 From our makefile:
 ### begin: rules for creating application jar.

 DIST_DIR=$(APP_HOME)/dist
 EJB_TMP_DIR=$(APP_HOME)/ejb_tmp



 deploy:
 cp $(APP_NAME).ear $(ORION_HOME)/applications

 dist:   pre_dist ejb_jar war
 @echo -
 @echo Creating $(APP_NAME) EAR ...
 @cd $(DIST_DIR); \
 $(JAR) cf ../$(APP_NAME).ear *;
 @echo -
 rm -rf $(DIST_DIR);

 pre_dist:FORCE
 @echo -
 @echo Preparing EAR ...
 @mkdir -p $(DIST_DIR)/META-INF;
 @cp application.xml $(DIST_DIR)/META-INF;
 @echo -

 war:$(DIST_DIR)
 @echo -
 @echo Creating WEB Archive (WAR)...
 @rm -rf web/WEB-INF/classes/com;
 @cd web/WEB-INF/classes; \
 cp -rf $(APP_HOME)/lib/* .;
 @cp -rf web web_tmp;
 @cd web_tmp; \
 find . -name CVS -prune -exec rm -rf {} \;
 @cd web_tmp; \
 $(JAR) cf $(DIST_DIR)/$(APP_NAME).war *;
 @rm -rf web_tmp;
 @echo -

 ejb_jar:$(DIST_DIR) ejb-jar.xml
 @echo -
 @echo Creating EJB JAR...
 @mkdir -p $(EJB_TMP_DIR);
 @cd $(EJB_TMP_DIR); \
 cp -rf $(APP_HOME)/lib/* .;
 @mkdir -p $(EJB_TMP_DIR)/META-INF;
 @cp $(APP_HOME)/ejb-jar.xml $(EJB_TMP_DIR)/META-INF/;
 @cd $(EJB_TMP_DIR); \
 $(JAR) cf $(DIST_DIR)/$(APP_NAME)Ejb.jar *;
 @rm -rf $(EJB_TMP_DIR);
 @echo -


 $(DIST_DIR):
 mkdir -p $(DIST_DIR);

 $(EJB_TMP_DIR):
 mkdir -p $(EJB_TMP_DIR);

 deploy_web:
 cd web; \
 rm -f *~; \
 cp -rf * $(ORION_HOME)/applications/$(APP_NAME)/$(APP_NAME)

 ### end: rules for creating application jar.
 Jonathan Bricker
 Lilly Research Labs
 Java ATG



 Ronald F. Lens [EMAIL PROTECTED]
 Sent by: [EMAIL PROTECTED]
 06/25/01 02:09 PM
 Please respond to Orion-Interest

 To:Orion-Interest [EMAIL PROTECTED]
 cc:
 Subject:Anyone using TogetherSoft TCC with Orion?


 Hi all,

 Does anyone have any experience using TogetherSoft TCC v5 (or 4.x) with
 orion? I'm still struggling to get the deployment tool to work with orion.
 I got pretty close using the EJB 2.0 generic version in TogetherSoft but
 it doesn't provide all the bells and whistles you'd like (like hot
 deployment).

 Any help would be greatly appreciated.
 Ronald


Content-Type: text/html; charset=iso-8859-1; name=Attachment: 1
Content-Transfer-Encoding: quoted-printable
Content-Description: 


-- 


+-+
   _/_/_/_/_/  _/_/_/  __/_/_/_/  Oisin Kim
  _/ _/_/  _/ _/  Dept. Computer Science
 _/ _/_/ _/   Trinity College Dublin
_/ _/_/ _/tel : (+353 86).841 9967
   _/ _/_/  _/ _/ email: [EMAIL PROTECTED]
  _/  _/_/_/  __/_/_/_/   http://www.cs.tcd.ie/Oisin.Kim/

+-+




SV: Anyone using TogetherSoft TCC with Orion?

2001-06-26 Thread Magnus Rydin



How do 
you model EJB 2.0 relations with Together?
WR

  -Ursprungligt meddelande-Från: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]]Skickat: den 26 juni 2001 
  05:31Till: Orion-InterestÄmne: Re: Anyone using 
  TogetherSoft TCC with Orion?We are using TogetherJ with Orion. I'm not sure I can help you 
  but for hot deployment we just make an .ear file and move it to the 
  applications directory. Orion does the rest. All done in a make 
  file.  From our 
  makefile: ### begin: rules for 
  creating application jar. DIST_DIR=$(APP_HOME)/dist EJB_TMP_DIR=$(APP_HOME)/ejb_tmp deploy:  
 cp $(APP_NAME).ear $(ORION_HOME)/applications 
  dist:  pre_dist ejb_jar war 
  @echo 
  "-" @echo "Creating $(APP_NAME) EAR ..." 
  @cd $(DIST_DIR); 
  \ $(JAR) 
  cf ../$(APP_NAME).ear *;   
@echo "-" rm -rf $(DIST_DIR); 
  pre_dist:FORCE 
  @echo 
  "-" @echo "Preparing EAR ..." @mkdir -p 
  $(DIST_DIR)/META-INF;   
@cp application.xml $(DIST_DIR)/META-INF; @echo 
  "-" war:$(DIST_DIR) @echo 
  "-" @echo "Creating WEB Archive 
  (WAR)..." 
  @rm -rf web/WEB-INF/classes/com; @cd web/WEB-INF/classes; \ cp -rf $(APP_HOME)/lib/* 
  .; @cp -rf 
  web web_tmp;
   @cd web_tmp; \   
find . -name CVS -prune -exec rm -rf {} \; @cd web_tmp; \ 
  $(JAR) cf 
  $(DIST_DIR)/$(APP_NAME).war *;  
 @rm -rf web_tmp; @echo 
  "-" ejb_jar:$(DIST_DIR) ejb-jar.xml 
  @echo 
  "-" @echo "Creating EJB JAR..." 
  @mkdir -p 
  $(EJB_TMP_DIR);
   @cd $(EJB_TMP_DIR); \  
 cp -rf $(APP_HOME)/lib/* .; @mkdir -p 
  $(EJB_TMP_DIR)/META-INF;   
@cp $(APP_HOME)/ejb-jar.xml $(EJB_TMP_DIR)/META-INF/; 
  @cd 
  $(EJB_TMP_DIR); \
   $(JAR) cf $(DIST_DIR)/$(APP_NAME)Ejb.jar *; @rm -rf 
  $(EJB_TMP_DIR);
   @echo "-" $(DIST_DIR): mkdir -p $(DIST_DIR); $(EJB_TMP_DIR): mkdir -p $(EJB_TMP_DIR); 
  deploy_web: cd web; \ rm -f *~; \ 
  cp -rf * 
  $(ORION_HOME)/applications/$(APP_NAME)/$(APP_NAME) ### end: rules for creating application jar. 
  Jonathan BrickerLilly Research 
  LabsJava ATG 
  


  
  "Ronald F. Lens" 
[EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 
06/25/01 02:09 PM Please respond to Orion-Interest 
  To:   
 Orion-Interest 
[EMAIL PROTECTED] cc:

 Subject:Anyone using TogetherSoft TCC 
with Orion?Hi all,Does anyone have any experience using TogetherSoft TCC 
  v5 (or 4.x) withorion? I'm still struggling to get the deployment tool to 
  work with orion.I got pretty close using the EJB 2.0 generic version in 
  TogetherSoft butit doesn't provide all the bells and whistles you'd like 
  (like hotdeployment).Any help would be greatly 
  appreciated.Ronald-- "A thinking computer, isn't that like 
  a swimming ship?"