hii
I have created jnlp for my java swing application. but It is throwing an error
java.security.AccessControlException:
access denied (java.lang.RuntimePermission accessDeclaredMembers) at
java.security.AccessControlContext.checkPermission (AccessControlContext.java,230)
Line number 230 is
jaxbContext = JAXBContext.newInstance(Shopify.api.wrappers.Produ ctListAPIWrapper.class);
Unmarshaller unmarshaller =jaxbContext.createUnmarshaller();
String responseString = getContentStringFromResponse(productListResponse);
JAXBElement<ProductListAPIWrapper> root = unmarshaller.unmarshal(new StreamSource(new StringReader(responseString)), ProductListAPIWrapper.class);
output.addAll(root.getValue().getProducts());
Can anyone solve my problem?
Thanks in advance