123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /**
- Licensed Materials - Property of IBM
- IBM Cognos Products: DOCS
- (C) Copyright IBM Corp. 2009, 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with
- IBM Corp.
- */
- import javax.xml.namespace.QName;
- import org.apache.axis.message.SOAPHeaderElement;
- import com.cognos.developer.schemas.bibus._3.BiBusHeader;
- import com.cognos.developer.schemas.bibus._3.RoutingInfo;
- public class BIBusHeaderHelper {
- private static final String BIBUS_NS = "http://developer.cognos.com/schemas/bibus/3/";
- private static final String BIBUS_HDR = "biBusHeader";
- private static final QName BUS_QNAME = new QName(BIBUS_NS, BIBUS_HDR);
-
- // sn_dg_sdk_mng_svc_hdrs_start_2
- //Use this method when copying headers, such as for requests to services
- public static BiBusHeader getHeaderObject(SOAPHeaderElement SourceHeader, boolean isNewConversation, String RSGroup)
- {
- if (SourceHeader == null)
- return null;
-
- BiBusHeader bibus = null;
- try {
- bibus = (BiBusHeader)SourceHeader.getValueAsType(BUS_QNAME);
- // Note BUS_QNAME expands to:
- // new QName("http://developer.cognos.com/schemas/bibus/3/", "biBusHeader")
-
- //If the header will be used for a new conversation, clear
- //tracking information, and set routing if supplied (clear if not)
- if (isNewConversation){
-
- bibus.setTracking(null);
-
- //If a Routing Server Group is specified, direct requests to it
- if (RSGroup.length()>0) {
- RoutingInfo routing = new RoutingInfo(RSGroup);
- bibus.setRouting(routing);
- }
- else {
- bibus.setRouting(null);
- }
- }
- } catch (Exception e) {
-
- e.printStackTrace();
- }
-
- return bibus;
- }
- // sn_dg_sdk_mng_svc_hdrs_end_2
- // use this method when retrieving information from header, but header is not being copied
- // for use in service requests
- public static BiBusHeader getHeaderObject(SOAPHeaderElement SourceHeader)
- {
- if (SourceHeader == null)
- return null;
-
- BiBusHeader bibus = null;
- try {
- bibus = (BiBusHeader)SourceHeader.getValueAsType(BUS_QNAME);
-
- } catch (Exception e) {
-
- e.printStackTrace();
- }
-
- return bibus;
- }
-
- }
|