...
The TOPIC ID is the UID or User ID of the certificate. This can be obtained using SSLShopper or by executing the following command:
openssl x509 -in MDM_Certificate.pem -text -noout
...
Why does the following error message appear in an iOS device when enrolling: “Profile Installation Failed. The server certificate for “https://xxxxxxxxxx/emm/profile” is invalid”?
This is a common error that is displayed by the iOS device when there is an issue in installing the Profile. Please check and make sure that the following are correct:
...
This error occurs in JDK 1.7.0_45 as all XML readers share the same XMLSecurityManager
and XMLLimitAnalyzer
. When the total count of all readers hits the entity expansion limit, which is 64000 by default, the XMLLimitanalyzer's total counter is accumulated and the XMLInputFactory
cannot create more readers. If you still want to use JDK 1.7.0_45, try restarting the server with a higher value assigned to the DentityExpansionLimit
. Note that this bug has using one of the following methods.
For example:
- Execute the following command
./<EMM_HOME>/bin/wso2server.sh -DentityExpansionLimit=1000000
- Set the value of JAVA_OPTS in the
<EMM_HOME>/bin/wso2server.sh
file.
Info |
---|
Note that this bug has been fixed in JDK 1.7.0_51 onwards. |
...
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
...