You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I'm trying to connect to a network with a key like this "1234567890&" I get an error 1206. If the key is 1234567890 on the same network it works just fine. How can I solve this problem?
The text was updated successfully, but these errors were encountered:
Now when I look at it all strings that are being embedded into the Profile XML:s should be encoded for XML, which they currently aren't.
Dirty fix is:
Add a function to the ProfileFactory that encodes the special characters in the password for XML (note that this function should not base64 encode as the one in EapUserFactory)
Proper fix:
Remove FixPass from EapUserFactory
Add a EncodeForXML method that can be reused
Run the EncodeForXML method on all strings before they are inserted into the XML
When I'm trying to connect to a network with a key like this "1234567890&" I get an error 1206. If the key is 1234567890 on the same network it works just fine. How can I solve this problem?
The text was updated successfully, but these errors were encountered: