Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 53 by [email protected]: Jdiameter SCTP support (Stack
doesn't come up as diameter client)
http://code.google.com/p/jdiameter/issues/detail?id=53
Q. What steps will reproduce the problem?
A.
1. Use the JDiameter
2. Include below configurations in the jdiameter-client-config.xml
<Extensions>
<-- Set SCTP classes as extension points for Connection and Network Guard
-->
<Connection
value="org.jdiameter.client.impl.transport.sctp.SCTPClientConnection" />
<NetworkGuard value="org.jdiameter.server.impl.io.sctp.NetworkGuard" />
</Extensions>
3. Include jdiameter-api-1.5.10.0-build639.jar,
jdiameter-impl-1.5.10.0-build639.jar and SCTP supporting jar.
4. Then stack the stack as a "diameter client".
Q. What is the expected output? What do you see instead?
A. The diameter stack has to come up.
Q. What version of the product are you using? On what operating system?
A. Mobicents Diameter 1.5.0.FINAL
Q. Please provide any additional information below.
A.
Below is the issue which we identified.
In the 'org.jdiameter.client' package 'XMLConfiguration' java class, in
the 'addExtension' method i had to replace 'add' method
with 'addInternalExtensions' method.
------------omitting other codes -------------------
changed from --->
if (nodeName.equals("MetaData")) {
add(ExtensionPoint.InternalMetaData,getValue(c.item(i))); }
changed to ->
if (nodeName.equals("MetaData")) {
addInternalExtension(ExtensionPoint.InternalMetaData,getValue(c.item(i)));
}
------------------------------------------------------
The addInternalExtension method i was able to get it from the
org.jdiameter.server package.
Thanks and Best Regards,
Vinay R M.
[email protected]
--
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.