RE: Use proper prefixes on the dev discussions

2011-02-01 Thread Martin Gainty
..a convention which reduces obfuscation and improves communication helps the contributors as well as the implementor community of axis.. +1 Martin Date: Tue, 1 Feb 2011 19:42:32 +0530 Subject: Re: Use proper prefixes on the dev discussions From: ruwan.lin...@gmail.com To: java-dev@axis.a

RE: [AXIS2] : Null Pointer Exception in Stub

2011-02-02 Thread Martin Gainty
RL, "http://myProxy.org";); * This will send your SOAP message to "http://myProxy.org";, but if WS-Addressing is enabled, wsa:To will contain "http://destination.org"; as To address. * populate options.setTo and options.setPr

RE: [Axis2] Soap session Management, Book Example

2011-02-21 Thread Martin Gainty
can you show all of the java files wsdl META-INF\services.xml META-INF\module.xml any applicable build.xml or pom.xml you are implementing for building the app thanks, Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und

RE: axis2-wsdl2code-maven-plugin

2011-02-22 Thread Martin Gainty
...@maven.apache.org Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Ez az üzenet bizalmas. Ha nem ön az akinek szánva volt, akkor kérjük, hogy jelentse azt nekünk vissza

RE: .net and axis2/rampart

2011-02-23 Thread Martin Gainty
break interoperability with expected WS-addressing compliant structures from this perspective the fault is WCF does not adhere to the ws-addressing spec what does Microsoft say? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidenti

RE: [Axis2] Asynchronous Invocation of OperationClient

2011-02-24 Thread Martin Gainty
1)construct a payload element which will contain the soap message you want to send to the awaiting Axis service supply the 2nd parameter to 2)call opClient.sendReceiveNonBlocking(ANON_OUT_IN_OP,parentElementToSend,callback); /** * here is the sendReceiveNonBlocking method * * Dire

RE: Axis2 - Issue with RPCServiceClient - default namespace

2011-02-24 Thread Martin Gainty
ToSend = fac.createOMElement(DRConstants.SPEC.GET_METADATA, omNs); opClient.sendReceiveNonBlocking(ANON_OUT_IN_OP,parentElementToSend,callback); while(true){ Thread.sleep(100); } Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und V

RE: Axis2 - Issue with RPCServiceClient - default namespace

2011-02-24 Thread Martin Gainty
ToSend = fac.createOMElement(DRConstants.SPEC.GET_METADATA, omNs); opClient.sendReceiveNonBlocking(ANON_OUT_IN_OP,parentElementToSend,callback); while(true){ Thread.sleep(100); } Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und V

RE: [Axis2] Asynchronous Invocation of OperationClient

2011-02-24 Thread Martin Gainty
1)construct a payload element which will contain the soap message you want to send to the awaiting Axis service supply the 2nd parameter to 2)call opClient.sendReceiveNonBlocking(ANON_OUT_IN_OP,parentElementToSend,callback); /** * here is the sendReceiveNonBlocking method * * Dire

RE: Can the Apache Axis2 work without the Bouncy Castle Provider?

2011-03-01 Thread Martin Gainty
to test the capabilities of the provider is available at: http://www.rsa.com/products/bsafe/documentation/cryptoj35html/doc/dev_guide/group__CJ__SAMPLES__RSANOPAD__JCE.html does this answer your question? Martin Gainty __ Verzicht und

RE: axis2/java service client set operation

2011-03-02 Thread Martin Gainty
QName method = new QName("someuri", "add"); //set the operation name to the constructed Qualified Name call.setOperationName(method); cheers, Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichke

RE: Looking for help

2011-03-03 Thread Martin Gainty
winzip or 7zip and extract out META-INF/module.xml from the .mar) Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Ez az üzenet bizalmas. Ha nem ön az akinek szánva volt,

RE: axis2/java service client set operation

2011-03-03 Thread Martin Gainty
http://schemas.xmlsoap.org/soap/http"/> http://localhost:8080/EchoMessageService/Ech

RE: .net and axis2/rampart

2011-03-07 Thread Martin Gainty
great news to expand the customer base of Axis services for .NET clients let us know when the patch is ready with testcases Thanks Abid! Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist

RE: [Axis2] AXIS2-4170 status quest

2011-03-10 Thread Martin Gainty
schemas Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung

RE: SHA2 support

2011-03-11 Thread Martin Gainty
the currently supported (Rampart) Digest Algorithms are: contents of org.apache.ws.secpolicy.SPConstants: public final static String SHA1 = "http://www.w3.org/2000/09/xmldsig#sha1";; public final static String SHA256 = "http://www.w3.org/2001/04/xmlenc#sha256";; public final static

RE: Build failed in Jenkins: Axis2 » Apache Axis2 - Clustering #674

2011-03-12 Thread Martin Gainty
class version mismatch means you have an older version of tomcat-tribes-7.0.8 in your repository rebuild org.apache.tomcat:tomcat-tribes:7.0.8 module install and deploy to /home/hudson/hudson-slave/workspace/Axis2/.repository/hth Martin- ___ Verzicht und Vertraulichkeitanmerkung

RE: [jira] Created: (AXIS2-4978) Copying data from inputStream to OuputStream needs appropriate buffer size

2011-03-12 Thread Martin Gainty
if there is no Constants.java in the plugin you can add an entry in org.apache.axis2.databinding.Constants.java //add the constant BASE_BUFFER_SIZE public static final int BASE_BUFFER_SIZE=10240; (good call btw) Martin __ Verzicht und Vertra

RE: Call web services without making stub files.

2011-03-12 Thread Martin Gainty
gageModule(Constants.MODULE_ADDRESSING); sender.setOptions(options); OMElement result = sender.sendReceive(getPayload()); } is this what you're looking for? Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/

RE: SOAP monitor module in AXIS2

2011-03-18 Thread Martin Gainty
jar -xvf axis2-soapmonitor-servlet-1.5.4-sources.jar ./src/main/java --create folders for compiled classes mkdir target cd target mkdir classes cd .. test>mvn -e -X compile test>mvn -e -X package ls -al ./target and you should see the maven axis2-soapmonitor-servlet-1.5.4.jar Martin

RE: An idea about apache axis2

2011-03-19 Thread Martin Gainty
this is a great idea for expanding the user base of axis2 by making axis2 more 'user-friendly' to implement and test 1)do you have links for microsoft IIS web-service tester we can look at?? 2)which complex datatypes does WS02 server need to support?? many thanks for the suggestion, Martin ___

RE: Groovy and Jython custom deployer

2011-04-18 Thread Martin Gainty
the problem with these Scripting libraries generally dont play well in normal Ant and Maven deployer environments which is how 99% of the axis mars and aars are being deployed in production environments. in short you'll need to support 3 distinct deployment implementations: In Axi

RE: Groovy and Jython custom deployer

2011-04-18 Thread Martin Gainty
the problem with these Scripting libraries generally map to proper java classes from normal Ant and Maven deployer environments which is how 99% of the axis mars and aars are being deployed in production environments. in short you'll need to support 3 distinct deployment implementations:

RE: Groovy and Jython custom deployer

2011-04-18 Thread Martin Gainty
the problem with these Scripting libraries generally map to proper java classes from normal Ant and Maven deployer environments which is how 99% of the axis mars and aars are being deployed in production environments. in short you'll need to support 3 distinct deployment implementations:

RE: Groovy and Jython custom deployer

2011-04-18 Thread Martin Gainty
the problem with these Scripting libraries generally map to proper java classes from normal Ant and Maven deployer environments which is how 99% of the axis mars and aars are being deployed in production environments. in short you'll need to support 3 distinct deployment implementations:

RE: Groovy and Jython custom deployer

2011-04-18 Thread Martin Gainty
the problem with these Scripting libraries generally map to proper java classes from normal Ant and Maven deployer environments which is how 99% of the axis mars and aars are being deployed in production environments. in short you'll need to support 3 distinct deployment implementations:

RE: [jira] [Created] (AXIS2-5054) I'm receiving an inconsistent error in Axis 2. My Web service call is working for of my transaction how ever for some I receive the following error: org.apache.axis2.

2011-05-23 Thread Martin Gainty
from my experience prolog errors happen when there is non-printable character on line 1 column 1 e.g. here is a axis2.xml with a space at beginning if i delete the unprintable space at char 1 Wstx wont produce WstxEofException Martin Gainty

RE: rampart security header in fault messages

2011-06-04 Thread Martin Gainty
in axis2.xml check your declared phases e.g. Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraul

RE: Improvements to Axis2 Transports

2011-06-19 Thread Martin Gainty
transportReceiver configuration declarator aggregates 1..n transport.properties +1 Martin-- > From: andreas.veit...@gmail.com > Date: Sun, 19 Jun 2011 17:53:51 +0200 > Subject: Re: Improvements to Axis2 Transports > To: java-dev@axis.apache.org > > +1 from me. I already suggested doing this

RE: Saaj version compatibility question

2011-07-21 Thread Martin Gainty
ligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichke

RE: Trouble interfacing with WCF

2011-07-22 Thread Martin Gainty
Hi Jay- The Axis solution is to configure public and private keystores..create a cert with public key and engage Rampart (Security) Module to Axis http://wso2.org/library/3190 Let me know if you need any guidance..i've done this about a hundred times Martin G

RE: Trouble interfacing with WCF

2011-07-27 Thread Martin Gainty
put the names of all the referenced modules into /WEB-INF/modules/modules.list here is mine for reference soapmonitor-1.5.mar ping-1.5.mar mex-1.5.mar axis2-scripting-1.5.mar rampart-trust-SNAPSHOT.mar rampart-policy.mar hth, Martin Gainty

RE: Having trouble interfacing with WCF

2011-08-04 Thread Martin Gainty
part/ and build the rampart.mar for policy,trust and rampart-VERSION you're going to need to place rampart-policy-.mar rampart-trust-.mar rampart-.mar in WEB-INF\modules folder generally 1.5.1 was the last blessed Rampart version..i havent tried 1.6 Martin Gainty _

RE: Having trouble interfacing with WCF

2011-08-04 Thread Martin Gainty
in policy.xml set your stsAlias element in RampartConfig parent e.g: http://ws.apache.org/rampart/policy";> sts Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist ver

RE: Having trouble interfacing with WCF

2011-08-05 Thread Martin Gainty
wnload samples run the sample which demonstrates UsernameToken Authentication The policy uses a TransportBinding and requires a SignedSupportingToken which is a UsernameToken and the inclusion of a TimeStamp. cd sample/policy $ant service.01 $ant client.01 ping back if yo

RE: unsuscribe

2010-03-01 Thread Martin Gainty
try "unsubscribe" instead of unsuscribe Molte Grazie, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so

RE: import header migration from Apache SOAP to Axis2

2010-03-05 Thread Martin Gainty
axis2 document-literal style has progressed far beyond single RPC method with single parameter roots if RPC *is a requirement* you may want to consider fallback to Axis 1.4 for RPC capability any reason why your requirement would prefer RPC over doc-literal type? Martin Gainty

RE: import header migration from Apache SOAP to Axis2

2010-03-05 Thread Martin Gainty
currently 2300 Zulu+5 here tommorrow is saturday a day i can devote to leisure activities such as Axis Development i'll take a look tommorow am.. look for a response by sun pm at the latest Martin Gainty __ Verzich

RE: import header migration from Apache SOAP to Axis2

2010-03-08 Thread Martin Gainty
t;; Object ret=call.invoke(new Object[]{new SOAPBodyElement(new ByteArrayInputStream(firstName.toString().getBytes("UTF-8"))) } ); //check the ret object coming back for a valid return does this answer your question? many apologies for (weekend delay) Martin Gainty _

RE: Preserving CDATA sections when using AXIOM

2010-03-13 Thread Martin Gainty
Andreas is correct I am writing CDATA text with a Program which manipulates up to 1000 different AXIOM elements are you discovering any specific issues with setText? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de

RE: Need help generating code from a WSDL

2010-03-22 Thread Martin Gainty
l (and accompanying xsd's) we will be able to diagnose this anomaly for you.. Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenge

RE: Axis2-Spring integration

2010-04-02 Thread Martin Gainty
etConfig any ideas to supply this transport.http.servletConfig parameter are/will be greatly appreciated. Thanks, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgeseh

RE: WSDL 2.0 for mobiles

2010-04-02 Thread Martin Gainty
demetris- i'm running woden-dom-1.0M8 under JVM 1.6.0_16 and have not experienced any anomalies (thus far) what types of issues are you running into? thanks, Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni

RE: Questions on TCP Transport

2010-05-20 Thread Martin Gainty
can you file JIRA with WSDL and axis2.xml to replicate problem? https://issues.apache.org/jira/browse/AXIS2 thank you Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich

RE: Error While Invoking Service Over UDP

2010-05-23 Thread Martin Gainty
if instance declaration is xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; then the declaration for xsi:type="ax21:GetQuoteResponse" which assumes your type must be a qname (does this definition exist?) Here is example http://www.ibm.com/developerworks/webservices/library/ws-soapmap

RE: Split packages issue (AXIS2-4311)

2010-05-27 Thread Martin Gainty
ctored in!) e.g. Axis2-1.6 Re:split packages: maven shaded-plugin can handle most 'split package' issues or is there another *unknown* interaction at play? McGuire: what gating issues are you seeing with current build of Axis ? Martin Gainty ___

RE: Improving Axis2/Rampart performance.

2010-06-24 Thread Martin Gainty
Date: Thu, 24 Jun 2010 16:24:48 +0530 Subject: Improving Axis2/Rampart performance. From: kasu...@gmail.com To: java-dev@axis.apache.org Hi, We had gone through the article from Dennis Sosnoski, about "Java Web services: CXF performance comparison" with respect to Axis2 and Metro (Link:

RE: Question on EJB receiver code and WebLogic

2010-06-24 Thread Martin Gainty
owse/AXIS2 This is an important discovery for those of us who desire to ensure Axis2 code is fully operational for all webapp containers Thanks William! Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidential

RE: Build failure in Axis2 trunk

2010-06-29 Thread Martin Gainty
Herr Fendt- informieren Sie uns, wenn das Problem auf Ihrem Arbeitscomputer reproduziert werden kann…. zwischenzeitlich prüfe ich, um zu sehen, wenn ich Problem hier reproduzieren kann gruss Martin __ Verzicht und Vertraulichkeitanmerkung

RE: Build failure in Axis2 trunk

2010-06-29 Thread Martin Gainty
the pull from https://svn.apache.org/repos/asf/axis/axis2/java/core/branches/java/1_5 references axiom.version of 1.2.9-SNAPSHOT in \modules\parent\pom.xml 1.2.9-SNAPSHOT FYI: 1.2.10 axiom has NOT been pushed to the mirrors http://svn.apache.org/repos/asf/webservices/commons/tags/axiom

RE: Axis2/Java : How to change the URL to access webserivces ?

2010-07-31 Thread Martin Gainty
service please direct posts on Axis implementation to axis-u...@ws.apache.org Viel Gluck Martin __ Verzicht und Vertraulichkeitanmerkung Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoefl

RE: zones being moved to jails very soon

2010-08-15 Thread Martin Gainty
yes that will severely impact all the work that has been accomplished thus far 1)this could've easily accomplished this with shaded plugin..thus the preserving the intergrity of the original groupId and shading the old package to the new package 2)while we're on the subject of broken builds I ha

RE: Request of Linking with a codeFest

2010-09-22 Thread Martin Gainty
GMT+6 hours (5 hour difference from Brussels) http://www.sjp.ac.lk/index.html Bedankt, Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger

Axis Dead Link Alert

2010-10-23 Thread Martin Gainty
thanks for the catch neil -M > Date: Sat, 23 Oct 2010 08:49:04 -0400 > Subject: Re: Dead Link Alert > From: bimargul...@gmail.com > To: d...@ws.apache.org > > Neil, > > Axis is it's own PMC, and it is up to them to populate a web site. > Please send a message to gene...@axis.apache.org. > >

RE: AUTO: Hyen V Chung is out of the office

2010-11-24 Thread Martin Gainty
this guy gets paid to NOT show up for work? I want his job! Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflic

RE: WSDL Endpoint.

2010-11-29 Thread Martin Gainty
Receiver configuration in ./WEB-INF/conf/axis2.xml 80 Sender configuration in ./WEB-INF/conf/axis2.xml 80 does this help? Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de déni et de

RE: WebService versioning with maven aar plugin

2012-01-02 Thread Martin Gainty
did you take a look at implementing maven-assembly-plugin org.apache.maven.plugins maven-assembly-plugin finalname-${project.version} http://maven.apache.org/plugins/maven-assembly-plugin/assembly-mojo.html http://stackoverflow.com/questions/1326527/maven-ass

RE: WebService versioning with maven aar plugin

2012-01-04 Thread Martin Gainty
with maven aar plugin From: pymotr...@gmail.com To: java-dev@axis.apache.org No, I prefer to keep axis2-aar-maven-plugin. Regards 2012/1/2 Martin Gainty did you take a look at implementing maven-assembly-plugin org.apache.maven.plugins maven-assembly-plugin

RE: No user value in rampart configuration policy

2012-06-05 Thread Martin Gainty
( (String) getProperty(reqData.getMsgContext(), WSHandlerConstants.USER)); http://oss.org.cn/ossdocs/apache/axis2-1.0-docs/xdocs/modules/wss4j/1_0/security-module.html Takk, Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und

RE: [jira] [Commented] (AXIS2-5338) Axis Web service application unable to open more then 50 Concurrent Connections when tested from load runner.

2012-06-06 Thread Martin Gainty
config.xml: 100 Date: Wed, 6 Jun 2012 12:33:23 + > From: j...@apache.org > To: java-dev@axis.apache.org > Subject: [jira] [Commented] (AXIS2-5338) Axis Web service application unable > to open more then 50 Concurrent Connections when tested from load runner. > > > [ > https://issues.a

RE: How to send attachments via local transport?

2012-06-08 Thread Martin Gainty
opClient.getMessageContext("In"); //get the response envelope org.apache.axiom.soap.SOAPEnvelope env = response.getEnvelope(); assertNotNull(env); // The element in the body should be an OMSourcedElement org.apache.axiom.om.OMElement

RE: AXIS2 WSP support

2012-06-17 Thread Martin Gainty
what are the PROTOCOL parameters set to in axis2.xml for transportSender and transportReceiver HTTP/1.1 what is the class declaration for transportReceiver e.g. ? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de

RE: About Kerberos support in 1.6.2

2012-08-08 Thread Martin Gainty
you can as long as you set JAAS properties to use kerberos e.g. System.setProperty( "sun.security.krb5.debug", "true"); System.setProperty( "java.security.krb5.realm", "EXAMPLE.COM"); System.setProperty( "java.security.krb5.kdc", "localhost"); System.setProperty( "java.security.auth.login.config"

RE: SSL vulnerability in Apache Axis2

2012-08-08 Thread Martin Gainty
mmons-httpclient? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterle

RE: Build failed in Jenkins: axis2-transports-trunk #970

2012-08-09 Thread Martin Gainty
source repositories appear down http://svn.apache.org/repos/asf/webservices/commons/trunk/modules/transportMartin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorge

RE: [GSoC 2012] XML to JSON convention using XMLStreamWriter API and Schemas with google-gson

2012-08-11 Thread Martin Gainty
It seems we lose alot of meta data by casting off the SOAP 1.1 superstructure a partial list of what we lose would include: ability to configure to differing styles (JIBX-RI vs ADB vs XMLBeans) ability to adhere to different protocols (SMTP and or FTP and or HTTP 1.1) Ability to incorporate diffe

RE: About setting up rampart with eclipse

2012-08-12 Thread Martin Gainty
It means either your Rampart or Rahas modules (*.MAR) are incorrectly structured can you check the META-INF/module.xml of the rampart-module.mar you are incorporating mine looks like: This module provides the WS-Security and WS-SecureConversation functionalities for Axis2, based on Ap

RE: [jira] [Created] (AXIS2-5391) AxisService2WSDL20 fails to return the WSDL 2.0 styles when the schema has a ComplexElement with XmlSchemaAny

2012-08-16 Thread Martin Gainty
package org.apache.axis2.description public class AxisService2WSDL20 implements WSDL2Constants . private URI [] checkStyle(AxisOperation axisOperation) throws URISyntaxException, AxisFault { Object next = iterator.next();

RE: [axis2] Mix up Axis2 & Axis1 jars in web application (java.lang.InstantiationError occured) ?

2012-08-21 Thread Martin Gainty
from Axis2) so I would recommend implementing Module and or Multiple policy(ies) Martin Gainty __ Note de déni et de confidentialité Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons

RE: How are SAML tokens validated?

2012-09-11 Thread Martin Gainty
/trust";>http://docs.oasis-open.org/wss/oasis-wss-saml-token-profile-1.1#SAMLV1.1 http://schemas.xmlsoap.org/ws/2005/02/trust";>http://docs.oasis-open.org/wss/oasis-wss-saml-token-profile-1.1#SAMLV2.0 Martin Gainty

RE: No headers in response

2012-09-27 Thread Martin Gainty
www.from.org/service/ http://www.replyTo.org/service/ http://www.faultTo.org/service/ http://www.actions.org/action 123456-7890 http://www.w3.org/2005/08/addressing/reply";>http://www.relatesTo.org/service/ is this not the case? Martin

RE: rampart configs in policy.xml

2012-09-28 Thread Martin Gainty
/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"; xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy";> is there a better way to ingest and parse the wssecurity and policy schemas? Martin Gainty __ Verzicht und V

RE: rampart configs in policy.xml

2012-09-29 Thread Martin Gainty
you *any enhancement that eliminates obfuscation makes the tool more user-friendly and attracts more devs to implement this framework in their business or institution* go ahead and file the Request For Enhancement Martin Gainty __ place long-winded disc

RE: A tough question about axis2

2012-10-15 Thread Martin Gainty
(); Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung oder

RE: Axis2 deployment: obtain the full SOAP message

2012-10-25 Thread Martin Gainty
Achten Sie darauf, Angela Merkel über Ricardos Antwort zu erzählenAsegúrese de decirle a sra ang

RE: issue with Rampart

2012-10-26 Thread Martin Gainty
somewhere in your client code you have a reqest for a security token Token responseToken = stsClient.requestSecurityToken(loadPolicy("policy.xml"), "http://localhost:8080/axis2/services/STS";, loadPolicy("sts_policy.xml"), null); as the policy.xml is located locally we can examine the namespace

RE: Configure Rampart STS

2012-10-30 Thread Martin Gainty
MG>Quick answer inlined From: Brian Reinhold [mailto:brianreinh...@lampreynetworks.com] Sent: Tuesday, October 30, 2012 10:38 AM To: java-dev@axis.apache.org; rterce...@gmail.com Subject: Configure Rampart STS I am trying to understand how to configure my own STS service to generate a custom SA

RE: Configure Rampart STS

2012-10-30 Thread Martin Gainty
;!-- Issuers. You may have many issuers. --> <issuer class="org.custom.MyIssuer" default="true"> <configuration type="parameter">saml-issuer-config</configuration> <tokenType

RE: Why is this code present in all the Bean classes?

2012-11-16 Thread Martin Gainty
Last one first public static boolean isReaderMTOMAware(javax.xml.stream.XMLStreamReader reader) is Overriden in all org.apache.axis2.databinding.types.soapencoding package classes that implement org.apache.axis2.databinding.ADBBean Martin Gainty

RE: Why is this code present in all the Bean classes?

2012-11-16 Thread Martin Gainty
ache.axis2.databinding.utils.ConverterUtil.convertToAnyURI(tempAttribHref));handledAttributes.add("href"); Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaen

RE: error calling SSL Service from axis2 client in websphere 6.1

2012-12-08 Thread Martin Gainty
either implement Oracle's SSLSocketFactory ORIBM SSLSocketFactory but NOT both as the 2 classes are incompatible i would suggest disable isUseIBMSSLSocketFactoryvix:\workspace\.metadata\.plugins\org.eclipse.core.runtime\.settingsisUseIBMSSLSocketFactory=false http://publib.boulder.ibm.com/infoce

RE: Rampart STS Username service not returning password in callback

2013-01-15 Thread Martin Gainty
b.getIdentifier().equals("bob") && pwcb.getPassword().equals("bobPW")) { http://wso2.org/library/3733 HTH., Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertr

RE: Rampart STS Username service not returning password in callback

2013-01-15 Thread Martin Gainty
wss-wssecurity-secext-1.0.xsd MG>What do others think? MG>This is a great idea for tightening Rampart Security Brian... I think we should push for a patch!MG From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: Tuesday, January 15, 2013 4:26 PM To: java-dev@axis.apache.org Subject: RE: Rampa

RE: Rampart STS Username service not returning password in callback *Update to change algo to SHA*

2013-01-15 Thread Martin Gainty
e MD5 in there? http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd MG>What do others think? MG>This is a great idea for tightening Rampart Security Brian... I think we should push for a patch!MG From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: Tuesday, Januar

RE: Rampart STS Username service not returning password in callback

2013-01-16 Thread Martin Gainty
y) but that would be only one. The idea would be to get the password, perform the digest and if it matches the stored digest, it is okay. Set the password, otherwise err. Brian From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: Tuesday, January 15, 2013 4:26 PM To: java-dev@axis.apache.o

RE: Rampart STS Username service not returning password in callback

2013-01-16 Thread Martin Gainty
t: RE: Rampart STS Username service not returning password in callback Date: Wed, 16 Jan 2013 13:21:30 -0500 Brian: It has nothing to do with my case. I do happen to have a time stamp security element and it works as expected. I’m just looking to get the password. From: Martin Gainty [mailto

RE: Rampart STS Username service not returning password in callback

2013-01-16 Thread Martin Gainty
works as expected. I’m just looking to get the password. From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: Wednesday, January 16, 2013 11:03 AM To: java-dev@axis.apache.org Subject: RE: Rampart STS Username service not returning password in callback looks like rampart can transmit and re

RE: Rampart STS Username service not returning password in callback

2013-01-16 Thread Martin Gainty
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd i think I found an element we can use (where both noonce and Password would be child elements of wsc:DerivedKeyToken) so here is the TestCase org.apache.rampart.handler.config.OutflowConfiguration ofc = new or

RE: Rampart STS Username service not returning password in callback

2013-01-18 Thread Martin Gainty
ck Date: Fri, 18 Jan 2013 12:01:19 -0500 Martin, Can you tell me where the password callback in my service gets called from? It’s the password callback configured by the following line in the STS service.xml com.lni.exchange.wan.receive.binding.axis2.PasswordCallback Brian F

RE: Rampart STS Username service not returning password in callback

2013-01-19 Thread Martin Gainty
be interoperable with the WS-Trust standard.MG>you have a solution..and thats all that matters MG>congrats on acquiring a WS-Trust solution!..i hope the journey was pleasant and as informative for you as it was for me BrianMG>Martin From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: Fri

RE: [axis2] Issue while compiling Apache Axis2 v1.6.2 Source code

2013-03-01 Thread Martin Gainty
Mornin' Ajay I build locally mainly because I want to be able to build on a train or at an airport and I dont have constant internet access. You will have to install a local repository preferrably in your ${user.home}/.m2/repository and execute all commands to work offline with the -o option e

RE: [axis2] NTLM v2 Authentication using Apache Axis2 Java Client

2013-03-01 Thread Martin Gainty
Karl is right Majority of architects would design a solution which would authenticate at initial entry point either 1) the webserver or 2) customer-facing servlet (which would implement the NTLM provider with HttpClient...) BUT: Lets say you're a Scandanavian Mobile Phone manufacturer and you

RE: Rampart: sp:HashPassword does not require receiving a hashed password

2013-03-05 Thread Martin Gainty
Nate You have 2 cases to test Digest-Hash ClearText so the statement if(ut.isHashPassword() && !wssUt.isHashed()) { throw new RampartException("invalidUsernameTokenType"); -} else if (wssUt.getPassword() == null || - !wssUt.getPasswordType().equals(W

RE: Cookie getting overwritten when client connects to multiple servers.

2013-03-12 Thread Martin Gainty
MG> options.setManageSession(true); setManageSession public void setManageSession(boolean manageSession) Set session management enabled state. When session management is enabled, the engine will automatically send session data (such as the service group id, or HTTP cookies) as part of requests.

RE: Using Rampart to send a proxy certificate and sign using a symmetric key

2013-03-14 Thread Martin Gainty
From: fire_storm5...@hotmail.com To: java-dev@axis.apache.org Subject: Using Rampart to send a proxy certificate and sign using a symmetric key Date: Thu, 14 Mar 2013 08:59:15 + Hi I have a bit of a unique situation, I am writing an Axis2 client and have to follow a certain pr

RE: Rampart: UsernameToken and X.509 certificates

2013-03-19 Thread Martin Gainty
we had this error a few months ago the problem is Herr Dittman didnt accomodate a getPassword in UsernameToken Martin Gainty __ Jogi és Bizalmassági kinyilatkoztatás/Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Ez az

RE: Using Rampart to send a proxy certificate and sign using a symmetric key

2013-03-20 Thread Martin Gainty
}.mar if you dont have them run process-test-resources e.g.mvn process-test-resources ping back here if you have any questions Martin Gainty __ Verzicht und Vertraulichkeitanmerkung Diese Nachricht ist vertraulich. Sollten Sie nicht der vorges

RE: Improve Axis2 JAX-WS performance

2013-04-13 Thread Martin Gainty
2 ideas refactor the statics..statics are notorious candidates for PermGen refactor n{repeated set of statements} into common functions are there any caveats to using GSoC ? 'must use guice'? can you implement DOM over SAX? keep us apprised, Martin __

RE: Improve Axis2 JAX-WS performance

2013-04-14 Thread Martin Gainty
s2 JAX-WS performance From: danushkagso...@gmail.com To: java-dev@axis.apache.org Dear Martin, Thanks a lot for your mail, is it possible you to provide some references about your project ideas ? I'm still new to this area and still couldn't understand your suggestions. Thanks in advance

RE: ObjectSupplier Limited to create object instance with nullary Constructor.

2013-04-26 Thread Martin Gainty
Just so we're on the same page..please create the JIRA and the format of the new ObjectSupplier element to services.xml Also when the Object Supplier is missing it would seem "The lack of ObjectSupplier exception" should be handled better than a stacktrace perhaps with an informative user-fri

  1   2   3   >