Error doing createBucket() Java SOAP
My code is as follows:
public void createDirectory(String dir) {
try {
CreateBucketResult result = connection.createBucket(dir, null);
}
catch (Exception e) {
e.printStackTrace();
}
When I try to create a directory using this I get the following error from the stack trace:
AxisFault
faultCode: { http://schemas.xmlsoap.org/soap/envelope/}Client.OperationAborted
faultSubcode:
faultString: A conflicting conditional operation is currently in progress against this resource. Please try again.
faultActor:
faultNode:
faultDetail:
{ http://xml.apache.org/axis/}stackTrace:A conflicting conditional operation is currently in progress against this resource. Please try again.
at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
any idea what this means?
Mitch
public void createDirectory(String dir) {
try {
CreateBucketResult result = connection.createBucket(dir, null);
}
catch (Exception e) {
e.printStackTrace();
}
When I try to create a directory using this I get the following error from the stack trace:
AxisFault
faultCode: { http://schemas.xmlsoap.org/soap/envelope/}Client.OperationAborted
faultSubcode:
faultString: A conflicting conditional operation is currently in progress against this resource. Please try again.
faultActor:
faultNode:
faultDetail:
{ http://xml.apache.org/axis/}stackTrace:A conflicting conditional operation is currently in progress against this resource. Please try again.
at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
any idea what this means?
Mitch












You must be logged in to post a comment.