Hi Michele,
It looks like the problem is that spliting that string results in
invalid regular expressions i.e. * must follow a character.

I added the following to
org.apache.axis2.transport.http.ProxyConfiguration.validateNonProxyHosts(String)
and no longer get the exception and the matching seem to work:
if(a.startsWith("*")){a = "."+a;}

However, I'm not sure if this is on a performance critical path, so
please open a JIRA with this information and someone more familar with
the transport should take a look and perhaps come up with a better
fix.
Thanks,
David

On Jan 15, 2008 4:48 PM, Michele Mazzucco <[EMAIL PROTECTED]> wrote:
> David, here it is
> localhost|*.localhost|ncl.ac.uk|*.ncl.ac.uk
>
> Michele
>
> p.s. with localhost as first element it works fine in the synchronous
> version -- but as soon as I add a callback if fails as well
>
>
> On 15 Jan 2008, at 16:40, David Illsley wrote:
>
> > Michele, could you add code to your client to sysout
> > System.getProperty(HTTP_NON_PROXY_HOSTS) so it's possible to tell what
> > regex might be failing?
> > Thanks,
> > David
> >
> > On Jan 15, 2008 4:09 PM, Michele Mazzucco
> > <[EMAIL PROTECTED]> wrote:
> >> Some more information. Everything works fine with Axis2 1.2.
> >>
> >>
> >> Michele
> >>
> >>
> >> On 15 Jan 2008, at 16:02, Michele Mazzucco wrote:
> >>
> >>> Hello again,
> >>>
> >>> apparently this problem has already been raised here
> >>> http://www.mail-archive.com/[email protected]/msg35891.html
> >>>
> >>> Any idea?
> >>>
> >>> Thanks,
> >>> Michele
> >>>
> >>> On 15 Jan 2008, at 15:30, Michele Mazzucco wrote:
> >>>
> >>>> Hi all,
> >>>>
> >>>> can anybody tell me what's going on here?, the code used to create
> >>>> the payload and options is the following
> >>>>
> >>>> SOAPFactory factory = OMAbstractFactory.getSOAP12Factory();
> >>>>              OMNamespace omns = factory.getNamespace();
> >>>>              OMElement payload = factory.createOMElement
> >>>> ("hello", omns);
> >>>>              payload.setText("text");
> >>>>
> >>>>              ServiceClient sender = new ServiceClient
> >>>> (this.configContext, null);
> >>>>              Options options = new Options();
> >>>>              options.setTo(new EndpointReference("http://
> >>>> localhost:10001/
> >>>> axis2/services/EchoXml"));
> >>>>
> >>>>              logger.info("Message is going to: " + options.getTo
> >>>> ());
> >>>>              options.setTransportInProtocol
> >>>> (Constants.TRANSPORT_HTTP);
> >>>>              options.setCallTransportCleanup(true);
> >>>>              options.setAction("urn:echo");
> >>>>
> >>>>              sender.setOptions(options);
> >>>>
> >>>>              OMElement result = sender.sendReceive(payload);
> >>>>              try {
> >>>>                      result.serialize(System.out);
> >>>>              } catch (XMLStreamException e) {
> >>>>                      logger.error(e);
> >>>>              }
> >>>>
> >>>> Axis2 runs embedded using SimpleHTTPServer while the target EPR is
> >>>> set to localhost. Why is it complaining about '*'? Where does it
> >>>> get the domain?
> >>>>
> >>>>
> >>>> Thanks,
> >>>> Michele
> >>>>
> >>>>
> >>>> 0 [main] DEBUG org.apache.axiom.om.util.StAXUtils  -
> >>>> XMLStreamReader is com.ctc.wstx.sr.ValidatingStreamReader
> >>>> 229 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> RequestURIBasedDispatcher added to Phase Transport
> >>>> 238 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> SOAPActionBasedDispatcher added to Phase Transport
> >>>> 242 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> AddressingBasedDispatcher added to Phase Addressing
> >>>> 245 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> RequestURIBasedDispatcher added to Phase Dispatch
> >>>> 246 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> SOAPActionBasedDispatcher added to Phase Dispatch
> >>>> 249 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> RequestURIOperationDispatcher added to Phase Dispatch
> >>>> 251 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> SOAPMessageBodyBasedDispatcher added to Phase Dispatch
> >>>> 253 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> HTTPLocationBasedDispatcher added to Phase Dispatch
> >>>> 254 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> AddressingBasedDispatcher added to Phase Addressing
> >>>> 254 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> RequestURIBasedDispatcher added to Phase Dispatch
> >>>> 254 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> SOAPActionBasedDispatcher added to Phase Dispatch
> >>>> 255 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> RequestURIOperationDispatcher added to Phase Dispatch
> >>>> 255 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> SOAPMessageBodyBasedDispatcher added to Phase Dispatch
> >>>> 255 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> HTTPLocationBasedDispatcher added to Phase Dispatch
> >>>> 437 [main] INFO org.apache.axis2.deployment.util.Utils  - Created
> >>>> temporary file : /tmp/_axis2/axis263443addressing-1.3.mar
> >>>> 476 [main] DEBUG org.apache.axiom.om.util.StAXUtils  -
> >>>> XMLStreamReader is com.ctc.wstx.sr.ValidatingStreamReader
> >>>> 526 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> getBundle(org.apache.axis2,org.apache.axis2.i18n,resource,null,...)
> >>>> 549 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> loadBundle: Ignoring MissingResourceException: Can't find bundle
> >>>> for base name org.apache.axis2.resource, locale en_US
> >>>> 550 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> Created org.apache.axis2.i18n.resource, linked to parent null
> >>>> 552 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> getBundle(org.apache.axis2,org.apache.axis2.i18n,resource,null,...)
> >>>> 552 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(addingnewmodule)
> >>>> 553 [main] DEBUG org.apache.axis2.deployment.DeploymentEngine  -
> >>>> Adding new module
> >>>> 553 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(deployeingmodule)
> >>>> 554 [main] INFO org.apache.axis2.deployment.ModuleDeployer  -
> >>>> Deploying module: addressing-1.3
> >>>> 554 [main] INFO org.apache.axis2.deployment.util.Utils  - Created
> >>>> temporary file : /tmp/_axis2/axis263444mex-1.3.mar
> >>>> 557 [main] DEBUG org.apache.axiom.om.util.StAXUtils  -
> >>>> XMLStreamReader is com.ctc.wstx.sr.ValidatingStreamReader
> >>>> 614 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(addingnewmodule)
> >>>> 614 [main] DEBUG org.apache.axis2.deployment.DeploymentEngine  -
> >>>> Adding new module
> >>>> 615 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(deployeingmodule)
> >>>> 618 [main] INFO org.apache.axis2.deployment.ModuleDeployer  -
> >>>> Deploying module: metadataExchange-1.3
> >>>> 619 [main] INFO org.apache.axis2.deployment.util.Utils  - Created
> >>>> temporary file : /tmp/_axis2/axis263445ping-1.3.mar
> >>>> 625 [main] DEBUG org.apache.axiom.om.util.StAXUtils  -
> >>>> XMLStreamReader is com.ctc.wstx.sr.ValidatingStreamReader
> >>>> 637 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(addingnewmodule)
> >>>> 637 [main] DEBUG org.apache.axis2.deployment.DeploymentEngine  -
> >>>> Adding new module
> >>>> 637 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(deployeingmodule)
> >>>> 638 [main] INFO org.apache.axis2.deployment.ModuleDeployer  -
> >>>> Deploying module: ping-1.3
> >>>> 638 [main] INFO org.apache.axis2.deployment.util.Utils  - Created
> >>>> temporary file : /tmp/_axis2/axis263446scripting-1.3.mar
> >>>> 649 [main] DEBUG org.apache.axiom.om.util.StAXUtils  -
> >>>> XMLStreamReader is com.ctc.wstx.sr.ValidatingStreamReader
> >>>> 657 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(addingnewmodule)
> >>>> 661 [main] DEBUG org.apache.axis2.deployment.DeploymentEngine  -
> >>>> Adding new module
> >>>> 661 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(deployeingmodule)
> >>>> 662 [main] INFO org.apache.axis2.deployment.ModuleDeployer  -
> >>>> Deploying module: script-1.3
> >>>> 662 [main] INFO org.apache.axis2.deployment.util.Utils  - Created
> >>>> temporary file : /tmp/_axis2/axis263447soapmonitor-1.3.mar
> >>>> 674 [main] DEBUG org.apache.axiom.om.util.StAXUtils  -
> >>>> XMLStreamReader is com.ctc.wstx.sr.ValidatingStreamReader
> >>>> 686 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(addingnewmodule)
> >>>> 686 [main] DEBUG org.apache.axis2.deployment.DeploymentEngine  -
> >>>> Adding new module
> >>>> 686 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(deployeingmodule)
> >>>> 686 [main] INFO org.apache.axis2.deployment.ModuleDeployer  -
> >>>> Deploying module: soapmonitor-1.3
> >>>> 738 [main] DEBUG org.apache.axis2.scripting.ScriptModule  - script
> >>>> services init
> >>>> 762 [main] INFO org.apache.axis2.scripting.ScriptModule  - script
> >>>> module activated
> >>>> 768 [main] INFO org.apache.axis2.deployment.util.Utils  - Created
> >>>> temporary file : /tmp/_axis2/axis263448version.aar
> >>>> 783 [main] DEBUG org.apache.axiom.om.util.StAXUtils  -
> >>>> XMLStreamReader is com.ctc.wstx.sr.ValidatingStreamReader
> >>>> 818 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> getVersionRequest; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 819 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> getVersionResponse; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 819 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> getVersion; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 819 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> urn:getVersion; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1107 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> getVersionRequest; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1107 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: This operation is already mapped to this
> >>>> action: getVersionRequest; AxisOperation:
> >>>> [EMAIL PROTECTED] named:
> >>>> getVersion
> >>>> 1107 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> getVersionResponse; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1107 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: This operation is already mapped to this
> >>>> action: getVersionResponse; AxisOperation:
> >>>> [EMAIL PROTECTED] named:
> >>>> getVersion
> >>>> 1108 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> getVersion; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1108 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: This operation is already mapped to this
> >>>> action: getVersion; AxisOperation:
> >>>> [EMAIL PROTECTED] named:
> >>>> getVersion
> >>>> 1108 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> urn:getVersion; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1108 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: This operation is already mapped to this
> >>>> action: urn:getVersion; AxisOperation:
> >>>> [EMAIL PROTECTED] named:
> >>>> getVersion
> >>>> 1113 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> AddressingOutHandler added to Phase MessageOut
> >>>> 1113 [main] DEBUG org.apache.axis2.engine.Phase  - Handler
> >>>> AddressingOutHandler added to Phase MessageOut
> >>>> 1113 [main] DEBUG org.apache.axis2.i18n.ProjectResourceBundle  -
> >>>> org.apache.axis2.i18n.resource::handleGetObject(deployingws)
> >>>> 1114 [main] INFO org.apache.axis2.deployment.ServiceDeployer  -
> >>>> Deploying Web service: version.aar
> >>>> 1142 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> echoRequest; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1143 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> echoResponse; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1143 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action: echo;
> >>>> operation: [EMAIL PROTECTED]
> >>>> 1143 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> urn:echo; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1143 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> echoRequest; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1143 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: This operation is already mapped to this
> >>>> action: echoRequest; AxisOperation:
> >>>> [EMAIL PROTECTED] named: echo
> >>>> 1143 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> echoResponse; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1143 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: This operation is already mapped to this
> >>>> action: echoResponse; AxisOperation:
> >>>> [EMAIL PROTECTED] named: echo
> >>>> 1144 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action: echo;
> >>>> operation: [EMAIL PROTECTED]
> >>>> 1144 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: This operation is already mapped to this
> >>>> action: echo; AxisOperation:
> >>>> [EMAIL PROTECTED] named: echo
> >>>> 1144 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> urn:echo; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1144 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: This operation is already mapped to this
> >>>> action: urn:echo; AxisOperation:
> >>>> [EMAIL PROTECTED] named: echo
> >>>> 1146 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action: echo;
> >>>> operation: [EMAIL PROTECTED]
> >>>> 1146 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> urn:echo; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1146 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action: http://
> >>>> ws.apache.org/namespaces/axis2/echo; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1325 [HttpListener-10001-1] INFO
> >>>> org.apache.axis2.transport.http.server.DefaultConnectionListener
> >>>> - Listening on port 10001
> >>>> 1325 [HttpListener-10001-1] DEBUG
> >>>> org.apache.axis2.transport.http.server.DefaultConnectionListener
> >>>> - Waiting for incoming HTTP connection
> >>>> Target epr is Address: http://localhost:10001/axis2/services/
> >>>> EchoXml
> >>>> 1334 [main] INFO EmbeddedAxis2Server  - Axis2 embedded server
> >>>> started on port : 10001
> >>>> 1335 [main] INFO EmbeddedAxis2Server  - Endpoint for EchoXml
> >>>> service is null
> >>>> 1335 [main] INFO EmbeddedAxis2Server  - is active? true
> >>>> 1375 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> anonRobustOp; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1384 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> urn:anonRobustOp; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1388 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> anonOutonlyOp; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1388 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> urn:anonOutonlyOp; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1389 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> anonOutInOp; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1389 [main] DEBUG org.apache.axis2.description.AxisService  -
> >>>> mapActionToOperation: Mapping Action to Operation: action:
> >>>> urn:anonOutInOp; operation:
> >>>> [EMAIL PROTECTED]
> >>>> 1394 [main] INFO EmbeddedAxis2Server  - Message is going to:
> >>>> Address: http://localhost:10001/axis2/services/EchoXml
> >>>> 1437 [main] DEBUG
> >>>> org.apache.axis2.description.OutInAxisOperationClient  - Entry:
> >>>> OutInAxisOperationClient::execute, true
> >>>> 1446 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking pre-condition for Phase "soapmonitorPhase"
> >>>> 1447 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Invoking phase "soapmonitorPhase"
> >>>> 1447 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking post-conditions for phase "soapmonitorPhase"
> >>>> 1447 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking pre-condition for Phase "OperationOutPhase"
> >>>> 1447 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Invoking phase "OperationOutPhase"
> >>>> 1448 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking post-conditions for phase "OperationOutPhase"
> >>>> 1448 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking pre-condition for Phase "RMPhase"
> >>>> 1448 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Invoking phase "RMPhase"
> >>>> 1449 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking post-conditions for phase "RMPhase"
> >>>> 1449 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking pre-condition for Phase "PolicyDetermination"
> >>>> 1449 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Invoking phase "PolicyDetermination"
> >>>> 1449 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking post-conditions for phase "PolicyDetermination"
> >>>> 1450 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking pre-condition for Phase "MessageOut"
> >>>> 1450 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Invoking phase "MessageOut"
> >>>> 1450 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Invoking Handler 'AddressingOutHandler' in Phase 'MessageOut'
> >>>> 1457 [main] DEBUG
> >>>> org.apache.axis2.handlers.addressing.AddressingOutHandler  -
> >>>> WSAHeaderWriter: isFinal=false addMU=false replace=false
> >>>> includeOptional=false
> >>>> 1474 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking post-conditions for phase "MessageOut"
> >>>> 1474 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking pre-condition for Phase "Security"
> >>>> 1474 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Invoking phase "Security"
> >>>> 1475 [main] DEBUG org.apache.axis2.engine.Phase  -
> >>>> [MessageContext: logID=urn:uuid:2E4847334A219B76C61200410767919]
> >>>> Checking post-conditions for phase "Security"
> >>>> 1573 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.useragent = Jakarta Commons-HttpClient/3.0.1
> >>>> 1578 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.protocol.version = HTTP/1.1
> >>>> 1581 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.connection-manager.class = class
> >>>> org.apache.commons.httpclient.SimpleHttpConnectionManager
> >>>> 1582 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.protocol.cookie-policy = rfc2109
> >>>> 1582 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.protocol.element-charset = US-ASCII
> >>>> 1582 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.protocol.content-charset = ISO-8859-1
> >>>> 1585 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.method.retry-handler =
> >>>> [EMAIL PROTECTED]
> >>>> 1585 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.dateparser.patterns = [EEE, dd MMM yyyy HH:mm:ss
> >>>> zzz, EEEE, dd-MMM-yy HH:mm:ss zzz, EEE MMM d HH:mm:ss yyyy, EEE,
> >>>> dd-MMM-yyyy HH:mm:ss z, EEE, dd-MMM-yyyy HH-mm-ss z, EEE, dd MMM
> >>>> yy HH:mm:ss z, EEE dd-MMM-yyyy HH:mm:ss z, EEE dd MMM yyyy
> >>>> HH:mm:ss z, EEE dd-MMM-yyyy HH-mm-ss z, EEE dd-MMM-yy HH:mm:ss z,
> >>>> EEE dd MMM yy HH:mm:ss z, EEE,dd-MMM-yy HH:mm:ss z, EEE,dd-MMM-
> >>>> yyyy HH:mm:ss z, EEE, dd-MM-yyyy HH:mm:ss z]
> >>>> 1596 [main] DEBUG org.apache.commons.httpclient.HttpClient  - Java
> >>>> version: 1.5.0_13
> >>>> 1598 [main] DEBUG org.apache.commons.httpclient.HttpClient  - Java
> >>>> vendor: Apple Computer, Inc.
> >>>> 1598 [main] DEBUG org.apache.commons.httpclient.HttpClient  - Java
> >>>> class path: /Users/nmm42/devel/workspace/EmbeddedAxis2/bin:/Users/
> >>>> nmm42/devel/apache/axis2-1.3-bin/lib/axis2-clustering-1.3.jar:/
> >>>> Users/nmm42/devel/apache/axis2-1.3-bin/lib/axis2-jaxbri-1.3.jar:/
> >>>> Users/nmm42/devel/apache/axis2-1.3-bin/lib/axis2-
> >>>> java2wsdl-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> activation-1.1.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> XmlSchema-1.3.2.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> xml-apis-1.3.03.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> xercesImpl-2.8.1.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> xbean-2.2.0.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> xalan-2.7.0.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/wstx-
> >>>> asl-3.2.1.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> wsdl4j-1.6.2.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> woden-1.0-incubating-M7b.jar:/Users/nmm42/devel/apache/axis2-1.3-
> >>>> bin/lib/tribes-6.0.10.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/
> >>>> lib/stax-api-1.0.1.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> soapmonitor-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> neethi-2.0.2.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/mex-
> >>>> impl-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> mail-1.4.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> log4j-1.2.14.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> juli-6.0.10.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/jibx-
> >>>> run-1.1.5.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/jibx-
> >>>> bind-1.1.5.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> jaxen-1.1.1.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> jettison-1.0-RC1.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> jaxb-xjc-2.0.5.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> jaxb-impl-2.0.5.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> jaxb-api-2.0.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/axis2-
> >>>> adb-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/axis2-
> >>>> fastinfoset-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> httpcore-nio-4.0-alpha5.jar:/Users/nmm42/devel/apache/axis2-1.3-
> >>>> bin/lib/axis2-spring-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-
> >>>> bin/lib/axis2-saaj-api-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-
> >>>> bin/lib/commons-codec-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-
> >>>> bin/lib/axis2-codegen-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-
> >>>> bin/lib/backport-util-concurrent-2.2.jar:/Users/nmm42/devel/apache/
> >>>> axis2-1.3-bin/lib/axiom-api-1.2.5.jar:/Users/nmm42/devel/apache/
> >>>> axis2-1.3-bin/lib/axis2-json-1.3.jar:/Users/nmm42/devel/apache/
> >>>> axis2-1.3-bin/lib/axis2-jibx-1.3.jar:/Users/nmm42/devel/apache/
> >>>> axis2-1.3-bin/lib/axiom-impl-1.2.5.jar:/Users/nmm42/devel/apache/
> >>>> axis2-1.3-bin/lib/jalopy-1.5rc3.jar:/Users/nmm42/devel/apache/
> >>>> axis2-1.3-bin/lib/httpcore-niossl-4.0-alpha5.jar:/Users/nmm42/
> >>>> devel/apache/axis2-1.3-bin/lib/axis2-metadata-1.3.jar:/Users/nmm42/
> >>>> devel/apache/axis2-1.3-bin/lib/axis2-xmlbeans-1.3.jar:/Users/nmm42/
> >>>> devel/apache/axis2-1.3-bin/lib/commons-fileupload-1.1.1.jar:/Users/
> >>>> nmm42/devel/apache/axis2-1.3-bin/lib/axis2-saaj-1.3.jar:/Users/
> >>>> nmm42/devel/apache/axis2-1.3-bin/lib/axis2-mtompolicy-1.3.jar:/
> >>>> Users/nmm42/devel/apache/axis2-1.3-bin/lib/axis2-adb-
> >>>> codegen-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> annogen-0.1.0.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> httpcore-4.0-alpha5.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/
> >>>> lib/geronimo-jms_1.1_spec-1.1.jar:/Users/nmm42/devel/apache/
> >>>> axis2-1.3-bin/lib/axis2-jaxws-api-1.3.jar:/Users/nmm42/devel/
> >>>> apache/axis2-1.3-bin/lib/axis2-jaxws-1.3.jar:/Users/nmm42/devel/
> >>>> apache/axis2-1.3-bin/lib/geronimo-annotation_1.0_spec-1.1.jar:/
> >>>> Users/nmm42/devel/apache/axis2-1.3-bin/lib/commons-
> >>>> logging-1.1.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/axis2-
> >>>> ant-plugin-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> axiom-dom-1.2.5.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> axis2-kernel-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> axis2-jws-api-1.3.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> commons-io-1.2.jar:/Users/nmm42/devel/apache/axis2-1.3-bin/lib/
> >>>> commons-httpclient-3.0.1.jar:/Users/nmm42/devel/jetty-6.1.5/lib/
> >>>> jetty-6.1.5.jar:/Users/nmm42/devel/jetty-6.1.5/lib/jetty-
> >>>> util-6.1.5.jar:/Users/nmm42/devel/jetty-6.1.5/lib/servlet-
> >>>> api-2.5-6.1.5.jar:/Users/nmm42/devel/Libraries/logging-
> >>>> log4j-1.2.14/dist/lib/log4j-1.2.14.jar:/Users/nmm42/devel/apache/
> >>>> httpcomponents-core-4.0-alpha6/lib/httpcore-nio-4.0-alpha6.jar:/
> >>>> Users/nmm42/devel/apache/httpcomponents-core-4.0-alpha6/lib/
> >>>> httpcore-niossl-4.0-alpha6.jar:/Users/nmm42/devel/apache/
> >>>> httpcomponents-core-4.0-alpha6/lib/httpcore-4.0-alpha6.jar:/System/
> >>>> Library/Frameworks/JavaVM.framework/Versions/1.5.0/
> >>>> Classes/.compatibility/14compatibility.jar
> >>>> 1599 [main] DEBUG org.apache.commons.httpclient.HttpClient  -
> >>>> Operating system name: Mac OS X
> >>>> 1599 [main] DEBUG org.apache.commons.httpclient.HttpClient  -
> >>>> Operating system architecture: i386
> >>>> 1599 [main] DEBUG org.apache.commons.httpclient.HttpClient  -
> >>>> Operating system version: 10.4.11
> >>>> 1833 [main] DEBUG org.apache.commons.httpclient.HttpClient  - SUN
> >>>> 1.5: SUN (DSA key/parameter generation; DSA signing; SHA-1, MD5
> >>>> digests; SecureRandom; X.509 certificates; JKS keystore; PKIX
> >>>> CertPathValidator; PKIX CertPathBuilder; LDAP, Collection
> >>>> CertStores)
> >>>> 1834 [main] DEBUG org.apache.commons.httpclient.HttpClient  -
> >>>> Apple 1.0: Apple Provider (implements DES, Triple DES, AES,
> >>>> Blowfish, PBE, Diffie-Hellman, HMAC/MD5, HMAC/SHA1)
> >>>> 1834 [main] DEBUG org.apache.commons.httpclient.HttpClient  -
> >>>> SunRsaSign 1.5: Sun RSA signature provider
> >>>> 1834 [main] DEBUG org.apache.commons.httpclient.HttpClient  -
> >>>> SunJSSE 1.5: Sun JSSE provider(PKCS12, SunX509 key/trust
> >>>> factories, SSLv3, TLSv1)
> >>>> 1834 [main] DEBUG org.apache.commons.httpclient.HttpClient  -
> >>>> SunJCE 1.5: SunJCE Provider (implements RSA, DES, Triple DES, AES,
> >>>> Blowfish, ARCFOUR, RC2, PBE, Diffie-Hellman, HMAC)
> >>>> 1834 [main] DEBUG org.apache.commons.httpclient.HttpClient  -
> >>>> SunJGSS 1.0: Sun (Kerberos v5)
> >>>> 1834 [main] DEBUG org.apache.commons.httpclient.HttpClient  -
> >>>> SunSASL 1.5: Sun SASL provider(implements client mechanisms for:
> >>>> DIGEST-MD5, GSSAPI, EXTERNAL, PLAIN, CRAM-MD5; server mechanisms
> >>>> for: DIGEST-MD5, GSSAPI, CRAM-MD5)
> >>>> 1847 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.connection.timeout = 30000
> >>>> 1847 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.socket.timeout = 30000
> >>>> 1848 [main] DEBUG
> >>>> org.apache.commons.httpclient.params.DefaultHttpParams  - Set
> >>>> parameter http.socket.timeout = 30000
> >>>> 1890 [main] DEBUG
> >>>> org.apache.axis2.transport.http.SOAPMessageFormatter  -
> >>>> contentType from the OMOutputFormat =text/xml
> >>>> 1890 [main] DEBUG
> >>>> org.apache.axis2.transport.http.SOAPMessageFormatter  -
> >>>> contentType returned =text/xml; charset=UTF-8
> >>>> [SimpleHTTPServer] Stop called
> >>>> 1905 [main] INFO
> >>>> org.apache.axis2.transport.http.server.SimpleHttpServer  - Shut
> >>>> down connection listener
> >>>> 1914 [main] INFO
> >>>> org.apache.axis2.transport.http.server.SimpleHttpServer  - Shut
> >>>> down HTTP processors
> >>>> 1914 [main] INFO
> >>>> org.apache.axis2.transport.http.server.SimpleHttpServer  - HTTP
> >>>> protocol handler shut down
> >>>> Exception in thread "main" java.util.regex.PatternSyntaxException:
> >>>> Dangling meta character '*' near index 0
> >>>> *.ncl.ac.uk
> >>>> ^
> >>>>      at java.util.regex.Pattern.error(Pattern.java:1650)
> >>>>      at java.util.regex.Pattern.sequence(Pattern.java:1787)
> >>>>      at java.util.regex.Pattern.expr(Pattern.java:1687)
> >>>>      at java.util.regex.Pattern.compile(Pattern.java:1397)
> >>>>      at java.util.regex.Pattern.<init>(Pattern.java:1124)
> >>>>      at java.util.regex.Pattern.compile(Pattern.java:817)
> >>>>      at java.util.regex.Pattern.matches(Pattern.java:919)
> >>>>      at java.lang.String.matches(String.java:1921)
> >>>>      at
> >>>> org.apache.axis2.transport.http.ProxyConfiguration.validateNonProxy
> >>>> Ho
> >>>> sts(ProxyConfiguration.java:261)
> >>>>      at
> >>>> org.apache.axis2.transport.http.ProxyConfiguration.isProxyEnabled
> >>>> (ProxyConfiguration.java:223)
> >>>>      at
> >>>> org.apache.axis2.transport.http.AbstractHTTPSender.getHostConfigura
> >>>> ti
> >>>> on(AbstractHTTPSender.java:271)
> >>>>      at
> >>>> org.apache.axis2.transport.http.AbstractHTTPSender.executeMethod
> >>>> (AbstractHTTPSender.java:502)
> >>>>      at org.apache.axis2.transport.http.HTTPSender.sendViaPost
> >>>> (HTTPSender.java:191)
> >>>>      at org.apache.axis2.transport.http.HTTPSender.send
> >>>> (HTTPSender.java:77)
> >>>>      at
> >>>> org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMes
> >>>> sa
> >>>> geWithCommons(CommonsHTTPTransportSender.java:327)
> >>>>      at
> >>>> org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke
> >>>> (CommonsHTTPTransportSender.java:206)
> >>>>      at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:
> >>>> 396)
> >>>>      at org.apache.axis2.description.OutInAxisOperationClient.send
> >>>> (OutInAxisOperation.java:374)
> >>>>      at
> >>>> org.apache.axis2.description.OutInAxisOperationClient.executeImpl
> >>>> (OutInAxisOperation.java:211)
> >>>>      at org.apache.axis2.client.OperationClient.execute
> >>>> (OperationClient.java:163)
> >>>>      at org.apache.axis2.client.ServiceClient.sendReceive
> >>>> (ServiceClient.java:528)
> >>>>      at org.apache.axis2.client.ServiceClient.sendReceive
> >>>> (ServiceClient.java:508)
> >>>>      at EmbeddedAxis2Server.testEchoXml(EmbeddedAxis2Server.java:
> >>>> 170)
> >>>>      at EmbeddedAxis2Server.main(EmbeddedAxis2Server.java:126)
> >>>>
> >>>> -------------------------------------------------------------------
> >>>> --
> >>>> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >>>> For additional commands, e-mail: [EMAIL PROTECTED]
> >>>>
> >>>
> >>>
> >>> --------------------------------------------------------------------
> >>> -
> >>> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >>> For additional commands, e-mail: [EMAIL PROTECTED]
> >>>
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: [EMAIL PROTECTED]
> >> For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >>
> >
> >
> >
> > --
> > David Illsley - IBM Web Services Development
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-- 
David Illsley - IBM Web Services Development

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to