-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wrong parsing of CWMP method name for XML Self Closing Tags #4
Comments
fixed in latest release candiate of rebooted project located at https://github.com/freeacs/freeacs if anyone wonders. https://github.com/freeacs/freeacs |
Just mentioning that this problem has been fixed once and for all. I have made several improvements in the last months, one of them being getting rid of all regex ugly stuff code to retrieve for example cwmp methods. Now the cwmp method is found in a future proof, type safe and functional manner. TLDR; it should just work. New release at https://github.com/freeacs/freeacs/releases/tag/v3.0-RC1 I have moved away from deb and rpm files, so the release is a distribution zip of multiple zips. Each module contains a start script, jar files, configuration etc. |
Artig å se at du jobber videre, håper du lykkes!
mvh
Morten S
tir. 30. apr. 2019 kl. 19:49 skrev Jarl André Hübenthal <
notifications@github.com>:
… Just mentioning that this problem has been fixed once and for all. I have
made several improvements in the last months, one of them being getting rid
of all regex ugly stuff code to retrieve for example cwmp methods. Now the
cwmp method is found in a future proof, type safe and functional manner.
TLDR; it should just work.
New release at https://github.com/freeacs/freeacs/releases/tag/v3.0-RC1
I have moved away from deb and rpm files, so the release is a distribution
zip of multiple zips. Each module contains a start script, jar files,
configuration etc.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABLPTRZXSO4FTZYHRG33KWDPTCBCJANCNFSM4CH3JIBQ>
.
|
If the CWMP XML tag is self closing without a space before /, then the '/' character is also considered in the method name.
E.g.
<cwmp:GetParameterNamesResponse/>
could be taking "GetParameterNamesResponse/" as the method name. The last character / should be excluded.Could be solved by making XML parsing of the input, instead of raw String operations. Will involve in the fixing and commit if time permits.
The text was updated successfully, but these errors were encountered: