RE: Deploying a handler

2013-06-02 Thread Abdelrahman Almahmoud
Thanks for the help, this was very useful
Now I have a different question related to this. When trying to get an element 
from the message context, is there an easy way to do that? or do I have to 
parse the message manually?
Thanks

Date: Wed, 29 May 2013 09:37:14 -0400
From: deep...@gmail.com
To: java-dev@axis.apache.org
Subject: Re: Deploying a handler


  

  
  
Why don't you read one of the articles
  I sent you?

  

  Deepal



  

  

  

  

  Deepal
  jayasinghe,

  


  Can I know
what is the benefit you will get if we will go
through the modules.



  
I saw the
  steps, it tells to follow the bellow steps

  



  MyService
  with a
  Logging Module

  Step1
  : LoggingModule
  Class
  Step2
  : LogHandler
  Step3
  : module.xml
  Step4:
Modify
  the axis2.xml
  Step5
  :
  Modify the services.xml
  Step6
  : Packaging
  Step7
  : Deploy
  the Module in Axis2

  

Actually I don't have the knowledge of the module,
for that reason I am asking this.



  
  From my understanding,

  


If you want to log only soap message what is going out
and coming in, use a simple handler which is the
subclass of AbstractHandler



  
  get the soap message from the messageContext. And
  configure the same class in axis2.xml and deploy.

  


If you can clarify me what is the disadvantage here, for
that reason we will go through the module, I will be great
thankful to you.



  
  Thanks,


Satya

  
  



On Wed, May 29, 2013 at 12:16 PM,
  Abdelrahman Almahmoud fire_storm5...@hotmail.com
  wrote:

  

  Thanks for your time, the comments are very
helpful



Just to clarify, you suggested that changing the
  Axis2.xml is not needed when writing modules but the
  first guide is doing that
If possible, I would like the module to activate on
  a single service

  

  
  So far this is what I have,
  

  
  the SimpleModule.java  which I assume is mostly
default
  

  
  
package abd;



import org.apache.axis2.AxisFault;
import
  org.apache.axis2.context.ConfigurationContext;
import
  org.apache.axis2.description.AxisDescription;
import org.apache.axis2.description.AxisModule;
import org.apache.axis2.modules.Module;
import org.apache.neethi.Assertion;
import org.apache.neethi.Policy;



public class SimpleModule implements Module{



public void init(ConfigurationContext
  configContext, AxisModule module) throws AxisFault
  {
}



public void engageNotify(AxisDescription
  axisDescription) throws AxisFault {
}



public void shutdown(ConfigurationContext
  configurationContext) throws AxisFault {
}

public String[] getPolicyNamespaces() {
 

Re: Deploying a handler

2013-06-02 Thread Deepal jayasinghe
From the message context you can get the OMElement for the message and
from that you can get any element. If you want you can write Xpath query
also.

Deepal
 Thanks for the help, this was very useful

 Now I have a different question related to this. When trying to get an
 element from the message context, is there an easy way to do that? or
 do I have to parse the message manually?

 Thanks

 
 Date: Wed, 29 May 2013 09:37:14 -0400
 From: deep...@gmail.com
 To: java-dev@axis.apache.org
 Subject: Re: Deploying a handler

 Why don't you read one of the articles I sent you?

 Deepal

 Deepal jayasinghe,

 Can I know what is the benefit you will get if we will go through
 the modules.

 I saw the steps, it tells to follow the bellow steps

   * MyService with a Logging Module
 
 http://axis.apache.org/axis2/java/core/docs/modules.html#MyService_with_a_Logging_Module

   o Step1 : LoggingModule Class
 
 http://axis.apache.org/axis2/java/core/docs/modules.html#Step1_:_LoggingModule_Class
   o Step2 : LogHandler
 
 http://axis.apache.org/axis2/java/core/docs/modules.html#Step2_:_LogHandler
   o Step3 : module.xml
 
 http://axis.apache.org/axis2/java/core/docs/modules.html#Step3_:_module_xml
   o Step4: Modify the axis2.xml
 
 http://axis.apache.org/axis2/java/core/docs/modules.html#Step_4:_Modify_the_axis2_xml
   o Step5 : Modify the services.xml
 
 http://axis.apache.org/axis2/java/core/docs/modules.html#Step5_:_Modify_the_services_xml
   o Step6 : Packaging
 
 http://axis.apache.org/axis2/java/core/docs/modules.html#Step6_:_Packaging
   o Step7 : Deploy the Module in Axis2
 
 http://axis.apache.org/axis2/java/core/docs/modules.html#Step7_:_Deploy_the_Module_in_Axis2

 Actually I don't have the knowledge of the module, for that reason
 I am asking this.

 From my understanding,

 If you want to log only soap message what is going out and coming
 in, use a simple handler which is the subclass of AbstractHandler

 get the soap message from the messageContext. And configure the
 same class in axis2.xml and deploy.

 If you can clarify me what is the disadvantage here, for that
 reason we will go through the module, I will be great thankful to you.

 Thanks,
 Satya


 On Wed, May 29, 2013 at 12:16 PM, Abdelrahman Almahmoud
 fire_storm5...@hotmail.com mailto:fire_storm5...@hotmail.com
 wrote:

 Thanks for your time, the comments are very helpful

 Just to clarify, you suggested that changing the Axis2.xml is
 not needed when writing modules but the first guide is doing that
 If possible, I would like the module to activate on a single
 service

 So far this is what I have,

 the SimpleModule.java  which I assume is mostly default

 package abd;

 import org.apache.axis2.AxisFault;
 import org.apache.axis2.context.ConfigurationContext;
 import org.apache.axis2.description.AxisDescription;
 import org.apache.axis2.description.AxisModule;
 import org.apache.axis2.modules.Module;
 import org.apache.neethi.Assertion;
 import org.apache.neethi.Policy;

 public class SimpleModule implements Module{

 public void init(ConfigurationContext configContext,
 AxisModule module) throws AxisFault {
 }

 public void engageNotify(AxisDescription axisDescription)
 throws AxisFault {
 }

 public void shutdown(ConfigurationContext
 configurationContext) throws AxisFault {
 }
 
 public String[] getPolicyNamespaces() {
 return null;
 }

 public void applyPolicy(Policy policy, AxisDescription
 axisDescription) throws AxisFault {
 }

 public boolean canSupportAssertion(Assertion assertion) {
 return true;
 }
 }


 The SimpleHandler.java which I pasted before and the module.xml 

 module name=SimpleModule class=abd.SimpleModule
 InFlow
 handler name=InFlowLogHandler
 class=abd.SimpleHandler
 order phase=TestPhase/
 /handler
 /InFlow

 OutFlow
 handler name=OutFlowLogHandler
 class=abd.SimpleHandler
 order phase=TestPhase/
 /handler
 /OutFlow

 OutFaultFlow
 handler name=FaultOutFlowLogHandler
 class=abd.SimpleHandler
 order phase=TestPhase/
 /handler
 /OutFaultFlow

 InFaultFlow
 

[jira] [Updated] (AXIS2-5578) Transport level information does not match with SOAP Message namespace URI

2013-06-02 Thread Andreas Veithen (JIRA)

 [ 
https://issues.apache.org/jira/browse/AXIS2-5578?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Veithen updated AXIS2-5578:
---

Fix Version/s: (was: 1.2)

 Transport level information does not match with SOAP Message namespace URI
 --

 Key: AXIS2-5578
 URL: https://issues.apache.org/jira/browse/AXIS2-5578
 Project: Axis2
  Issue Type: Bug
  Components: client-api
Affects Versions: 1.2
 Environment: Windows
Reporter: srinivasa
Priority: Blocker
  Labels: patch
   Original Estimate: 24h
  Remaining Estimate: 24h

 Hello,
 I'm getting the org.apache.axiom.soap.SOAPProcessingException: Transport 
 level information does not match with SOAP Message namespace URI.
 It was mentioned some fix made in the 
 https://issues.apache.org/jira/browse/AXIS2-2129
 Can you please provide more details, how to fix the issue?
 Thanks
 Srinivas

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Resolved] (AXIS2-5578) Transport level information does not match with SOAP Message namespace URI

2013-06-02 Thread Andreas Veithen (JIRA)

 [ 
https://issues.apache.org/jira/browse/AXIS2-5578?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andreas Veithen resolved AXIS2-5578.


Resolution: Invalid

There is no evidence that the error is caused by a bug in Axis2. It is likely a 
user error or a problem with a third party product.

See 
http://stackoverflow.com/questions/16861147/transport-level-information-does-not-match-with-soap-message-namespace-uri#16883460

 Transport level information does not match with SOAP Message namespace URI
 --

 Key: AXIS2-5578
 URL: https://issues.apache.org/jira/browse/AXIS2-5578
 Project: Axis2
  Issue Type: Bug
  Components: client-api
Affects Versions: 1.2
 Environment: Windows
Reporter: srinivasa
Priority: Blocker
  Labels: patch
   Original Estimate: 24h
  Remaining Estimate: 24h

 Hello,
 I'm getting the org.apache.axiom.soap.SOAPProcessingException: Transport 
 level information does not match with SOAP Message namespace URI.
 It was mentioned some fix made in the 
 https://issues.apache.org/jira/browse/AXIS2-2129
 Can you please provide more details, how to fix the issue?
 Thanks
 Srinivas

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



Build failed in Jenkins: Axis2 #2314

2013-06-02 Thread Apache Jenkins Server
See https://builds.apache.org/job/Axis2/2314/

--
[...truncated 332 lines...]

---
 T E S T S
---
Running org.apache.axis2.phaserule.AddingHandlerToEachPhaseTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.124 sec
Running org.apache.axis2.phaserule.PreDispatchPhaseRuleTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.apache.axis2.dataretrieval.SchemaDataLocatorTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.485 sec
Running org.apache.axis2.client.ServiceClientTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.128 sec
Running org.apache.axis2.validation.ValidateAxis2XMLTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.085 sec
Running org.apache.axis2.builder.SOAPBuilderTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 sec
Running org.apache.axis2.engine.ModuleConfigTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 sec
Running org.apache.axis2.engine.ParameterAddTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
Running org.apache.axis2.engine.DispatchPhaseTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.apache.axis2.engine.SOAPActionBasedDispatcherTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running org.apache.axis2.engine.ModuleEngageTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.06 sec
Running org.apache.axis2.engine.DeployableChainTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.apache.axis2.description.WSDLSupplierTest
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.203 sec
Running org.apache.axis2.description.ParameterEditTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.apache.axis2.description.MessageExchangePatternsTest
Tests run: 72, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.756 sec
Running org.apache.axis2.description.RegistryTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.apache.axis2.description.OutOnlyAxisOperationTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.apache.axis2.description.WSDLToAllServicesBuilderTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.apache.axis2.description.VersionTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
Running org.apache.axis2.description.WSDLWrapperTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.157 sec
Running org.apache.axis2.description.WSDL11ToAxisServiceBuilderAttachmentTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.004 sec
Running org.apache.axis2.description.java2wsdl.DocLitBareSchemaGeneratorTest
Tests run: 31, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.512 sec
Running org.apache.axis2.description.java2wsdl.DefaultSchemaGeneratorTest
Tests run: 31, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.697 sec
Running org.apache.axis2.description.java2wsdl.TypeTableTest
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
Running org.apache.axis2.description.HttpMessagesSerializationTest
Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.038 sec
Running org.apache.axis2.description.WSDL11ToAxisServiceBuilderTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running org.apache.axis2.description.AxisServiceTest
Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.104 sec
Running org.apache.axis2.description.AxisMessageTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running org.apache.axis2.description.AxisService2WSDLTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.051 sec
Running org.apache.axis2.misc.MiscTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 sec
Running org.apache.axis2.deployment.HierarchicalServiceTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 sec
Running org.apache.axis2.deployment.AddingObserverTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 sec
Running org.apache.axis2.deployment.BuildERWithDeploymentTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 sec
Running org.apache.axis2.deployment.DeploymentTotalTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.034 sec
Running org.apache.axis2.deployment.SOAPRoleConfigurationTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 sec
Running org.apache.axis2.deployment.SystemPhasesremovedTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running 

Build failed in Jenkins: Axis2-trunk-java-1.6 #1636

2013-06-02 Thread Apache Jenkins Server
See https://builds.apache.org/job/Axis2-trunk-java-1.6/1636/

--
[...truncated 1647 lines...]
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.093 sec
Running org.apache.axis2.saaj.SOAPPartTest
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.025 sec
Running org.apache.axis2.saaj.SOAPFactoryTest
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 sec
Running org.apache.axis2.saaj.MessageFactoryTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.039 sec
Running org.apache.axis2.saaj.SOAPConnectionTest
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.592 sec
Running org.apache.axis2.saaj.integration.IntegrationTest
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.781 sec
Running org.apache.axis2.saaj.AttachmentTest
Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.395 sec
Running org.apache.axis2.saaj.SOAPHeaderTest
Tests run: 11, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033 sec
Running org.apache.axis2.saaj.SOAPFaultTest
Tests run: 24, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.092 sec
Running org.apache.axis2.saaj.NodeTest
Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.008 sec
Running org.apache.axis2.saaj.AttachmentSerializationTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 sec
Running org.apache.axis2.saaj.TextTest
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
Running org.apache.axis2.saaj.SOAPBodyTest
Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 sec
Running org.apache.axis2.saaj.SOAPFaultDetailTest
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec

Results :

Tests run: 153, Failures: 0, Errors: 0, Skipped: 0

[JENKINS] Recording test results
[INFO] [INFO] Building jar: 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/saaj/target/axis2-saaj-1.7.0-SNAPSHOT.jar

[INFO] --- maven-jar-plugin:2.2:jar (default-jar) @ axis2-saaj ---
[INFO] [INFO] Installing 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/saaj/target/axis2-saaj-1.7.0-SNAPSHOT.jar
 to 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/.repository/org/apache/axis2/axis2-saaj/1.7.0-SNAPSHOT/axis2-saaj-1.7.0-SNAPSHOT.jar

[INFO] --- maven-install-plugin:2.2:install (default-install) @ axis2-saaj ---
[INFO] Installing 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/saaj/pom.xml
 to 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/.repository/org/apache/axis2/axis2-saaj/1.7.0-SNAPSHOT/axis2-saaj-1.7.0-SNAPSHOT.pom
[INFO] 
[INFO] 
[INFO] Building Apache Axis2 - Metadata 1.7.0-SNAPSHOT
[INFO] 
[INFO] [INFO] Deleting directory 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/metadata/target

[INFO] --- maven-clean-plugin:2.2:clean (default-clean) @ axis2-metadata ---
[INFO] 
[INFO] --- maven-enforcer-plugin:1.1:enforce (default) @ axis2-metadata ---
[INFO] 
[INFO] --- maven-remote-resources-plugin:1.1:process (default) @ axis2-metadata 
---
[INFO] [INFO] Configured Artifact: 
org.apache.geronimo.specs:geronimo-jaxws_2.2_spec:?:jar
[INFO] Copying geronimo-jaxws_2.2_spec-1.0.jar to 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/metadata/target/endorsed/geronimo-jaxws_2.2_spec.jar

[INFO] --- maven-dependency-plugin:2.0:copy (default) @ axis2-metadata ---
[INFO] [INFO] Using 'UTF-8' encoding to copy filtered resources.

[INFO] --- maven-resources-plugin:2.4.2:resources (default-resources) @ 
axis2-metadata ---
[INFO] Copying 1 resource
[INFO] Copying 2 resources
[INFO] [INFO] Compiling 190 source files to 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/metadata/target/classes

[INFO] --- maven-compiler-plugin:2.3.1:compile (default-compile) @ 
axis2-metadata ---
[INFO] Executing tasks
[INFO] [mkdir] Created dir: 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/metadata/target/schema
[mkdir] Created dir: 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/metadata/target/schema/src
[mkdir] Created dir: 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/metadata/target/schema/classes
 [echo] Generating JAX-B classes from XSDs
 [echo] Generating java from ProxyDocLitWrapped.wsdl

[INFO] --- maven-antrun-plugin:1.2:run (gen-ts) @ axis2-metadata ---
[INFO] Executed tasks
[INFO] Adding addressing-1.7.0-SNAPSHOT.mar
[INFO] [INFO] Copying axis2.xml

[INFO] --- axis2-repo-maven-plugin:1.7.0-SNAPSHOT:create-test-repository 
(default) @ axis2-metadata ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing 

[jira] [Updated] (AXIS2-5578) Transport level information does not match with SOAP Message namespace URI

2013-06-02 Thread srinivasa (JIRA)

 [ 
https://issues.apache.org/jira/browse/AXIS2-5578?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

srinivasa updated AXIS2-5578:
-

Attachment: src.zip


Andreas Veithen,

I had added the soap action in the content type and Soap version URI in the 
client code.

stub._getServiceClient().getOptions().setProperty(Content-Type,application/soap+xml;charset=UTF-8;action=https://www.roadtothechampionship.com/autologin/StartSession;);
stub._getServiceClient().getOptions().setSoapVersionURI(org.apache.axiom.soap.SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI);

Can you please provide some details to solve the issue. PFA the client code. 
Thanks in advance.


Best Regards,
Srini





 Transport level information does not match with SOAP Message namespace URI
 --

 Key: AXIS2-5578
 URL: https://issues.apache.org/jira/browse/AXIS2-5578
 Project: Axis2
  Issue Type: Bug
  Components: client-api
Affects Versions: 1.2
 Environment: Windows
Reporter: srinivasa
Priority: Blocker
  Labels: patch
 Attachments: src.zip

   Original Estimate: 24h
  Remaining Estimate: 24h

 Hello,
 I'm getting the org.apache.axiom.soap.SOAPProcessingException: Transport 
 level information does not match with SOAP Message namespace URI.
 It was mentioned some fix made in the 
 https://issues.apache.org/jira/browse/AXIS2-2129
 Can you please provide more details, how to fix the issue?
 Thanks
 Srinivas

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5576) Missing build.xml in Axis2-1.6.2 Source Distribution

2013-06-02 Thread Shameera Rathnayaka (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5576?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13672645#comment-13672645
 ] 

Shameera Rathnayaka commented on AXIS2-5576:


Hi Lewis , 

Thanks for you contribution. Applied patch in r1488761. As your patch had 
removed only the content of build.xml I deleted build.xml in r1488765.

Cheers,
Shameera.



 Missing build.xml in Axis2-1.6.2 Source Distribution
 

 Key: AXIS2-5576
 URL: https://issues.apache.org/jira/browse/AXIS2-5576
 Project: Axis2
  Issue Type: Bug
  Components: documentation
Affects Versions: 1.6.2
Reporter: Lewis John McGibbney
 Fix For: 1.7.0

 Attachments: AVIS2-5576.v2.patch, AXIS2-5576.patch


 As mentioned here [0], I noticed that the Maven seesmbly descriptor does not 
 include build.xml within the generated Source Distributions.
 The patch aims to include it (however someone will need to verify) and also 
 includes some better documentation within README.txt 
 [0] http://www.mail-archive.com/java-dev%40axis.apache.org/msg13085.html

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5576) Missing build.xml in Axis2-1.6.2 Source Distribution

2013-06-02 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5576?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13672666#comment-13672666
 ] 

Hudson commented on AXIS2-5576:
---

Integrated in Axis2 #2315 (See [https://builds.apache.org/job/Axis2/2315/])
removing build.xml file , AXIS2-5576 patch has removed only the content of 
build.xml (Revision 1488765)
Applying patch for AXIS2-5576 (Revision 1488761)

 Result = SUCCESS
shameera : 
Files : 
* /axis/axis2/java/core/trunk/build.xml

shameera : 
Files : 
* /axis/axis2/java/core/trunk/README.txt
* /axis/axis2/java/core/trunk/build.xml


 Missing build.xml in Axis2-1.6.2 Source Distribution
 

 Key: AXIS2-5576
 URL: https://issues.apache.org/jira/browse/AXIS2-5576
 Project: Axis2
  Issue Type: Bug
  Components: documentation
Affects Versions: 1.6.2
Reporter: Lewis John McGibbney
 Fix For: 1.7.0

 Attachments: AVIS2-5576.v2.patch, AXIS2-5576.patch


 As mentioned here [0], I noticed that the Maven seesmbly descriptor does not 
 include build.xml within the generated Source Distributions.
 The patch aims to include it (however someone will need to verify) and also 
 includes some better documentation within README.txt 
 [0] http://www.mail-archive.com/java-dev%40axis.apache.org/msg13085.html

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



Jenkins build is back to normal : Axis2 #2315

2013-06-02 Thread Apache Jenkins Server
See https://builds.apache.org/job/Axis2/2315/changes


-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



Build failed in Jenkins: Axis2 #2316

2013-06-02 Thread Apache Jenkins Server
See https://builds.apache.org/job/Axis2/2316/

--
[...truncated 4915 lines...]
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/management//NodeManagementCommandFactory.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/overview-frame.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering//package-frame.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering//package-summary.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering//package-tree.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/control//package-frame.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/control//package-summary.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/control//package-tree.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/control/wka//package-frame.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/control/wka//package-summary.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/control/wka//package-tree.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/management//package-frame.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/management//package-summary.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/management//package-tree.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/management/commands//package-frame.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/management/commands//package-summary.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/management/commands//package-tree.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/state//package-frame.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/state//package-summary.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/state//package-tree.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/state/commands//package-frame.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/state/commands//package-summary.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/state/commands//package-tree.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/tribes//package-frame.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/tribes//package-summary.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/tribes//package-tree.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/constant-values.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/serialized-form.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/tribes/class-use//MembershipManager.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/tribes/class-use//RpcInitializationRequestHandler.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/tribes/class-use//Axis2Coordinator.html...
Generating 
https://builds.apache.org/job/Axis2/ws/axis2/modules/clustering/target/apidocs/org/apache/axis2/clustering/tribes/class-use//TribesConstants.html...
Generating 

Build failed in Jenkins: Axis2-trunk-java-1.6 #1637

2013-06-02 Thread Apache Jenkins Server
See https://builds.apache.org/job/Axis2-trunk-java-1.6/1637/changes

Changes:

[shameera] Added me(shameera) as a developer to project pom.xml

[shameera] removing build.xml file , AXIS2-5576 patch has removed only the 
content of build.xml

[shameera] Applying patch for AXIS2-5576

--
[...truncated 2147 lines...]
[INFO] Copying 1 resource
[INFO] Copying 2 resources

[INFO] --- maven-resources-plugin:2.4.2:resources (default-resources) @ 
axis2-xmlbeans ---
[INFO] [INFO] Compiling 3 source files to 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/xmlbeans/target/classes

[INFO] --- maven-compiler-plugin:2.3.1:compile (default-compile) @ 
axis2-xmlbeans ---
[INFO] Executing tasks
[INFO] [INFO] Executed tasks

[INFO] --- maven-antrun-plugin:1.2:run (gen-cp) @ axis2-xmlbeans ---
[INFO] [INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 23 resources to ../test-resources

[INFO] --- maven-resources-plugin:2.4.2:testResources (default-testResources) @ 
axis2-xmlbeans ---
[INFO] Copying 2 resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.3.1:testCompile (default-testCompile) @ 
axis2-xmlbeans ---
[INFO] Compiling 16 source files to 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/xmlbeans/target/test-classes
[INFO] [INFO] Surefire report directory: 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/xmlbeans/target/surefire-reports

---
 T E S T S
---

[INFO] --- maven-surefire-plugin:2.13:test (default-test) @ axis2-xmlbeans ---
Running org.apache.axis2.xmlbeans.WSDL2Java8Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.331 sec
Running org.apache.axis2.xmlbeans.WSDL2Java12Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.53 sec
Running org.apache.axis2.xmlbeans.WSDL2Java2Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 sec
Running org.apache.axis2.xmlbeans.WSDL2Java1Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.358 sec
Running org.apache.axis2.xmlbeans.WSDL2Java6Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.453 sec
Running org.apache.axis2.xmlbeans.WSDL2Java4Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.06 sec
Running org.apache.axis2.xmlbeans.WSDL2Java13Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
Running org.apache.axis2.xmlbeans.WSDL2Java9Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.787 sec
Running org.apache.axis2.xmlbeans.WSDL2Java10Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.823 sec
Running org.apache.axis2.xmlbeans.WSDL2Java3Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.686 sec
Running org.apache.axis2.xmlbeans.WSDL2Java11Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.621 sec
Running org.apache.axis2.xmlbeans.WSDL2Java7Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.729 sec
Running org.apache.axis2.xmlbeans.WSDL2Java5Test
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.991 sec

Results :

Tests run: 13, Failures: 0, Errors: 0, Skipped: 0

[JENKINS] Recording test results
[INFO] [INFO] Building jar: 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/xmlbeans/target/axis2-xmlbeans-1.7.0-SNAPSHOT.jar

[INFO] --- maven-jar-plugin:2.2:jar (default-jar) @ axis2-xmlbeans ---
[INFO] [INFO] Installing 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/xmlbeans/target/axis2-xmlbeans-1.7.0-SNAPSHOT.jar
 to 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/.repository/org/apache/axis2/axis2-xmlbeans/1.7.0-SNAPSHOT/axis2-xmlbeans-1.7.0-SNAPSHOT.jar
[INFO] Installing 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/xmlbeans/pom.xml
 to 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/.repository/org/apache/axis2/axis2-xmlbeans/1.7.0-SNAPSHOT/axis2-xmlbeans-1.7.0-SNAPSHOT.pom

[INFO] --- maven-install-plugin:2.2:install (default-install) @ axis2-xmlbeans 
---
[INFO] [INFO] Deleting directory 
https://builds.apache.org/job/Axis2-trunk-java-1.6/ws/axis2/modules/tool/axis2-wsdl2code-maven-plugin/target

[INFO] 
[INFO] Building Apache Axis2 - tool - WSDL2Code Maven Plugin 1.7.0-SNAPSHOT
[INFO] 
[INFO] 
[INFO] --- maven-clean-plugin:2.2:clean (default-clean) @ 
axis2-wsdl2code-maven-plugin ---
[INFO] Deleting file-set: src/test/test1/target (included: [], excluded: [])
[INFO] 
[INFO] --- maven-enforcer-plugin:1.1:enforce (default) @ 
axis2-wsdl2code-maven-plugin ---
[INFO] [WARNING] 

Goal prefix is specified 

Jenkins build is back to normal : Axis2 #2317

2013-06-02 Thread Apache Jenkins Server
See https://builds.apache.org/job/Axis2/2317/


-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



Jenkins build is back to normal : Axis2-trunk-java-1.6 #1638

2013-06-02 Thread Apache Jenkins Server
See https://builds.apache.org/job/Axis2-trunk-java-1.6/1638/


-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5578) Transport level information does not match with SOAP Message namespace URI

2013-06-02 Thread srinivasa (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13672773#comment-13672773
 ] 

srinivasa commented on AXIS2-5578:
--


Andreas Veithen,
Kindly check and help to solve the issue.


Best Regards,
Srini

 



 Transport level information does not match with SOAP Message namespace URI
 --

 Key: AXIS2-5578
 URL: https://issues.apache.org/jira/browse/AXIS2-5578
 Project: Axis2
  Issue Type: Bug
  Components: client-api
Affects Versions: 1.2
 Environment: Windows
Reporter: srinivasa
Priority: Blocker
  Labels: patch
 Attachments: src.zip

   Original Estimate: 24h
  Remaining Estimate: 24h

 Hello,
 I'm getting the org.apache.axiom.soap.SOAPProcessingException: Transport 
 level information does not match with SOAP Message namespace URI.
 It was mentioned some fix made in the 
 https://issues.apache.org/jira/browse/AXIS2-2129
 Can you please provide more details, how to fix the issue?
 Thanks
 Srinivas

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5578) Transport level information does not match with SOAP Message namespace URI

2013-06-02 Thread Andreas Veithen (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13672821#comment-13672821
 ] 

Andreas Veithen commented on AXIS2-5578:


Kindly explain why you believe that the issue is cause by a bug in Axis2.

 Transport level information does not match with SOAP Message namespace URI
 --

 Key: AXIS2-5578
 URL: https://issues.apache.org/jira/browse/AXIS2-5578
 Project: Axis2
  Issue Type: Bug
  Components: client-api
Affects Versions: 1.2
 Environment: Windows
Reporter: srinivasa
Priority: Blocker
  Labels: patch
 Attachments: src.zip

   Original Estimate: 24h
  Remaining Estimate: 24h

 Hello,
 I'm getting the org.apache.axiom.soap.SOAPProcessingException: Transport 
 level information does not match with SOAP Message namespace URI.
 It was mentioned some fix made in the 
 https://issues.apache.org/jira/browse/AXIS2-2129
 Can you please provide more details, how to fix the issue?
 Thanks
 Srinivas

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org



[jira] [Commented] (AXIS2-5578) Transport level information does not match with SOAP Message namespace URI

2013-06-02 Thread srinivasa (JIRA)

[ 
https://issues.apache.org/jira/browse/AXIS2-5578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13672824#comment-13672824
 ] 

srinivasa commented on AXIS2-5578:
--

Andreas Veithen,

I'm not sure is there any issue in the client code. Kindly help to solve the 
issue.


Best Regards,
Srini



 Transport level information does not match with SOAP Message namespace URI
 --

 Key: AXIS2-5578
 URL: https://issues.apache.org/jira/browse/AXIS2-5578
 Project: Axis2
  Issue Type: Bug
  Components: client-api
Affects Versions: 1.2
 Environment: Windows
Reporter: srinivasa
Priority: Blocker
  Labels: patch
 Attachments: src.zip

   Original Estimate: 24h
  Remaining Estimate: 24h

 Hello,
 I'm getting the org.apache.axiom.soap.SOAPProcessingException: Transport 
 level information does not match with SOAP Message namespace URI.
 It was mentioned some fix made in the 
 https://issues.apache.org/jira/browse/AXIS2-2129
 Can you please provide more details, how to fix the issue?
 Thanks
 Srinivas

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org