Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-SS7 Roadmap-Fix
New issue 269 by [email protected]: M3UA – how many AS can be defined per
route?
http://code.google.com/p/jss7/issues/detail?id=269
In the Mobicents SS7Stack User Guide is defined max. 16 AS per route:
"load-balance between Application Servers (AS) for a given route. For any
given route, there can be a maximum of 16 ASs defined."
But in M3UAManagementImpl it’s defined:
protected int maxAsForRoute = 2;
The method
public void setMaxAsForRoute(int maxAsForRoute)
is never used, so we have really only 2 AS per route allowed.
And in M3UAManagementImpl we have:
public void start() throws Exception {
if (this.transportManagement == null) {
throw new NullPointerException("TransportManagement is
null");
}
if (maxAsForRoute < 1 || maxAsForRoute > 4) {
throw new Exception("Max AS for a route can be minimum 1 or
maximum 4");
}
So 4 AS should be possible?
Currently, the SS7 CLI returns an error: "ERROR: Error while executing
comand m3ua route add, d != java.lang.String" when we try to add a third AS
to route
--
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.