Permissions Error Getting File via Web Service

1
I have a web service method that is mapped to an object of System.FileDocument. Until recently it has been working just fine (I can only possibly think of the Networking team of changing any remotely related). Now, I am getting an "Access is denied" error which also includes a MIME parsing exception. The full stacktrace I'll post below. javax.xml.ws.WebServiceException: org.jvnet.mimepull.MIMEParsingException: java.io.IOException: Access is denied at com.sun.xml.ws.client.dispatch.DispatchImpl.doInvoke(DispatchImpl.java:211) at com.sun.xml.ws.client.dispatch.DispatchImpl.invoke(DispatchImpl.java:218) at nx$2.a(SourceFile:320) at nx$2.run(SourceFile:298) at java.security.AccessController.doPrivileged(Native Method) at nx.a(SourceFile:287) at nx.a(SourceFile:138) at com.mendix.modules.webservices.WebserviceModule.callWebservice(SourceFile:231) at lv.a(SourceFile:87) at mt.a(SourceFile:72) at ms.a(SourceFile:151) at ms.executeAction(SourceFile:98) at com.mendix.systemwideinterfaces.core.UserAction.execute(SourceFile:57) at com.mendix.core.actionmanagement.CoreAction.call(SourceFile:457) at hC.b(SourceFile:207) at com.mendix.core.Core.executeSync(SourceFile:203) at lo.a(SourceFile:60) at mt.a(SourceFile:72) at ms.a(SourceFile:151) at ms.executeAction(SourceFile:98) at com.mendix.systemwideinterfaces.core.UserAction.execute(SourceFile:57) at com.mendix.core.actionmanagement.CoreAction.call(SourceFile:457) at hC.b(SourceFile:207) at com.mendix.core.Core.execute(SourceFile:226) at gn.execute(SourceFile:186) at jd.a(SourceFile:319) at com.mendix.externalinterface.connector.RequestDispatching$Worker.a(SourceFile:170) at ...full trace is here.
asked
1 answers
1

Figured out the issue. Somehow, Mendix thought services were running but they weren't actually. Just needed a reset of the services, checked to make sure they were running, and double-checked permissions to our share where we housed file uploads for load-balanced app.

answered