Woods- <-- start the axis1.3 server --> java org.apache.axis.transport.http.SimpleAxisServer -p 8080
<!-- server-security-deploy.wsdd defines LogHandler and identifies the log --> <deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <globalConfiguration> <requestFlow> <!-- define the Server Signature Verification handler configuration --> <handler name="track" type="java:samples.security.LogHandler"> <parameter name="filename" value="MyService.log"/> </handler> </requestFlow> </globalConfiguration> </deployment> java org.apache.axis.client.AdminClient samples/security/serversecuritydeploy.wsdd <!-- clientsecuritydeploy.wsdd contains the ClientSigningHandler which implements keystore.jks --> <deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"> <globalConfiguration> <requestFlow> <!-- define the client Signing handler configuration --> <-- be advised llocation of keystore.jks must be exact --> <handler type="java:samples.security.ClientSigningHandler"> <parameter name="keystore" value="samples/security/keystore.jks"/> </handler> </requestFlow> </globalConfiguration> </deployment> java org.apache.axis.utils.Admin client samples/security/clientsecuritydeploy.wsdd axis1-.3 has not been touched in at least 5 years so *caveat emptor* 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 Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen. Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire informez l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est interdite. Ce message sert à l'information seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Tue, 24 May 2011 13:49:03 -0700 From: [email protected] Subject: Axis 1.4 client: add additional get/post param? To: [email protected] Hi we are using an Axis 1.4 generated client. All requests are going through a proxy that requires a special "token" to exist for the request to proceed on to the actual endpoint. I need to "append" this token on as a get parameter on the endpoint URL per request, or send it along in the POST as an additional parameter. How can I do this with my Axis 1.4 client?
