Re: Deployment of Axis 1.1 On WLS 8.1

2005-11-06 Thread naveen babu
I am also looking for the same, reply to this email will be appreciated
 
I developed Web Services using Apache Axis using JRun 4.0 
On 11/6/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

Hi All,Has anybody out there deployed Axis 1.1 onto WLS8.1.We are in the middel of migrating our system from Tomcat 
4.1.27 to WLSO 8.1SP4. We have finished all our JSP mifration and are now starting to migrate theAxis Web services and any help or pointers you could provide would me more thanwelcome.RegardsSteve



Re: Repost : accessing a webservice through a proxy server

2005-11-01 Thread naveen babu
i have worked on it. i can paste my code here. my environment is JRun4.0 server with Apache axis

Under you WEB-INF folder, in web.xml file, put the following code


    
  
  /services/*
  GET
  POST
    
    
  wsrole
    
  

  
    BASIC
  

and inside server-config.wsdd put the following lines of code

Subscriber.wsdl
  
   
   
  
  
   
   .


and under the JRun's  jrun-users.xml file , put the following lines of code


  false
  
    itswsu
    7#a0x!3M
  
 
   oprole
   oprwsu
  


let me know, if you have any questions





On 10/31/05, Ravi Krishnamurthy <[EMAIL PROTECTED]> wrote:



  


Thanks Ketan.

Ketan Deshpande wrote:

  There is some stuff in axis-1_3\samples\stock\ deploy.wsdd, GetQuote1-K--- Ravi Krishnamurthy 
<[EMAIL PROTECTED]> wrote:  
  
Hello:There are some webservices that needs some authentication to access the wsdl itself. Could anybody point me to some examples on how to get hold of the wsdl.In my project we need to develop a configuration and runtime for 
webservices that helps the users to navigate through the webservice and choose what operations to want to use etc.This is very urgent and I would appreciate any help on this.I ahve posted this message once and did  not get any reply. So trying it 
again.Thanks,Ravi
  
  Ketan Deshpande[EMAIL PROTECTED]		__ 
Yahoo! FareChase: Search multiple travel sites in one click.http://farechase.yahoo.com  








Re: Axis and Tomcat problem - "(401)Unauthorized"

2005-10-22 Thread naveen babu
It's actually *.WSDD file. You can name it anything. Without WSDD file, i don't know how are you deploying your web services, it is the main configuration file for deploying your web services when using Apache Axis. see the link below for the documentation on it

 
http://ws.apache.org/axis/java/user-guide.html#CustomDeploymentIntroducingWSDD
 
When you download Apache Axis 1.3, see under the  axis-1-3/samples/ folder and look at some of the examples where WSDD file has been used. 
On 10/21/05, Chen, Donald <[EMAIL PROTECTED]> wrote:


I could not find the server-config.wsdd file, I use Axis 1.3.  
 
Don
 




From: naveen babu [mailto:
[EMAIL PROTECTED]] Sent: Friday, October 21, 2005 5:04 PM
To: axis-user@ws.apache.org
Subject: Re: Axis and Tomcat problem - "(401)Unauthorized"

 
it is authentication problem, if you look at your server-config.wsdd file you should have specified something like i have done, see below from my WSDD file.
   Subscriber.wsdl              
             and you specify in web.xml  you specify the role as below      
  /services/*  GET  POST        
  wsrole        and in jrun-users.xml file you specify the userid and password for the rolei got this error too, let me know if i am not clear


On 10/21/05, Chen, Donald <
[EMAIL PROTECTED]> wrote:
Yeah, this error happened when I tried to deploy a WS.Any document available online to show a way to solve this problem?  Iassume this is a common problem.
Thanks,Don-Original Message- From: Ebert, Chris [mailto:[EMAIL PROTECTED]
]Sent: Friday, October 21, 2005 4:45 PMTo: axis-user@ws.apache.orgSubject: RE: Axis and Tomcat problem - "(401)Unauthorized" 
This is when you deploy, right? Not once it's deployed? If it's thedeploy itself it's a tomcat deploy issue (likely because ofconfiguration). While there might be help here, you'll probably havebetter luck on one of the tomcat lists (or in the Tomcat doc or FAQ.) 
Chris-Original Message-From: Chen, Donald [mailto:[EMAIL PROTECTED]]Sent: Friday, October 21, 2005 13:31
To: axis-user@ws.apache.orgSubject: Axis and Tomcat problem - "(401)Unauthorized"
Hi, there.When I tried to deploy a service, I gotFaultString: (401)UnauthorizedSystem Info: Apache 2.0.5.4
  Tomcat 5.5.9  Axis: 1.3, Linux OS.Any idea?Thanks,Don
 


Re: Axis UTF-8 Encoding Question

2005-10-21 Thread naveen babu
can you be a little detail. 

try returning the UTF-8 characters in string formatOn 10/21/05, Wesley MacDonald <[EMAIL PROTECTED]> wrote:





Hi,
 
   I 
would like to know why the UTF-8 characters are being returned as html encoded 
values and is it possible to get them in their native format.  Here is an 
example of a return:
    

    
LIMITÉE
 
    
The server is running under Tomcat 5.5.9 with Axis 1.2.1 and the client uses 
IP*Works! for Borland C++
 
 
Thanks in 
advance
 
Wes.
 
 
 




Re: Axis and Tomcat problem - "(401)Unauthorized"

2005-10-21 Thread naveen babu
it is authentication problem, if you look at your server-config.wsdd
file you should have specified something like i have done, see below
from my WSDD file.


 
  Subscriber.wsdl
  
   
   
  
  
  
  


  
   
   
  
 

and you specify in web.xml  you specify the role as below


    
  
  /services/*
  GET
  POST
    
    
  wsrole  
    
  

and in jrun-users.xml file you specify the userid and password for the role

i got this error too, let me know if i am not clear

On 10/21/05, Chen, Donald <[EMAIL PROTECTED]> wrote:
Yeah, this error happened when I tried to deploy a WS.Any document available online to show a way to solve this problem?  Iassume this is a common problem.Thanks,Don-Original Message-
From: Ebert, Chris [mailto:[EMAIL PROTECTED]]Sent: Friday, October 21, 2005 4:45 PMTo: axis-user@ws.apache.orgSubject: RE: Axis and Tomcat problem - "(401)Unauthorized"
This is when you deploy, right? Not once it's deployed? If it's thedeploy itself it's a tomcat deploy issue (likely because ofconfiguration). While there might be help here, you'll probably havebetter luck on one of the tomcat lists (or in the Tomcat doc or FAQ.)
Chris-Original Message-From: Chen, Donald [mailto:[EMAIL PROTECTED]]Sent: Friday, October 21, 2005 13:31To: 
axis-user@ws.apache.orgSubject: Axis and Tomcat problem - "(401)Unauthorized"Hi, there.When I tried to deploy a service, I gotFaultString: (401)UnauthorizedSystem Info: Apache 
2.0.5.4  Tomcat 5.5.9  Axis: 1.3, Linux OS.Any idea?Thanks,Don


server-config.wsdd

2005-10-19 Thread naveen babu
Can i define below parameters inside the "Service" tag too apart from"globalConfiguration" tag in server-config.wsdd file


i want to set the values for these parameters as "TRUE" in the"globalConfiguation"and FALSE inside the "Service" tagThanks in advance