Skip to content

Commit f13da43

Browse files
authored
Issue: 75858 (#123)
When a BC web service is consumed the error messages cannot be processed in the client
1 parent f3ca0cd commit f13da43

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

common/src/main/java/com/genexus/SdtMessages_Message.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,19 +124,19 @@ public void writexml( com.genexus.xml.XMLWriter oWriter ,
124124
sNameSpace = CommonUtil.right( sNameSpace, CommonUtil.len( sNameSpace)-10) ;
125125
}
126126
oWriter.writeElement("Id", CommonUtil.rtrim( gxTv_SdtMessages_Message_Id));
127-
if ( CommonUtil.strcmp(sNameSpace, "Genexus") != 0 )
127+
if ( CommonUtil.strcmp(sNameSpace, "GeneXus") != 0 )
128128
{
129-
oWriter.writeAttribute("xmlns", "Genexus");
129+
oWriter.writeAttribute("xmlns", "GeneXus");
130130
}
131131
oWriter.writeElement("Type", CommonUtil.trim( CommonUtil.str( gxTv_SdtMessages_Message_Type, 2, 0)));
132-
if ( CommonUtil.strcmp(sNameSpace, "Genexus") != 0 )
132+
if ( CommonUtil.strcmp(sNameSpace, "GeneXus") != 0 )
133133
{
134-
oWriter.writeAttribute("xmlns", "Genexus");
134+
oWriter.writeAttribute("xmlns", "GeneXus");
135135
}
136136
oWriter.writeElement("Description", CommonUtil.rtrim( gxTv_SdtMessages_Message_Description));
137-
if ( CommonUtil.strcmp(sNameSpace, "Genexus") != 0 )
137+
if ( CommonUtil.strcmp(sNameSpace, "GeneXus") != 0 )
138138
{
139-
oWriter.writeAttribute("xmlns", "Genexus");
139+
oWriter.writeAttribute("xmlns", "GeneXus");
140140
}
141141
oWriter.writeEndElement();
142142
}

0 commit comments

Comments
 (0)