본문으로 건너뛰기
  1. Posts/

Teamcenter AWC Tile Import 오류

·1 분· loading · loading ·
Wony
Teamcenter Awc Tile Import
RedBeanSoft
작성자
RedBeanSoft
Siemens 의 PLM/ALM/CAD 분야 전문 파트너입니다.
작성자
WONY
Developer who like totoro

AWC Tile Import 오류
#

Teamcenter AWC을 개발하다보면 시작 화면에 Custom Tile을 추가해야 하는 경우가 있습니다. 해당 블로그는 이 때 발생할 수 있는 Import failure 문제 해결에 대해 설명합니다.

본 블로그는 TC13.3 & AWC 6.1.7 기준으로 작성되었습니다.

awc-tile-import-error1

awc-tile-import-error2

  • Teamcenter AWC Tile 추가 명령어

    aws2_install_tilecollections -u=infodba -p=infodba -g=dba -file=%~dp0%import_new_awc_tiles.xml -mode=add
    
  • 명령어 실행 시 Import fail 발생

  • Awp0aws2ActiveWorkspaceGateway.dtd 파일이 없을 경우 발생함

  • 첨부한 Awp0aws2ActiveWorkspaceGateway.dtd 파일 다운로드

  • 해당 파일을 TC_ROOT\install\aws2\data\ 위치로 이동

추가 사항
#

위에 있는 명령어를 TC Command Prompt에서 실행하여도 되지만 관리의 용의성과 편의성을 위해 배치파일을 생성하여 관리하는 것이 좋습니다.

  • bat 파일 생성

  • bat 파일 내용 작성

    @echo off
    
    rem TC 환경 변수 설정 및 호출
    SET TC_ROOT=C:\Siemens\Teamcenter13
    SET TC_DATA=C:\Siemens\tcdata
    call %TC_DATA%\tc_profilevars
    
    rem DTD File 복사
    cd %~dp0
    echo --- copy DTD File ---
    copy Awp0aws2ActiveWorkspaceGateway.dtd %TC_ROOT%\install\aws2\data\.
    
    rem Tile Import
    echo --- Import AWC Tiles ---
    
    aws2_install_tilecollections -u=infodba -p=infodba -g=dba -file=%~dp0%import_new_awc_tiles.xml -mode=add
    
    pause
    
  • 추가할 Tile xml파일 및 Awp0aws2ActiveWorkspaceGateway.dtd 파일과 같은 디렉토리에 위치하게 함

첨부 파일
#

Awp0aws2ActiveWorkspaceGateway.dtd