operationcontextsavetest.java
来自「开源的axis2框架的源码。用于开发WEBSERVER」· Java 代码 · 共 402 行 · 第 1/2 页
JAVA
402 行
phase3.addHandler(new TempHandler(10));
axisOperation.getRemainingPhasesInFlow().add(phase1);
axisOperation.getRemainingPhasesInFlow().add(phase2);
axisOperation.getRemainingPhasesInFlow().add(phase3);
mc.setWSAAction(operationName.getLocalPart());
mc.setSoapAction(operationName.getLocalPart());
System.out.flush();
mc.setMessageID(UUIDGenerator.getUUID());
//operationContext.addMessageContext(mc); gets done via the register
axisOperation.registerOperationContext(mc, operationContext);
mc.setOperationContext(operationContext);
mc.setServiceContext(serviceContext);
mc.setTo(new EndpointReference("axis2/services/NullService"));
mc.setWSAAction("DummyOp");
//-----------------------------------------------------------------
executedHandlers = new ArrayList();
}
protected void setUp() throws Exception {
//org.apache.log4j.BasicConfigurator.configure();
}
public void testSaveAndRestore() throws Exception {
File theFile = null;
String theFilename = null;
boolean saved = false;
boolean restored = false;
boolean done = false;
boolean comparesOk = false;
log.debug("OperationContextSaveTest:testSaveAndRestore(): BEGIN ---------------");
// ---------------------------------------------------------
// setup a temporary file to use
// ---------------------------------------------------------
try {
theFile = File.createTempFile("OpCtxSave", null);
theFilename = theFile.getName();
log.debug("OperationContextSaveTest:testSaveAndRestore(): temp file = [" +
theFilename + "]");
}
catch (Exception ex) {
log.debug(
"OperationContextSaveTest:testSaveAndRestore(): error creating temp file = [" +
ex.getMessage() + "]");
theFile = null;
}
if (theFile != null) {
// ---------------------------------------------------------
// save to the temporary file
// ---------------------------------------------------------
try {
// setup an output stream to a physical file
FileOutputStream outStream = new FileOutputStream(theFile);
// attach a stream capable of writing objects to the
// stream connected to the file
ObjectOutputStream outObjStream = new ObjectOutputStream(outStream);
// try to save the message context
log.debug("OperationContextSaveTest:testSaveAndRestore(): saving .....");
saved = false;
outObjStream.writeObject(operationContext);
// close out the streams
outObjStream.flush();
outObjStream.close();
outStream.flush();
outStream.close();
saved = true;
log.debug(
"OperationContextSaveTest:testSaveAndRestore(): ....save operation completed.....");
long filesize = theFile.length();
log.debug("OperationContextSaveTest:testSaveAndRestore(): file size after save [" +
filesize + "] temp file = [" + theFilename + "]");
}
catch (Exception ex2) {
log.debug("OperationContextSaveTest:testSaveAndRestore(): error during save [" +
ex2.getClass().getName() + " : " + ex2.getMessage() + "]");
ex2.printStackTrace();
}
assertTrue(saved);
// ---------------------------------------------------------
// restore from the temporary file
// ---------------------------------------------------------
try {
// setup an input stream to the file
FileInputStream inStream = new FileInputStream(theFile);
// attach a stream capable of reading objects from the
// stream connected to the file
ObjectInputStream inObjStream = new ObjectInputStream(inStream);
// try to restore the context
log.debug("OperationContextSaveTest:testSaveAndRestore(): restoring .....");
restored = false;
OperationContext opctx_restored = (OperationContext) inObjStream.readObject();
inObjStream.close();
inStream.close();
opctx_restored.activate(configurationContext);
restored = true;
log.debug(
"OperationContextSaveTest:testSaveAndRestore(): ....restored operation completed.....");
// compare to original
comparesOk = opctx_restored.isEquivalent(operationContext);
log.debug(
"OperationContextSaveTest:testSaveAndRestore(): OperationContext equivalency [" +
comparesOk + "]");
assertTrue(comparesOk);
ServiceContext restored_srvCtx = opctx_restored.getServiceContext();
comparesOk = restored_srvCtx.isEquivalent(serviceContext);
log.debug(
"OperationContextSaveTest:testSaveAndRestore(): ServiceContext equivalency [" +
comparesOk + "]");
assertTrue(comparesOk);
ServiceGroupContext restored_sgCtx = restored_srvCtx.getServiceGroupContext();
comparesOk = restored_sgCtx.isEquivalent(serviceGroupContext);
log.debug(
"OperationContextSaveTest:testSaveAndRestore(): ServiceGroupContext equivalency [" +
comparesOk + "]");
assertTrue(comparesOk);
}
catch (Exception ex2) {
log.debug("OperationContextSaveTest:testSaveAndRestore(): error during restore [" +
ex2.getClass().getName() + " : " + ex2.getMessage() + "]");
ex2.printStackTrace();
}
assertTrue(restored);
// if the save/restore of the operation context succeeded,
// then don't keep the temporary file around
boolean removeTmpFile = saved && restored && comparesOk;
if (removeTmpFile) {
try {
theFile.delete();
}
catch (Exception e) {
// just absorb it
}
}
// indicate that the temp file was created ok
done = true;
}
// this is false when there are problems with the temporary file
assertTrue(done);
log.debug("OperationContextSaveTest:testSaveAndRestore(): END ---------------");
}
public class TempHandler extends AbstractHandler {
private Integer index;
//-----------------------------------------------------------------
// constructors
//-----------------------------------------------------------------
public TempHandler(int index) {
this.index = new Integer(index);
init(new HandlerDescription(new String("handler" + index)));
}
//-----------------------------------------------------------------
// methods
//-----------------------------------------------------------------
public InvocationResponse invoke(MessageContext msgContext) throws AxisFault {
log.debug("TempHandler:invoke(): index = [" + index + "]");
executedHandlers.add(index);
return InvocationResponse.CONTINUE;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?