You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by Greg Truty <gt...@us.ibm.com> on 2002/09/25 22:21:53 UTC

WSDD Handler tweeks...




Folks,

In trying to use my Handler changes that I incorporated earlier, I realized
that I didn't make them extendible (from other environ's not using the WSDD
element configuration).  Therefore, some public accessors are needed in
order for this to work out (silly silly mistake).  This really isn't new
function but the ability to extend what should have been there like all of
the other WSDD items.  These will be committed by Rich Scheuerle (thanks
Rich)...

Index: wsdd/WSDDJAXRPCHandlerInfo.java
===================================================================
RCS file:
/home/cvspublic/xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDJAXRPCHandlerInfo.java,v
retrieving revision 1.6
diff -r1.6 WSDDJAXRPCHandlerInfo.java
156c156
<         // Add parameters to Parameters Table here
---
>         _map = map;
Index: wsdd/WSDDJAXRPCHandlerInfoChain.java
===================================================================
RCS file:
/home/cvspublic/xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDJAXRPCHandlerInfoChain.java,v
retrieving revision 1.3
diff -r1.3 WSDDJAXRPCHandlerInfoChain.java
144a145,160
>     public ArrayList getHandlerInfoList() {
>         return _hiList;
>     }
>
>     public void setHandlerInfoList(ArrayList hiList) {
>         _hiList = hiList;
>     }
>
>     public String[] getRoles() {
>         return _roles;
>     }
>
>     public void setRoles(String[] roles) {
>         _roles = roles;
>     }
>
Index: wsdd/WSDDService.java
===================================================================
RCS file:
/home/cvspublic/xml-axis/java/src/org/apache/axis/deployment/wsdd/WSDDService.java,v
retrieving revision 1.94
diff -r1.94 WSDDService.java
662a663,670
>
>     public WSDDJAXRPCHandlerInfoChain getHandlerInfoChain() {
>         return _wsddHIchain;
>     }
>
>     public void setHandlerInfoChain(WSDDJAXRPCHandlerInfoChain hichain) {
>         _wsddHIchain = hichain;
>     }
Regards... Greg

Greg Truty