与其他应用程序集成 > 集成的软件管理 > 《PTC Windchill Integration for Software Build Tools 开发人员指南》 > 使用 Windchill Integration for Software Build Tools 命令 > AddContentToSWBuild
  
AddContentToSWBuild
AddContentToSWBuild 命令通过查询 URL 或上载磁盘上的本地文件将内容添加到对象中。从 URL 添加内容时无需用户凭证。
命令行语法
java —jar RBMWebServiceCore.jar —ServiceName AddContentToSWBuild —ContainerType —ContainerName —ObjectName [—Location] —Content —Filename [—IsPrimary] [-Revision]
自变量
说明
—ContainerType
LIBRARY、PRODUCT 或 PROJECT 中的一个。
—ContainerName
容器名称。
—ObjectName
要添加附件的对象名称。
—Location
指定容器中对象的位置。
—Content
要添加到对象的文件内容。这可以是文件的 URL 或磁盘上的本地文件。
—Filename
要附加到对象的文件名。
—IsPrimary
truefalse。如未指定值,则认为是次要附件。
—Revision
修订版本 ID。如未指定修订版本,则使用最新小版本。
配置文件模板
<service>
<ServiceName>AddContentToSWBuild</ServiceName>
<ContainerType>...</ContainerType>
<ContainerName>...</ContainerName>
<ObjectName>...</ObjectName>
<Location>...</Location>
<Content>...</Content>
<Filename>...</Filename>
<IsPrimary>...</IsPrimary>
<Revision>...</Revision>
</service>
示例
要通过从 URL 上载内容来将主要内容添加到 GOLF_CART 容器的 Test Folder 位置中名称为 TestSWBld3 的软件版次对象,请键入:
java —jar RBMWebServiceCore.jar —ServiceName AddContentToSWBuild —ContainerType PRODUCT —ContainerName GOLF_CART —ObjectName TestSWBld3 —Location Test Folder —Content //<web_server>/WCIntClearCaseGuide.pdf —Filename Test PDF.pdf —IsPrimary true —Revision A
要通过上载本地文件来将次要附件添加到 GOLF_CART 容器的默认位置中名称为 TestSWBld4 的软件版次对象,请键入:
java —jar RBMWebServiceCore.jar —ServiceName AddContentToSWBuild —ContainerType PRODUCT —ContainerName GOLF_CART —ObjectName TestSWBld4 —Content D:\temp\SampleFile.txt —Filename TestTestFile.txt