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 "Paul Mahoney (JIRA)" <ji...@apache.org> on 2007/05/18 12:12:16 UTC

[jira] Created: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

setting MC_GZIP_REQUEST to true with Jibx databinding framework
---------------------------------------------------------------

                 Key: AXIS2-2686
                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: transports
    Affects Versions: 1.1.1
            Reporter: Paul Mahoney
            Priority: Minor


If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.

I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].

What have I forgotten, or is this a bug?

Log snippet:

DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


PublishingClient

Posted by sm...@wipro.com.
Hi
I have seen in Savan API

public static void sendPublication(org.apache.axiom.soap.SOAPEnvelope
publication,org.apache.axis2.context.ConfigurationContext
configurationContext,SubscriberStore store)
                            throws SavanException

But when I checked the source code I am seeing 

sendPublication (OMElement publication, AxisService service) throws
SavanException


Is there anything wrong in the source code /API?

BR
Smitha Aldrin



The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.
 
www.wipro.com

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Commented: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

Posted by "Dennis Sosnoski (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-2686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12498984 ] 

Dennis Sosnoski commented on AXIS2-2686:
----------------------------------------

I'll give it a try myself with some ADB code, to try to determine whether this is JiBX-related or a general issue.

> setting MC_GZIP_REQUEST to true with Jibx databinding framework
> ---------------------------------------------------------------
>
>                 Key: AXIS2-2686
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.1.1
>            Reporter: Paul Mahoney
>         Assigned To: Dennis Sosnoski
>            Priority: Minor
>         Attachments: XmlSelectConnection.java
>
>
> If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.
> I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].
> What have I forgotten, or is this a bug?
> Log snippet:
> DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
> DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Resolved: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

Posted by "Dennis Sosnoski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-2686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dennis Sosnoski resolved AXIS2-2686.
------------------------------------

    Resolution: Cannot Reproduce

Tried setting this option for both ADB and JiBX:

        stub._getServiceClient().getOptions().setProperty(HTTPConstants.MC_GZIP_REQUEST, Boolean.TRUE);

worked as expected for both data bindings. I suggest you try setting the option directly rather than through Spring, and check the behavior that way. If you can recreate the problem without going through Spring, please upload the sample.

> setting MC_GZIP_REQUEST to true with Jibx databinding framework
> ---------------------------------------------------------------
>
>                 Key: AXIS2-2686
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.1.1
>            Reporter: Paul Mahoney
>            Assignee: Dennis Sosnoski
>            Priority: Minor
>         Attachments: XmlSelectConnection.java
>
>
> If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.
> I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].
> What have I forgotten, or is this a bug?
> Log snippet:
> DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
> DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Commented: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

Posted by "Paul Mahoney (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-2686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12512904 ] 

Paul Mahoney commented on AXIS2-2686:
-------------------------------------

Have found the cause. On tracing the code, step by step, I finally found this method in 

  org.apache.axis2.transport.http.SOAPOverHTTPSender

    public void writeRequest(OutputStream out) throws IOException {
            Object gzip = msgCtxt.getOptions().getProperty(HTTPConstants.MC_GZIP_REQUEST);
            if(gzip != null && JavaUtils.isTrueExplicitly(gzip) && chunked) {
                out = new GZIPOutputStream(out);
            }
            // STIFF DELETED FOR BREVITY
           .....
    }

Thus compression of the request will only occur if you also set HTTPConstants.CHUNKED.
This makes perfect sense as, due to compression, the sender will not know the final size of the request. 
Unfortunately, due to another issue (now resolved) I was setting chunked to false....

Perhaps the javadoc for MC_GZIP_REQUESTcould be enhanced to point this out?


> setting MC_GZIP_REQUEST to true with Jibx databinding framework
> ---------------------------------------------------------------
>
>                 Key: AXIS2-2686
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.1.1
>            Reporter: Paul Mahoney
>            Assignee: Dennis Sosnoski
>            Priority: Minor
>         Attachments: XmlSelectConnection.java
>
>
> If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.
> I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].
> What have I forgotten, or is this a bug?
> Log snippet:
> DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
> DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Commented: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

Posted by "Paul Mahoney (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-2686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12498976 ] 

Paul Mahoney commented on AXIS2-2686:
-------------------------------------

My code is some layers away from where the http connection is established.
Presumably somewhere in the depths of Axis2. I'm assuming Axis2 will handle
the fact the Jibx is the marshaller/unmarshaller. Should I raise this issue
on an Axis2 list?

sian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_>12498972 ] 
Y6V</Profile><Request><AirAvailability_>7><AirAvailMods><AirVPrefInd><AirVIn
cExcInd>I</AirVIncExcInd></
AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>>BA</AirV></AirVInfo><AirVIn
fo><AirV>AA</AirV></AirVInfo></AirVA
ry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>>Y</Class><StartDt>200
71118</StartDt><StartPt>LHR</StartPt><EndP
t>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>>A</StartPtInd><EndPtInd>A</E
ndPtInd><WidenSearchWndInd>N</Widen
SearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>>Y</IncNonStop
DirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd
N</IncDoubleO
nlineConxInd><IncTripleOnlineConxInd>>N</IncTripleOnlineConxInd><IncSingleIn
terlineConxInd>N</IncSing
leInterlineConxInd><IncDoubleInterlineConxInd>>N</IncDoubleInterlineConxInd>
<IncTripleInterlineConxInd>N</IncT
ripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailabilit>y_7></Reque
st><Filter><_ 



> setting MC_GZIP_REQUEST to true with Jibx databinding framework
> ---------------------------------------------------------------
>
>                 Key: AXIS2-2686
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.1.1
>            Reporter: Paul Mahoney
>         Assigned To: Dennis Sosnoski
>            Priority: Minor
>         Attachments: XmlSelectConnection.java
>
>
> If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.
> I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].
> What have I forgotten, or is this a bug?
> Log snippet:
> DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
> DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Commented: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

Posted by "Paul Mahoney (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-2686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12509505 ] 

Paul Mahoney commented on AXIS2-2686:
-------------------------------------

Hi, Did you get anywhere with this? Should I rasie the issue on another list?
Regards, Paul

> setting MC_GZIP_REQUEST to true with Jibx databinding framework
> ---------------------------------------------------------------
>
>                 Key: AXIS2-2686
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.1.1
>            Reporter: Paul Mahoney
>            Assignee: Dennis Sosnoski
>            Priority: Minor
>         Attachments: XmlSelectConnection.java
>
>
> If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.
> I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].
> What have I forgotten, or is this a bug?
> Log snippet:
> DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
> DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Commented: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

Posted by "Dennis Sosnoski (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-2686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12498972 ] 

Dennis Sosnoski commented on AXIS2-2686:
----------------------------------------

I have a difficult time believing that this has anything to do with JiBX, since the compression should be taking place at the transport layer. Does the compression work with other data binding approaches?

> setting MC_GZIP_REQUEST to true with Jibx databinding framework
> ---------------------------------------------------------------
>
>                 Key: AXIS2-2686
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.1.1
>            Reporter: Paul Mahoney
>         Assigned To: Dennis Sosnoski
>            Priority: Minor
>         Attachments: XmlSelectConnection.java
>
>
> If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.
> I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].
> What have I forgotten, or is this a bug?
> Log snippet:
> DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
> DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Assigned: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-2686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Davanum Srinivas reassigned AXIS2-2686:
---------------------------------------

    Assignee: Dennis Sosnoski

> setting MC_GZIP_REQUEST to true with Jibx databinding framework
> ---------------------------------------------------------------
>
>                 Key: AXIS2-2686
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.1.1
>            Reporter: Paul Mahoney
>         Assigned To: Dennis Sosnoski
>            Priority: Minor
>
> If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.
> I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].
> What have I forgotten, or is this a bug?
> Log snippet:
> DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
> DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Commented: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-2686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12498657 ] 

Davanum Srinivas commented on AXIS2-2686:
-----------------------------------------

Can u please post your code snippet on how/where you set the option to true? better yet a full sample for us to recreate the problem?

thanks,
dims

> setting MC_GZIP_REQUEST to true with Jibx databinding framework
> ---------------------------------------------------------------
>
>                 Key: AXIS2-2686
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.1.1
>            Reporter: Paul Mahoney
>            Priority: Minor
>
> If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.
> I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].
> What have I forgotten, or is this a bug?
> Log snippet:
> DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
> DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Updated: (AXIS2-2686) setting MC_GZIP_REQUEST to true with Jibx databinding framework

Posted by "Paul Mahoney (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-2686?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Mahoney updated AXIS2-2686:
--------------------------------

    Attachment: XmlSelectConnection.java

 
Hello

I've attracted the code the manages the connection and sets the options.
This is part of a spring based application so all the properties are set
from the framework at start up.

Hope this helps

Regards

Paul

sian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_>12498657 ] 
Y6V</Profile><Request><AirAvailability_>7><AirAvailMods><AirVPrefInd><AirVIn
cExcInd>I</AirVIncExcInd></
AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>>BA</AirV></AirVInfo><AirVIn
fo><AirV>AA</AirV></AirVInfo></AirVA
ry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>>Y</Class><StartDt>200
71118</StartDt><StartPt>LHR</StartPt><EndP
t>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>>A</StartPtInd><EndPtInd>A</E
ndPtInd><WidenSearchWndInd>N</Widen
SearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>>Y</IncNonStop
DirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd
N</IncDoubleO
nlineConxInd><IncTripleOnlineConxInd>>N</IncTripleOnlineConxInd><IncSingleIn
terlineConxInd>N</IncSing
leInterlineConxInd><IncDoubleInterlineConxInd>>N</IncDoubleInterlineConxInd>
<IncTripleInterlineConxInd>N</IncT
ripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailabilit>y_7></Reque
st><Filter><_ 


> setting MC_GZIP_REQUEST to true with Jibx databinding framework
> ---------------------------------------------------------------
>
>                 Key: AXIS2-2686
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2686
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: transports
>    Affects Versions: 1.1.1
>            Reporter: Paul Mahoney
>         Assigned To: Dennis Sosnoski
>            Priority: Minor
>         Attachments: XmlSelectConnection.java
>
>
> If have set MC_GZIP_REQUEST to true, but on looking at the "httpclient.wire" logger I find the contents have not been zipped.
> I'm using the jibx framework [org.apache.axis2.wsdl.WSDL2Java-d jibx].
> What have I forgotten, or is this a bug?
> Log snippet:
> DEBUG [httpclient.wire.header] | >> "POST /B2BGateway/service/XMLSelect HTTP/1.1[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "SOAPAction: "http://webservices.galileo.com/SubmitXml"[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "User-Agent: Axis2[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Accept-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Encoding: gzip[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Authorization: Basic UENDNTFMUDp0dmwyNTFscA==[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Host: ws.cendant.com[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Length: 1228[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "Content-Type: text/xml; charset=UTF-8[\r][\n]"^M
> DEBUG [httpclient.wire.header] | >> "[\r][\n]"^M
> DEBUG [httpclient.wire.content] | >> "<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><SubmitXml xmlns="http://webservices.galileo.com"><Profile>DynGalileoProd_Y6V</Profile><Request><AirAvailability_7><AirAvailMods><AirVPrefInd><AirVIncExcInd>I</AirVIncExcInd></AirVPrefInd><AirVPrefs><AirVAry><AirVInfo><AirV>BA</AirV></AirVInfo><AirVInfo><AirV>AA</AirV></AirVInfo></AirVAry></AirVPrefs><GenAvail><NumSeats>1</NumSeats><Class>Y</Class><StartDt>20071118</StartDt><StartPt>LHR</StartPt><EndPt>JFK</EndPt><TmWndInd>D</TmWndInd><StartPtInd>A</StartPtInd><EndPtInd>A</EndPtInd><WidenSearchWndInd>N</WidenSearchWndInd><MaxNumFlts>48</MaxNumFlts><IncNonStopDirectsInd>Y</IncNonStopDirectsInd><IncStopDirectsInd>Y</IncStopDirectsInd><IncSingleOnlineConxInd>N</IncSingleOnlineConxInd><IncDoubleOnlineConxInd>N</IncDoubleOnlineConxInd><IncTripleOnlineConxInd>N</IncTripleOnlineConxInd><IncSingleInterlineConxInd>N</IncSingleInterlineConxInd><IncDoubleInterlineConxInd>N</IncDoubleInterlineConxInd><IncTripleInterlineConxInd>N</IncTripleInterlineConxInd></GenAvail></AirAvailMods></AirAvailability_7></Request><Filter><_ /></Filter></SubmitXml></soapenv:Body></soapenv:Envelope>"^M

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org