Skip to content

Commit

Permalink
解决header不能自己设置的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
DevotedTangLiu committed May 23, 2016
1 parent 2636325 commit 79bbcf5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ protected void initContext(String methodName) {

context.setSeqid(seqid_.incrementAndGet());

SoaHeader soaHeader = new SoaHeader();
SoaHeader soaHeader = context.getHeader() == null ? new SoaHeader() : context.getHeader();

InvocationContext.Factory.ISoaHeaderProxy headerProxy = InvocationContext.Factory.getSoaHeaderProxy();
if (headerProxy != null) {
Expand Down

0 comments on commit 79bbcf5

Please sign in to comment.