basic auth on the standalone server

2009-03-05 Thread Sihem
Hello! I would like to know whether the standalone server supports a basic HTTP authentication because I found nothing on the newsgroup about that. Thanks by advance sihem

Re : basic auth on the standalone server

2009-03-05 Thread Sihem
I finally found that I have to to change http_sender.c to addan http level authentication mechanism. is there any documentation or sample giving some explanations ? Thanks! sihem De : Sihem stfle...@yahoo.fr À : axis-c-user@ws.apache.org Envoyé le : Jeudi, 5

Re : Re : basic auth on the standalone server

2009-03-05 Thread Sihem
Hello! finally I found some documentations about HTTP authentication which seems to be easy to set up. I modified the axis2.xml file as followed: transportSender name=http class=axis2_http_sender parameter name=PROTOCOL locked=falseHTTP/1.1/parameter parameter name=xml-declaration

Re: Re : Re : basic auth on the standalone server

2009-03-05 Thread Dumindu Pallewela
Hi Sihem, We don't currently support HTTP Auth with simple_axis_server. Nor do we have any plans for that as of yet. If you need authentication you'll have to deploy axis2/c module in apache httpd, and configure authentication there. This is the recommended way of deploying axis2/c server. Our

Re : Re : Re : basic auth on the standalone server

2009-03-05 Thread Sihem
anyway is there a way to add HTTP authentication support in the standalone directly in the code ? thanks! sihem De : Dumindu Pallewela pallew...@gmail.com À : Apache AXIS C User List axis-c-user@ws.apache.org Envoyé le : Jeudi, 5 Mars 2009, 17h01mn 01s Objet :

rampart/c usage get-started questions

2009-03-05 Thread Vivian Wang
Hi There, I am starting to use rampart/c for ws-security purpose together with axis2/c in a web service client application. I have the following get-me-started questions: (1) As a web service client, all the security configurations can be done in a policy file, there is no need to

Display user WSDL with embedded Axis2

2009-03-05 Thread Julien HENRY
Hi all, I'm using Axis 2 (1.4.1) embedded inside my web application (like it is explained here: http://wso2.org/library/90). My service classes are generated from WSDL and I would like to display this WSDL (with updated port adress) when I browse to

Re: Display user WSDL with embedded Axis2

2009-03-05 Thread Sagara Gunathunga
Hi Julien, place your WSDL file in the META-INF directory where you had placed your services.xml file . as a example it could be in mywebapp/services/MyService/META-INF/MyService.wsdl path , then adding following parameters to your services.xml file will picked up your original WSDL file .

Re: Memory problems using axis2 tomcat and ssl

2009-03-05 Thread Håkon Sagehaug
hi Thanks for the replays, I'll play with the startup memory configurations of tomcat and hopefully it will have the wanted effect. 2009/2/27 Seshi Patibanda seshi...@gmail.com Hello Hakon, As you may already know, PermGen space (a separate area of heap memory) contains long-lived

Re: Question about exposing a database as a web service...

2009-03-05 Thread m4rkuz
let's see when you modify your code to accept the param id like this: public OrderData orderDetails(int id) You must do another client for the WS generated, query string is not the way to pass parameter to a web service. Regards, Marcus V. Sánchez D. __ Enterprise

Re: Question about exposing a database as a web service...

2009-03-05 Thread riveraej
Well I still have not done a client, I'm checking how this works and testing it in my browser. The final target is to have another WS, especifically a BPEL Process. This BPEL-WS will use the DB-WS because it will need to make consults to the DB (obviously through the orderDetails service). So...

Re: Question about exposing a database as a web service...

2009-03-05 Thread riveraej
Well I still have not done a client, I'm checking how this works and testing it in my browser. The final target is to have another WS, especifically a BPEL Process. This BPEL-WS will use the DB-WS because it will need to make consults to the DB (obviously through the orderDetails service). So...

Accessing Coldfusion webservice from axisclient

2009-03-05 Thread venuwin
Hi, We are in need of accessing a webservice written in coldfusion. Things go well as long as we don't need a session. But the Coldfusion webservice expects certain things to be done based on user session. I am able to do that when i post the URL from a browser. Vut when i do the same thing

SUn App Server | Axis2 War

2009-03-05 Thread Appasamy Thirugnana
I am getting the following error when i deploy axis2.war in Sun Java System Application Server Platform Edition 8.2 and access the URL. Can someone help me in getting out of this? [#|2009-03-05T20:38:40.791+0530|INFO|sun-appserver-pe8.2|javax.enterprise.system.stream.out|_ThreadID=12;|[ERROR]

Re: Question about exposing a database as a web service...

2009-03-05 Thread keith chapman
Hi, Have you looked at the WSO2 DataServices Solution? [1]. It is a product thats built on Apache Axis2 which helps you expose a data base as a web service by simply following a wizard. I think using that will be more productive in your case. It is also released under the Apache License. Thanks,

Re: Question about exposing a database as a web service...

2009-03-05 Thread sumedha rubasinghe
This link[1] contains a collection of HOWTOs on WSO2 Data Services solution. /sumedha [1] http://wso2.org/library/3183 On Thu, Mar 5, 2009 at 10:12 PM, keith chapman keithgchap...@gmail.com wrote: Hi, Have you looked at the WSO2 DataServices Solution? [1]. It is a product thats built on

Enabling rampart in servlet

2009-03-05 Thread Håkon Sagehaug
Hi all I have a web application that contains some servlets, where I need to engage rampart, but I can only engage rampart if i specify the hole path for the repository in ConfigurationContext ConfigurationContextFactory

Including libraries in your service jar

2009-03-05 Thread Philip Wilder
Hello all, I was wondering if it is possible to include libraries in jax-ws service jar deployment? I would use the aar deployment which I know supports libraries but: 1) I want to get away without using a services.xml file. 2) I get the following (server) error when I try using an aar:

Re: Enabling rampart in servlet

2009-03-05 Thread m4rkuz
Hi Håkon, You can build the policy reading an XML, like this... try { StAXOMBuilder builder = new StAXOMBuilder(rampartPolicyFileLocation); Policy rampartConfig = PolicyEngine.getPolicy(builder .getDocumentElement());

Re: SUn App Server | Axis2 War

2009-03-05 Thread Sagara Gunathunga
Hi Appasamy, Try to use GlassFish Server instead of sun Sun Java System Application Server (Actually Sun Java System Application Server renamed as GlassFish for new releases [1] ) Axis2 worked fine on Sun GlassFish Enterprise Server v2.1 for me . [1] - http://developers.sun.com/appserver/

Bean values not getting to POJO service

2009-03-05 Thread Neil Gierman
I am new to both Java programming and Axis2 so forgive me if this is covered somewhere that I was not able to find. I have the following base class: Public class Base { Private String id; Private String name; appropriate getters and setters } And

Axis 1.1 / Multiple Proxies

2009-03-05 Thread Vincent FINET
Hi Axis Users! I have a question about Axis 1.1 I have a Web Application that should call two Web Services with Axis 1.1. The two Web Services can be reached via two different HTTP proxies. Meaning WS #1 can be reached via HTTP proxy #1 (and only this one) and WS #2 can be reached via HTTP

Re: Applying policies at binding hierarchy in Apache Axis2 1.4.1/Rampart 1.4

2009-03-05 Thread Alexis Midon
Hi Nandana, did you have a chance to look at it? Alexis On Fri, Feb 20, 2009 at 1:05 PM, Alexis Midon mi...@intalio.com wrote: The wsdl is also available here : http://gist.github.com/67691 Just in case the attachement did not make it through. Alexis On Fri, Feb 20, 2009 at 1:02 PM,

Unexpected subelement

2009-03-05 Thread Cristian Maluenda
Hi, I have had this problem the last week and i am really lost. I think is a problem with the WSDL, which doesnt fit with the request. The classes were create using WSDL2Java from Axis2 and I cant find where is the problem because The request looks fine with the WSDL file. Cheers, Cristian. My

Ibatis Integration

2009-03-05 Thread shilpa.raghavendra
Hi, I need to use Ibatis as a DAO frame work with Apache AXIS2, i am newbie to AXIS2 please help me to configure the same. Regards, Shilpa Please do not print this email unless it is absolutely necessary. The information contained in this electronic message and any attachments to

axis2 version 1.3

2009-03-05 Thread Jain, Prateek
All, I am trying to download axis2.0 version 1.3 standard version. But the package available is corrupted. I tried downloading it many times but same result. I also tried to download its src package but same got the same result. Please let me know if I can get it from some where else, or,

wsdl2java

2009-03-05 Thread chathuranga
Hi, We have a server which runs on axis2 1.1 and rampart1.1. I was trying to generate a client using the WSDL’s in the server. First I used axis2 1.4 and rampart1.1. And were able to successfully generate the java files using wsdl2java I used WSDL2Java -uri