Re: one more question

2006-08-02 Thread Deepal Jayasinghe
pls have a look at following article , that may solve your problems http://www.developer.com/open/article.php/3557741 Bret Kumler wrote: >If I create a Handler to access the SOAP info, like the one in the users >guide (LogHandler), does it have to be deployed in a server? > >I'm only use the cli

[Fwd: [Axis2] Code generation to C]

2006-08-02 Thread Samisa Abeysinghe
Does anyone has any idea on what is going wrong here? Basically I need some help to understand the exception. Samisa... Original Message Subject:[Axis2] Code generation to C Date: Wed, 2 Aug 2006 10:33:14 -0700 From: Alastair FETTES <[EMAIL PROTECTED]> Reply-To:

how to limit the web services requests

2006-08-02 Thread akkachotu
I want to limit the no. of (concurrent) requests to my web service deployed using AXIS. Is it possible in axis anyway. Say for example I want only 100 users access my web service and prevent 101th user accessing my service. Any thoughts? ---

Re: Axis 1.3 download problem

2006-08-02 Thread Davanum Srinivas
sorry, please try the archive: http://archive.apache.org/dist/ -- dims On 8/2/06, Imran Mansuri <[EMAIL PROTECTED]> wrote: Hello all, I have been trying to download Axis 1.3 the whole day today, but all the mirrors leads to 'Page Not Found' page. Although Axis 1.4 is available, but none of

Re: Book for Axis

2006-08-02 Thread xu cai
thanks derek, I am also thinking about port a service from Axis 1.4 to 2.0, now I would rather wait for a while.    On 8/3/06, Derek <[EMAIL PROTECTED]> wrote: In my opinion, the 1.0 release was so unstable that it should have been termed a beta. Extremely commonly used features simply did not

Re: Can't remove service using undeploy

2006-08-02 Thread xu cai
you can edit the WEB-INF/server-config.wsdd file manually, just remove the service definition. On 8/3/06, Christopher Jon Jursa <[EMAIL PROTECTED]> wrote: Hello,Is there a way to flush all the services in Axis without the undeploy.wsddfile?I have a service installed that cannot be removed.  I would

Re: Question about handling custom exceptions in Axis 1.3

2006-08-02 Thread xu cai
AxisFault extends from RemoteException, I think you can simply cast RemoteException to your customized exception. hope it works.   -jeff  On 8/3/06, Eric Borisow <[EMAIL PROTECTED]> wrote: Hi,I have been trying to piece together the best way togenerate and consume a custom exception with Axis 1_3.

Re: how to handle soap session in Axis 1.4

2006-08-02 Thread xu cai
just a follow up on my question.   By default, each client request will belong to a new session, right ?  even the server side can handle session (session scope), it will create a new session for each new request.   On 8/3/06, xu cai <[EMAIL PROTECTED]> wrote: In Axis 1.4, if the service scope

Re: [Axis2] Sandesha2 and Rampart module

2006-08-02 Thread Chamikara Jayalath
Hi Lennard, There is no way a message could reach the RM Phase without going trough the global phases (this include Transport, Security, Dispatch phases). If you have enable In-Order invocation in Sandesha2 (which is the default), it has following behaviour. Every incoming application will be pau

Re: Simple Soap Client

2006-08-02 Thread Hasalaka Waravita
Use RPCServiceClient   On 8/2/06, Christian Galbavy <[EMAIL PROTECTED]> wrote: Hi,I would like to write a simple Soap Client, which calls a method "add" from a service "mathpackage" with two params (short) arg_a = 3 and (short) arg_b = 5 and gets a long as return value. I looked at the org.apache.a

how to handle soap session in Axis 1.4

2006-08-02 Thread xu cai
In Axis 1.4, if the service scope is configured as "Session", it means that one object will be created for a session. Requests from clients may belong to one session or not.  So how could I know the request come from a same session ? Is there any Api in axis 1.4 to handle session ? Is the session t

Question about handling custom exceptions in Axis 1.3

2006-08-02 Thread Eric Borisow
Hi, I have been trying to piece together the best way to generate and consume a custom exception with Axis 1_3. I have created a test with an interface, a service implementation of the interface and an Exception. When I generate the wsdl using java2wsdl, the wsdl contains a reference to the Test

Can't remove service using undeploy

2006-08-02 Thread Christopher Jon Jursa
Hello, Is there a way to flush all the services in Axis without the undeploy.wsdd file? I have a service installed that cannot be removed. I wouldn't care but when I go to list my services, I get error messages saying a class file for the deleted service cannot be found. Thanks for reading and

groovy client+ 500 error

2006-08-02 Thread hc narc
Hi all,   I am trying to consume public web services which require BASIC authentication. I get the wsdl file, use apache axis wsdl2java to get java classes. Then I used a java client to access the web service via the generated java classes. It worked alright. But because of some project require

NonBlocking Client doesnot return in Callback.onComplete

2006-08-02 Thread Dilip Jain
Hi I have a service which takes more than 60+ minutes to process. I am usng NonBlocking client. When i execute the client, i see the service being called which is on tomcat. My client keeps on rotating in while (!callback.isComplete()) {    Thread.sleep(1000);    }    

one more question

2006-08-02 Thread Bret Kumler
If I create a Handler to access the SOAP info, like the one in the users guide (LogHandler), does it have to be deployed in a server? I'm only use the client to invoke a remote server, which isn't an axis2 server. I'm not clear on it; I know I need to create a Module class and Handler class. Pl

Re: Incorrect setting of server side arguments

2006-08-02 Thread Anne Thomas Manes
Your typeMapping is wrong. The qname attribute must refer to the qualified name of the element that will appear in the SOAP message (the xxiddetails element). It should look something like this: On 8/2/06, John Thompson <[EMAIL PROTECTED]> wrote: hi! I am a newbie to Axisso sorry

Incorrect setting of server side arguments

2006-08-02 Thread John Thompson
hi! I am a newbie to Axisso sorry if this is a pretty obvious fix.I have defined a ws service and client that exchange an object that containstwo strings.The service is invoked without a problem and the service executes and returns without any fault being created. The problem is that the Java

Re: Book for Axis (NEXT)

2006-08-02 Thread Anne Thomas Manes
Axis2 is still a bit immature. The standard recommendation from the dev team is to use the latest nightlies. Therefore I would not classify Axis2 as truly stable yet. But it is the strategic SOAP engine going forward. It was designed to work with all the latest and greatest WS-* specifications. A

RE: Book for Axis

2006-08-02 Thread Derek
Title: Message In my opinion, the 1.0 release was so unstable that it should have been termed a beta. Extremely commonly used features simply did not work, or did not work reliably, or had a design that was not yet stable enough to be worth writing code for. The current nightly builds are s

Re: Acessing a web service developed in PHP

2006-08-02 Thread Anne Thomas Manes
The PHP service must map the complex PHP datatypes to XML Schema types, and these types must be defined in the service's WSDL file. Axis will then automatically map the XML Schema data types to Java objects. It's like magic! On 8/2/06, Sergio Stateri Jr <[EMAIL PROTECTED]> wrote: Hi, I

Acessing a web service developed in PHP

2006-08-02 Thread Sergio Stateri Jr
Hi, I need to access a web service developed in php that?s using php complex data types. Is there any way to map this "php complex data types" to "complex java data types" ? An example: there?s a Product class in php, and an instance of this class in returned by web service. How can I deser

Axis 2.0==>Data Binding error

2006-08-02 Thread rajesh . k . khullar
Hi there ! Currently , We are using Axis 1.4 version as a Client. Today , I downloaded Axis2.0 version and started using it with my existing WSDL file . I was able to generate Client Stubs and other respective java files based on the WSDL by using "xmlbeans" as a option. When i am trying to e

Re: Book for Axis (NEXT)

2006-08-02 Thread Rajith Attapattu
Jose,   Axis2 is defnitely a huge improvement over Axis 1.x  >The user group (newsgroup) of Axis 2 seems to have more questions/mails than Axis 1.x - I >am folowing both   >Does this means that there is more problems using Axis 2 because of lacks of >documentation or because it is still not a matur

Re: Axis2: Installing Axis2 as part of existing web application

2006-08-02 Thread Rajith Attapattu
Syam,   Do u want to have Axis2 bundled with your existing web app? Like do u wanna have Axis2 and your web app to be deployed as a single WAR file?   if so check the following article by Dims   http://www.wso2.net/kb/90   Regards,   Rajith   On 8/2/06, Syam Prasad <[EMAIL PROTECTED]> wrote:  

Book for Axis (NEXT)

2006-08-02 Thread José Ferreiro
Well,   All my developpers friends are using Apache 1.x and no one is using Axis 2... I don't know really what is the best, but if they are all using Apache 1.x it should be because of something...   The user group (newsgroup) of Axis 2 seems to have more questions/mails than Axis 1.x - I am folow

Re: Module not found Error

2006-08-02 Thread Dilip Jain
HI Chinthaka First of all thanks for replying. By changing my sender = new ServiceClient() to sender = new ServiceClient(configContext, null) it did worked and my code went ahead. It waits in the while loop while (!callback.isComplete()) { Thread.sleep(1000); } But now t

RE: Book for Axis

2006-08-02 Thread Wenbo Zhu
Title: Message I also like to hear about the actual use/design of Axis 2, compared to 1.3 ... ?   -Original Message-From: sudip shrestha [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 02, 2006 3:52 PMTo: axis-user@ws.apache.orgSubject: Re: Book for AxisWondering if Ax

Re: Book for Axis

2006-08-02 Thread sudip shrestha
How about Apache Axis Live: A Web Services Tutorial:{http://www.amazon.com/gp/product/0974884324/sr=1-1/qid=1154549008/ref=pd_bbs_1/002-1553428-1342426?ie=UTF8&s=books }On 8/2/06, sudip shrestha <[EMAIL PROTECTED]> wrote: Wondering if Axis 2 is production ready or if not when we should expect it to

Re: stand-alone server

2006-08-02 Thread Paul Fremantle
I think Derek may have a point with regard to stability. I've seen SHS in Axis2 be pretty stable. Dims wrote an article on embedding Axis2 in your application here: http://www.wso2.net/kb/83 Paul On 8/2/06, Derek <[EMAIL PROTECTED]> wrote: I just modified that Wiki link to include some new

Re: Book for Axis

2006-08-02 Thread sudip shrestha
Wondering if Axis 2 is production ready or if not when we should expect it to be production ready?On 8/2/06, José Ferreiro < [EMAIL PROTECTED]> wrote:hello Sudip,I am also new to web services and I bought this book: http://agileskills2.org/DWSAA/I am interested in WSS4J security.As I am a beginner

Re: Problem With Interop with .Net

2006-08-02 Thread Anne Thomas Manes
I agree with Amit. Your WSDD should be: http://com.dell.gmfs.wips.oi"; returnType="rtns:OrderStatusEventResponse" xmlns:rtns="http://com.dell.gmfs.wips.oi";> http://www.w3.org/2001/XMLSchema"/> Anne On 8/2/06, Amit Andhale <[EMAIL PROTECTED]> wrote: I think you shou

Re: How to get SoapHeader info from XMLStreamReader or OMElement

2006-08-02 Thread Eran Chinthaka
Bret Kumler wrote: > Does the OperationClient support sync or is it async only? It has everything. Ultimately both stub and ServiceClient uses OperationClient underneath the invocation. It gives the maximum control to the client. -- EC signature.asc Description: OpenPGP digital signature

RE: stand-alone server

2006-08-02 Thread Derek
Title: Message I just modified that Wiki link to include some new information.   I encourage anyone knowledgeable about this to please take a look at the Wiki page and correct it if necessary.   In short, the "for testing purposes only" part may no longer be true (at least for Axis2. I am n

Re: Axis2: Installing Axis2 as part of existing web application

2006-08-02 Thread Lennard IJsselstein
Hi Syam, Look in the source distribution of Axis2. You can find a webapp directory in the modules directory. Use this as a guide to create you own web application. Thanks, Lennard. Syam Prasad wrote: Hi, Can anybody tell me how to install axis2 as part of existing web application?

Axis2: Installing Axis2 as part of existing web application

2006-08-02 Thread Syam Prasad
  Hi,   Can anybody tell me how to install axis2 as part of existing web application? I do not see anywhere in the documentation. It will be great even if you can point me in right direction.   Thanks, Syam

Re: How to get SoapHeader info from XMLStreamReader or OMElement

2006-08-02 Thread Eran Chinthaka
Bret Kumler wrote: > What would u recommend? Use OperationClient. -- EC signature.asc Description: OpenPGP digital signature

RE: How to get SoapHeader info from XMLStreamReader or OMElement

2006-08-02 Thread Bret Kumler
What would u recommend? Thanks! -Original Message- From: Eran Chinthaka [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 02, 2006 11:21 AM To: axis-user@ws.apache.org Subject: Re: How to get SoapHeader info from XMLStreamReader or OMElement Bret Kumler wrote: > The client. > > I used t

FW: Unable to create a soap message using xmlbeans [2.1.0]

2006-08-02 Thread andrew.j.hahn
Title: Unable to create a soap message using xmlbeans [2.1.0] Hi, I have posted this on the xmlbeans user mailing list but since it has t do with Axis I thought I would also see if anyone here has an idea or experience with this.  This list has provided me with really good information in th

Re: How to get SoapHeader info from XMLStreamReader or OMElement

2006-08-02 Thread Eran Chinthaka
Bret Kumler wrote: > The client. > > I used the wsdl2java to create the client stubs. If you are using stubs, I don't think you have a way to access the SOAPHeaders :(. -- Chinthaka signature.asc Description: OpenPGP digital signature

[Axis2] Auto-reply messages

2006-08-02 Thread Eran Chinthaka
Hi, I know lot of people have started enjoying vacations. But the auto replies some of you have set are very much annoying. Whenever I send a reply to a mail either in axis-dev or in axis-user, I get some number of out of office messages. Its ok to leave that message to your clients, but all the p

Re: [Axis2] Sandesha2 and Rampart module

2006-08-02 Thread Lennard IJsselstein
Hi Ruchith, I also expected the phases you mentioned. But when I check the executionChain in the messagecontext while debugging I only see the phases I mentioned before. For some reason sandesha2 alters the phases of the messages during invocation. Before sandesha2 was added the execution ch

FW: [axis2] questions...

2006-08-02 Thread Tony Dean
Does anyone have any insights on the questions listed below. For instance setting some HTTP headers works while others do not. These work: options.setProperty(MessageContextConstants.HTTP_PROTOCOL_VERSION, HTTPConstants.HEADER_PROTOCOL_10); options.setProperty(HTTPConstants.PR

Re: [Axis2] Character Encoding

2006-08-02 Thread Eran Chinthaka
The constant should be org.apache.axis2.Constants.Configuration.CHARACTER_SET_ENCODING (Arghh, when will my article on the constants gets published :( ) This SHOULD work with latest nightly build. If not please find a bug in JIRA. -- Chinthaka Javier V wrote: > Hi, > > I want to change the ch

Re: Problems with the REST POST Example

2006-08-02 Thread Eran Chinthaka
You might want to read http://www.wso2.net/kb/175, until I or some one comes up with a complete REST article. -- Chinthaka Harbarth, Juliane wrote: > > Hi Chinthaka, > > thanks for answering, yes I am using Axis2 1.0. > > If you say there seems to be a problem in the document, are you saying >

Re: Problems with the REST POST Example

2006-08-02 Thread Eran Chinthaka
Please read the user-guide. It contains the way to overcome the mentioned error by making the addressing module available in the client side. -- Chinthaka Harbarth, Juliane wrote: > > Hi, > > In the meantime I have downloaded the Axis2 samples and found > RESTClient.java in samples\userguide\s

RE: How to get SoapHeader info from XMLStreamReader or OMElement

2006-08-02 Thread Bret Kumler
The client. I used the wsdl2java to create the client stubs. -Original Message- From: Eran Chinthaka [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 02, 2006 10:56 AM To: axis-user@ws.apache.org Subject: Re: How to get SoapHeader info from XMLStreamReader or OMElement >From where you

Re: [Axis2] Sandesha2 and Rampart module

2006-08-02 Thread Ruchith Fernando
Hi Lennard, On 8/2/06, Lennard IJsselstein <[EMAIL PROTECTED]> wrote: Hi all, We are currently using both the Sandesha2 and the Rampart module. The problem we are facing now is when we send a webservice call the following happens: - The CreateSequence soapmessage is send to the Axis2 servlet an

Re: How to get SoapHeader info from XMLStreamReader or OMElement

2006-08-02 Thread Eran Chinthaka
From where you wanna do this? Inside a handler, serviceImpl, client? -- Chinthaka Bret Kumler wrote: > Can anyone help? > > I've read http://ws.apache.org/axis2/1_0/OMTutorial.html > > I've searched the mailing list and google. > > > > -Original Message- > From: Bret Kumler > Sent

Re: Module not found Error

2006-08-02 Thread Eran Chinthaka
You have forgotten to pass the created config context in to the service client. replace sender = new ServiceClient() with sender = new ServiceClient(configContext, null); -- Chinthaka Dilip Jain wrote: > Hi > I am trying to implement the nonblocking execution of my service sine my > service tak

[Axis2] Sandesha2 and Rampart module

2006-08-02 Thread Lennard IJsselstein
Hi all, We are currently using both the Sandesha2 and the Rampart module. The problem we are facing now is when we send a webservice call the following happens: - The CreateSequence soapmessage is send to the Axis2 servlet and is correctly processed. As expected the following axis2 phases a

Soap-Client with WSDL2JAVA

2006-08-02 Thread Christian Galbavy
Hi, I am trying to get the example from http://www.wso2.net/tutorials/axis2/java/2006/05/29/hello-world running. I generate the client stubs like it is described. When I try to compile the client, I get the errors that the classes EchoResponse and Echo are not found. There errors are described b

Axis 1.3 download problem

2006-08-02 Thread Imran Mansuri
Hello all, I have been trying to download Axis 1.3 the whole day today, but all the mirrors leads to 'Page Not Found' page. Although Axis 1.4 is available, but none of the other version is present in any of the mirror. Can anybody point me to the correct download link for Axis 1.3? I have been t

Re: Too many sockets being created. Bad architecture?

2006-08-02 Thread Jeff Greif
If there is another box available you could try a scheme like the following:: Use the other box as a proxy. It presents a synchronous web service to clients, which presumably connect via http. It passes the requests and responses to/from the box that implements the service (doing the heavy lift

Re: Book for Axis

2006-08-02 Thread José Ferreiro
hello Sudip,I am also new to web services and I bought this book:http://agileskills2.org/DWSAA/I am interested in WSS4J security.As I am a beginner I don't know if this is a good book or not. I start it and it is not too bad.It explains Eclipse, Axis 1.3 and WSS4J! Hope this helps. I am starting so

Schema element null in WSDL4j or WSIF

2006-08-02 Thread Luca Pandolfo
Hi all, I have a web service witch has complex types defined in a element and I want to read these types using WSDL4J or WSIF. This is a part of my code (these are my APIs: axis_1.3, wsdl4j_1.5.2, wsif_2.0.1_IB3. I use a Linux Slackware kernel 2.4.26): WSDLFactory factory; factory = new WSIFWSD

R: [axis2] Disable Chunk-Transfer-Encoding?

2006-08-02 Thread Morgante Thomas
I've had the same problem. This is how I managed to solve it. In the axis2.xml there is a place where this is specified HTTP/1.1 To understand how to manage with the axis2.xml file read the api for org.apache.axis2.context.ConfigurationContextFactory.createConfigurationCont

Re: [axis2] Disable Chunk-Transfer-Encoding?

2006-08-02 Thread Kinichiro Inoguchi
Hi, Igor. What are you doing in generateRequest(job) ? I wonder how do you create your request object. --- Igor Arenz <[EMAIL PROTECTED]> wrote: > Thank you for this answer, > > nice try, but it doesn't work. > I've updated tu the last SNAPSHOT from today (2 august). > > The exception is sti

Book for Axis

2006-08-02 Thread sudip shrestha
Hi,What is a good reference book for Apache Axis?  Need to start diggin into Web Services  I am new to web services, should I jump into Axis 2, (not studyin Axis 2)?

Module not found Error

2006-08-02 Thread Dilip Jain
Hi I am trying to implement the nonblocking execution of my service sine my service takes long time to execute..more than 15 mins. Previously i was using blocking client. But that was giving me time out execption as my service takes time to proces. So i impelemted non-blocking client with a separat

Re: How to verify security properties of SOAP message?

2006-08-02 Thread Juan Carlos Luciani
Nevermind answering this. I figured it out that it is done by determining that WSSecurityEngine.processSecurityHeader() executed the appropriate actions and that the signature action was performed over the appropriate elements by going over the WSSecurityEngineResult objects returned by the method

NonBlocking client

2006-08-02 Thread Dilip Jain
Hi I am trying to implement the nonblocking execution of my service sine my service takes long time to execute..more than 15 mins. Previously i was using blocking client. But that was giving me time out execption as my service takes time to proces. So i impelemted non-blocking client with a separat

Re: [axis2] Disable Chunk-Transfer-Encoding?

2006-08-02 Thread Igor Arenz
Thank you for this answer, nice try, but it doesn't work. I've updated tu the last SNAPSHOT from today (2 august). The exception is still the same: org.apache.axiom.om.OMException: Unsupported Operation at ..OMTextImpl.getText(OMTextImpl.java:254) at ..OMTextImpl.write

Re: Startup parameters

2006-08-02 Thread Nirmit Desai
Dave, see this thread: http://marc.theaimsgroup.com/?l=axis-user&m=115450262521069&w=2 Deepal, not sure if this is a bug, but the MessageReceiver generated by WSDL2Java makes only this call: org.apache.axis2.engine.DependencyManager.configureBusinessLogicProvider(obj, msgContext.getOperationCo

Re: Axis 1.3: Axis Interoperability issue with .net

2006-08-02 Thread Amit Andhale
Hi Pradeep, I faced same problem as you. I have an workaround for this problem. Instead of returning Array directly from a Function you can Wrap that array inside Class and return object of that class from your function. You will get both Array and Array inside this Array.   Amit   On 8/1/06, Anne

Re: stand-alone server

2006-08-02 Thread Bruno Patini Furtado
Apparently yes, but only for testing purposes.http://wiki.apache.org/ws/FrontPage/Axis/Install/Standalone?highlight=%28alone%29 On 8/2/06, Raffaele Viola <[EMAIL PROTECTED]> wrote: Hi all,Can I make a web services server stand-alone that works without any application server or web server?BRRaffo -

Re: Too many sockets being created. Bad architecture?

2006-08-02 Thread Davanum Srinivas
Sign up for one of those Niagara server (T2000) and run an evaluation on them. You will need really good servers and as much network capacity to match in an intranet environment to get this kind of performance. Search for the keyword "C10K" and read up more :) thanks, dims On 8/2/06, Kiggy Pop <

RE: Too many sockets being created. Bad architecture?

2006-08-02 Thread Kiggy Pop
Hi Sunil, Anne et al,I am not designing this system from scratch and the SOAP API with this 25 sec blocking synchronous operation is a requirement. (By "asynchronous exchange" I take it Anne means mean get my server to do a 'WS callback' ... unfortunately that is a not allowed API change.)My server

Re: Changing the soapaddress url while using java2wsdl

2006-08-02 Thread Dalys Sebastian
Deepal, I think I was not clear enough. I have axis2-1.0 embedded into my web application under Tomcat, which I can access using the url http://localhost:8080/mywebapp. And I have a web service running under mywebapp. To view its online wsdl, I access it using htp://localhost:8080/mywebapp/servi

RE: Problem With Interop with .Net

2006-08-02 Thread Chandrashekar_Sudars
Hi Anne, I have attached the WSDL... Thanks Regards Chandra - http://com.dell.gmfs.wips.oi"; xmlns:apachesoap="http://xml.apache.org/xml-soap"; xmlns:impl="http://com.dell.gmfs.wips.oi"; xmlns:intf="http://com.dell.gmfs.wips.oi"; xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"; xmlns:wsdlsoa

RE: Too many sockets being created. Bad architecture?

2006-08-02 Thread Sunil D'Monte
I would second that... asynchronous is definitely the way to go. And I don't think it's a just a matter of the number of sockets at the OS level, it's also a matter of the number of threads your web/app server can run. A heavy-duty app server like weblogic has 15 execute threads by default. Here yo

Re: Problem With Interop with .Net

2006-08-02 Thread Anne Thomas Manes
WSDL, please. On 8/2/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi All, I have a Webservicve which is using Wrapped/Literal. The client to my service is .Net. .Net is not able to desierialize my object array. I am attaching the response from the SOAPMonitor I used. Please do the needful.

Re: Axis Happiness Page Warning

2006-08-02 Thread Paul Fremantle
I don't think that's an error. If it found it it found it - thats all you need! Paul On 8/2/06, jits <[EMAIL PROTECTED]> wrote: While Installing axis on apache-tomcat 5.5 I go the following error on the Axis Happiness Page: Found JAXP implementation ( javax.xml.parsers.SAXParserFactory ) at a

Re: Axis 1.3: Axis Interoperability issue with .net

2006-08-02 Thread Anne Thomas Manes
The best way is to define it explicitly in your WSDL. This is an example of a wrapped array of the bar element: Here's the same

Simple Soap Client

2006-08-02 Thread Christian Galbavy
Hi, I would like to write a simple Soap Client, which calls a method "add" from a service "mathpackage" with two params (short) arg_a = 3 and (short) arg_b = 5 and gets a long as return value. I looked at the org.apache.axis2.client-class, which looks a bit complicated for me because of the wor

Re: [Axis2] Character Encoding

2006-08-02 Thread Davanum Srinivas
Are u using latest nightly? If so, please log a bug report. Thanks, dims On 8/2/06, Javier V <[EMAIL PROTECTED]> wrote: Hi, I want to change the character encoding to another than UTF-8, like UTF-16 or ISO-8859-1. I've tried with: Options options = new Options(); options.setTo(ta

Re: Too many sockets being created. Bad architecture?

2006-08-02 Thread Anne Thomas Manes
My question is : What is the standard way to architect web services which have a very long blocking synchronous operations ? Don't. Design an asynchronous exchange instead. Anne On 8/2/06, kk kk <[EMAIL PROTECTED]> wrote: Hi, I am developing a WS which provides an operation that takes around

Too many sockets being created. Bad architecture?

2006-08-02 Thread kk kk
Hi, I am developing a WS which provides an operation that takes around 25 seconds to complete. I can not speed this up nor I can not use a polling pattern or a callback to inform the client of the result of the request. I want to make the WS server capable to handle 100 new requests per second, s

Problem with heavy data

2006-08-02 Thread Dilip Jain
  HiI have a service which is running fine in normalconditions.I have a xml file which has data ina particulaar form.It is working fine when cml filesize is normal.Now, ehrn my file size is big enoug like 8 mb, the application blows =out. Sometimes i get out of memory error too. But i have

Axis Happiness Page Warning

2006-08-02 Thread jits
While Installing axis on apache-tomcat 5.5 I go the following error on the Axis Happiness Page: Found JAXP implementation ( javax.xml.parsers.SAXParserFactory ) at an unknown location Found Java Secure Socket Extension ( javax.net.ssl.SSLSocketFactory ) at an unknown location I saw few post

stand-alone server

2006-08-02 Thread Raffaele Viola
Hi all,Can I make a web services server stand-alone that works without any application server or web server?BRRaffo

RE: Axis 1.3: Axis Interoperability issue with .net

2006-08-02 Thread Chandrashekar_Sudars
Hi anne,   Could you please tell me how to created a unWrapped array. I am using axis 1.4 and using style="wrapped" use="literal"   Please looking fwd to your reply..   Thanks and Regards Chandra   From: Pradeep Reddy [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 02, 2006 4:29 AMTo: ax

RE: Problems with the REST POST Example

2006-08-02 Thread Harbarth, Juliane
Hi, In the meantime I have downloaded the Axis2 samples and found RESTClient.java in samples\userguide\src\userguide\clients. This one did compile but throws an error when run: E:\local\axis2>java userguide/clients/RESTClient Exception in thread "main" org.apache.axis2.AxisFault: Module not f

[Axis2] Character Encoding

2006-08-02 Thread Javier V
Hi, I want to change the character encoding to another than UTF-8, like UTF-16 or ISO-8859-1. I've tried with: Options options = new Options(); options.setTo(targetEPR); options.setProperty(org.apache.axis2.context.MessageContext.CHARACTER_SET_ENCODING, org.apache.axis2.contex

[axis2] making axis2 part of my web application

2006-08-02 Thread Johan Lundberg
hi Currently using axis1.3 but I am considering switching to axis2 My web services also need a web page front-end and therefore I would like to make axis2 part of my web application instead of being part of the axis2 web app. However I cannot find anything about this type of setup in the doc.

Problem With Interop with .Net

2006-08-02 Thread Chandrashekar_Sudars
Hi All, I have a Webservicve which is using Wrapped/Literal. The client to my service is .Net. .Net is not able to desierialize my object array. I am attaching the response from the SOAPMonitor I used. Please do the needful. I have attached the request and the response.. The .Net is getting the a

Re: Axis2 Basic Authentication By the Service

2006-08-02 Thread Paul Fremantle
Brian Usually the approach taken is to add in the WSSecurity module Rampart. If you want to do security yourself, you could get access to the MessageContext, find the HTTP Username/Password headers, do the base64 decode, and then you would have the UID/PWD. Rampart does all that, as well as mor

Re: [Axis2 1.0] MessageContext is null

2006-08-02 Thread Deepal Jayasinghe
Nirmit Desai wrote: >Hi David, > >Thanks a lot for your help. I used setOperationContext and it worked. > >I am accessing a service level parameter (defined at deployment time in >services.xml). >However, the message receiver would call setOperationContext every time an >operation is being invok