Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Critical
-
Resolution: Unresolved
-
Affects Version/s: 3.3 RC1
-
Fix Version/s: None
-
Component/s: Schema
-
Labels:None
-
User impact:High
-
Similar Issues:None
Description
There are a couple of things that need to be improved in the schemas. These issues are affecting Studio since we base Studio in the required fields to make them required in Studio. I will be adding all the issues I find related to Attachment, Property, Variable and Variable Session transformers. (With this I mean set-attachment, remove-variable, etc).
In the schema Attachment name in remove attachment is not displayed as required, while it should be:
<xsd:complexType name="removeAttachmentType"> <xsd:complexContent> <xsd:extension base="commonTransformerType"> <xsd:attribute name="attachmentName" type="attributeType"/> </xsd:extension> </xsd:complexContent> </xsd:complexType>
The same issue happens with copy attachments:
<xsd:element name="copy-attachments" type="copyAttachmentType" substitutionGroup="abstract-transformer"> <xsd:annotation> <xsd:documentation> A transformer that copy inbound attachment to outbound attachment scope by name or regular expression. </xsd:documentation> </xsd:annotation> </xsd:element> <xsd:complexType name="copyAttachmentType"> <xsd:complexContent> <xsd:extension base="commonTransformerType"> <xsd:attribute name="attachmentName" type="attributeType"/> </xsd:extension> </xsd:complexContent> </xsd:complexType>