Skip to content

Commit 9f0153f

Browse files
author
Ajith Joseph
committed
Fix for request mapping case sensitivity issue
1 parent 2fddbfa commit 9f0153f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

soa-client/src/main/java/org/ebayopensource/turmeric/runtime/common/impl/internal/service/BaseServiceDescFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1536,7 +1536,7 @@ protected HeaderMappingsDesc loadHeaderMappings(String adminName, OptionList opt
15361536
throw new ServiceCreationException(ErrorDataFactory.createErrorData(ErrorConstants.SVC_FACTORY_DUPLICATE_HEADER_KEY,
15371537
ErrorConstants.ERRORDOMAIN, new Object[] {adminName, indexval}));
15381538
}
1539-
headerMap.put(indexval, name);
1539+
headerMap.put(indexval.toUpperCase(), name);
15401540
} else {
15411541
if( headerMap.containsKey(indexval)) {
15421542
throw new ServiceCreationException(ErrorDataFactory.createErrorData(ErrorConstants.SVC_FACTORY_DUPLICATE_HEADER_KEY,

0 commit comments

Comments
 (0)