DSRA9010E: ‘{0}’ is not supported on the WebSphere ‘{1}’ Platform
If you see the following exception:
Exception Data: com.dan.LDAPException:
javax.resource.NotSupportedException:
DSRA9010E: 'execute(InteractionSpec, Record, Record)'
is not supported on the
WebSphere Interaction implementation.
It likely means that the JNDI object you looked up isn’t the type your code thought it was going to be. An example of this would be when your ear is installed to your server and the resource-ref is bound to the wrong resource (say a DataSource instead of an LDAP resource).
It would make this exception a thousand times easier to debug if it included a .toString() of the root object that threw the NotSupportedException. Alas, it does not, so you are left to manually look through your admin console to figure out what happened.
I also have no idea what the ‘Interaction’ implementation is that the exception itself is complaining about.
Related Posts
- WebSphere Admin Console SRVE0190E: FileNotFound Errors when clicking certain hyperlinks
- WebSphere Application Server: Component vs Container Managed Authentication Alias
- IBM Software Support Lifecycle - General Availability, End Of Marketing, End of Support Dates
- Oracle XA_RMERR & Spring Oracle LOB Handler Exceptions
- javax.xml.bind.JAXBException: Unable to locate jaxb.properties for package {0}
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Leave a Reply