Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-SS7 Roadmap-Fix
New issue 291 by [email protected]: Error in ExtForwInfoImpl.java
http://code.google.com/p/jss7/issues/detail?id=291
What steps will reproduce the problem?
1.receive subscriberManagement map message with forwardingFeatureList
2. in log there is somethins like this: MAPParsingComponentException when
parsing components: MistypedParameter - Error while decoding ExtForwInfo:
Parameter forwardingFeatureList size must be from 1 to 32, found: 3
What is the expected output? What do you see instead?
There is no error in message
What version of the product are you using? On what operating system?
commit ba6f8af25eb1db43f3be4cf7a214dbbda20eb5db
Author: [email protected] <[email protected]>
Date: Thu Jun 13 21:41:08 2013 +0530
Please provide any additional information below.
---
a/map/map-impl/src/main/java/org/mobicents/protocols/ss7/map/service/mobility/subscriberManagement/ExtForwInfoImpl.java
+++
b/map/map-impl/src/main/java/org/mobicents/protocols/ss7/map/service/mobility/subscriberManagement/ExtForwInfoImpl.java
@@ -128,7 +128,7 @@ public class ExtForwInfoImpl extends SequenceBase
implements ExtForwInfo {
this.forwardingFeatureList.add(featureItem);
}
- if (this.forwardingFeatureList.size() > 1 ||
this.forwardingFeatureList.size() > 32) {
+ if (this.forwardingFeatureList.size() < 1 ||
this.forwardingFeatureList.size() > 32) {
throw new MAPParsingComponentException("Error
while decoding " + _PrimitiveName
+ ": Parameter forwardingFeatureList size
must be from 1 to 32, found: "
+ this.forwardingFeatureList.size(),
MAPParsingComponentExceptionReason.MistypedParameter)
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
---
You received this message because you are subscribed to the Google Groups "mobicents-all-issues-changes" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.