Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to install EFD of catia

Status
Not open for further replies.

Guest
please, I need somedody says the rules to install the EFD of equipment and systems of catia in windows NT. the program tells me that it dont find the serv. and it is "nomada". thank you.
 
Replies continue below

Recommended for you

To Run EFD still requires the proper License.
The Steps to Run EFD are as follows:
Find your load of runOrbix.bat and runEFD
edit C:\DS\B08\intel_a\code\command\runOrbix.bat
Code:
 echo off
rem############################################################################
rem   COPYRIGHT DASSAULT SYSTEMES 2000                                        #
rem                                                                           #
rem   Component Class : Shell Script command to start orbix daemon            #
rem                                                                           #
rem    Name            : runOrbix                                             #
rem    Input           : none                                                 #
rem    Output          : stdout                                               #
rem                                                                           #
rem############################################################################
[code] set IT_CONFIG_PATH=C:\DS\B08\intel_a\startup\orbix 

rem -----------------------------------------------------------------------
rem Start Orbix Daemon
rem ------------------------------------------------------------------------
"C:\DS\B08\intel_a\code\bin\orbixd" -u -s   

pause


edit C:\DS\B08\intel_a\docs\runEFD.bat

Code:
@echo off
rem ################################################################
rem ### runEFD.bat: launch the electrical portal                  ###
rem ###                                                           ###
rem ### SYNTAX:  runEFD.bat [portalpath][javapath]                ###
rem ###   portalpath:                                             ###
rem ###     Path of Portal runtime (ex: "c:\CATIA\BO7").          ###
rem ###   javapath:                                               ###
rem ###     Path of Java Runtime (ex: "c:\jdk1.1.6").             ###
rem ###     If the JDK has been installed in a path whose name    ###
rem ###     contains some spaces (example: c:\progam files\jdk),  ###
rem ###     then you need to specify the path between quotation   ###
rem ###     marks (example: "c:\program files\jdk").              ###
rem ###                                                           ###
rem ### Copyright DASSAUL-SYSTEMES 2001                           ###
rem #################################################################

set CLASSPATH_OLD=%CLASSPATH%
set PATH_OLD=%PATH%

rem #######################################################
rem ### Location of JRE (or JDK)
rem #######################################################
set javahome=c:\jdk1.1.8   
:EndJRE

rem #######################################################
rem ### Defines location of JARs for Portal's native
rem #######################################################
set PORTALPATH="C:\DS\B08\intel_a\docs\java"  
:EndRuntime

rem #######################################################
rem ### Defines CLASSPATH
rem #######################################################
set CLASSPATH=%javahome%\lib\classes.zip;%javahome%\lib
set CLASSPATH=%CLASSPATH%;%PORTALPATH%\GW0Start.jar
set CLASSPATH=%CLASSPATH%;%PORTALPATH%\PLNallnative.jar
set CLASSPATH=%CLASSPATH%;%PORTALPATH%;%PORTALPATH%\..\..\code\command

echo Electrical Portal is starting...
echo ---------------------------------------------------
echo Java runtime path=%javahome%
rem echo CLASSPATH=%CLASSPATH%
echo Portal runtime path=%PORTALPATH%
echo ---------------------------------------------------

set path=%path%;%PORTALPATH%\..\..\code\bin

%javahome%\bin\java -ms16m -mx128m -classpath %CLASSPATH% -Ddebug=false -DFilePrefix=Elec com.dassault_systemes.catweb.frame.applet.SwingJARStarter %PORTALPATH%

:EndScript
set CLASSPATH=%CLASSPATH_OLD%
set PATH=%PATH_OLD%

Start runOrbix.bat
Start runEFD.bat
Log-in with user id on workstation
Select Electrical Design Icon from CATIA Portal.

EFD IS RUNNING!

I hope this helps.

Timothy J. Suhr
 
Status
Not open for further replies.
Back
Top