When you create a support requests in support.gluu.org you are asked to assign a category, eg: identity management - I was wondering if there should be a category for casa?
Twilio responded to my support request and said they can't reproduce it using the latest JAR and the one shipped in Gluu is quite old. So I updated it and re-tested it, and the problem still occurs - I have sent the info to twilio and will update here if they come back with any useful reply.
```
cd /opt/gluu/jetty/oxauth/custom/libs
mkdir ext
rm twilio-7.17.0.jar
curl --output twilio-7.47.1.jar https://repo1.maven.org/maven2/com/twilio/sdk/twilio/7.47.1/twilio-7.47.1.jar
curl --output twilio-7.17.0.jar https://repo1.maven.org/maven2/com/twilio/sdk/twilio/7.17.0/twilio-7.17.0.jar
curl --output twilio-8.15.0.jar https://repo1.maven.org/maven2/com/twilio/sdk/twilio/8.15.0/twilio-8.15.0.jar
curl --output jsmpp-2.3.11.jar https://repo1.maven.org/maven2/org/jsmpp/jsmpp/2.3.11/jsmpp-2.3.11.jar
chown jetty:jetty twilio*.jar jsmpp*.jar ext
cat /opt/gluu/jetty/oxauth/webapps/oxauth.xml
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
<Set name="contextPath">/oxauth</Set>
<Set name="war">
<Property default="." name="jetty.webapps" />/oxauth.war
</Set>
<Set name="extractWAR">true</Set>
<Set name="extraClasspath">./custom/libs/twilio-8.15.0.jar,./custom/libs/jsmpp-2.3.11.jar</Set></Configure>
```