Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
2.2.3, 2.1.7, 2.2.4
-
None
-
Tomcat 6.0.18, Windows Server 2003. CXF 2.2.4.
Description
I've been having the following issue for a whole day already, and I'm debugging it: http://www.coderanch.com/t/466933/Web-Services/java/CXF-fails-serve-WebService
I've got further ahead:
in WrapperClassInInterceptor there is this code:
(line 135 onwards)
newParams = new MessageContentsList(helper.getWrapperParts(wrappedObject));
List<Integer> removes = null;
int count = 0;
for (MessagePartInfo part : messageInfo.getMessageParts()) {
if (Boolean.TRUE.equals(part.getProperty("messagepart.isheader"))) {
MessagePartInfo mpi = wrappedMessageInfo.getMessagePart(part
.getName());
if (lst.hasValue(mpi))
else if (mpi.getTypeClass() == null) {
if (removes == null)
removes.add(Integer.valueOf(mpi.getIndex()));
}
} else
}
The parameters in "newParams" before the removes are removed are the correct params + one null at the end.
Then index "1" is removed. BUT the param at Index 1 is correct. So perhaps the index is wrongly calculated. I don't have any more time to dig further into the generation of the index, so I'm just patching my version by commenting-out the removal part. I hope you can give me an update no this. Thanks