undefined reference to `axiscpp::Stub::Stub

2006-06-21 Thread Bhatt, Nitin IN GGN SISL
Hi all, I have a problem when I try and compile my application using asix-1.5 and xerces-c-2.2.0. On compiling, I get the following error, undefined reference to `axiscpp::Stub::Stub. Looks like my make file is not able to link my application with the libraries required. Any

Axis C++ client getting Aborted

2006-06-21 Thread Bhatt, Nitin IN GGN SISL
Hi all, I have managed to build and compile the client side stub using Axis C++ client. The problem that I am facing now is that as soon as I construct the object for my client, I get an Aborted message. Any suggestions. Thanks Nitin

Need help on Axis2SampleDocLitService sample!!!!

2006-06-21 Thread Gary Yue
Hi, I am trying the Axis2SampleDocLitService example in the Axis2.0 user guide. I ran WSDL2Java against the sample wsdl, and I was able to get the server up and running. However, for the client, i am getting a runtime exception while sending the message to server: (I did use the tcpmon and see

sending asynchronous soap messages

2006-06-21 Thread Phani Sekhar
Hi, Is there any way to send asynchronous soap messages from a webservice in Axis, something similar to snmp notifications ??? Thanks in Advance Phani Sekhar

Performance..

2006-06-21 Thread Casper Højstrup
Just wondering if anyone got an oppinion on these benches ? http://xfire.codehaus.org/Performance 2-5x as fast as Axis(ver.1 though)? c'mon. ? /cho

RE: [Axis2] Stacktrace output in SoapFault

2006-06-21 Thread Sebastian Szczygiel
Thanks, but looks like the properties DrillDownToRootCauseForFaultReason and sendStacktraceDetailsWithFaults are not available in Axis2 0.95 So I have to wait for Axis2 1.1, because 1.0 isn't working with our WSDL and we don't want to use nightly builts. -Original Message- From: Eran

[Axis14] Newbie: How to get XML data which is sent over network?

2006-06-21 Thread Axel Bock
Hi all, I am using Axis 1.4 with generated stubs to call some web services. Now I would really like to get to the XML data which is sent by Axis over the network, but using a sniffer is (1) cumbersome and (2) very hard, for the web service uses a HTTPS connection. So I hope that maybe one of the

Re: Axis2 generates invalid parameters in WSDL for simple service

2006-06-21 Thread Eran Chinthaka
Hi Anne, Sorry, I didn't see this earlier. Thanks you very much for putting these things together. Please see my comments inline. Anne Thomas Manes wrote: I don't think it's an error that java2wsdl generates a wrapped interface (that's what .NET would do). The problem is that Axis2 doesn't

Re: [Axis14] Newbie: How to get XML data which is sent over network?

2006-06-21 Thread Riadh BEN HALIMA
Hi, TrYou canuse Axis Handlers! ---Riadh - Original Message - From: Axel Bock To: axis-user@ws.apache.org Sent: Wednesday, June 21, 2006 11:21 AM Subject: [Axis14] Newbie: How to get XML data which is sent over network? Hi all, I am

[AXIS2] How to set a timeout ?

2006-06-21 Thread Loïc MAZE
Hi all,Isimply would like to know how to set atimeout with SOAP sessions. I'm currently using MessageContext and ServiceGroupContext. Any information in this regard will be highly appreciated. Best regards,Loïc

Re: Axis2 generates invalid parameters in WSDL for simple service

2006-06-21 Thread Davanum Srinivas
Eran, #3 is already fixed i think. -- dims On 6/21/06, Eran Chinthaka [EMAIL PROTECTED] wrote: Hi Anne, Sorry, I didn't see this earlier. Thanks you very much for putting these things together. Please see my comments inline. Anne Thomas Manes wrote: I don't think it's an error that

SOAP Message redirect?

2006-06-21 Thread Riadh BEN HALIMA
Hi all, Isimply would like to know if we can redirect SOAP Message from one server to another! Thank in advance. ---Riadh

Re: [Axis14] Newbie: How to get XML data which is sent over network?

2006-06-21 Thread Axel Bock
Hi Riadh, that is a good hint, thank you, but without wanting you to do my work - could you maybe provide a very minimum example? :-) that would be great!Greetings thanks, Axel. On 6/21/06, Riadh BEN HALIMA [EMAIL PROTECTED] wrote: Hi, TrYou canuse Axis Handlers!

RE: [SPAM] - SOAP Message redirect? - Bayesian Filter detected spam

2006-06-21 Thread Dhakshinamoorthy, Hariharasudhan
Yes! you can simply do it . ;-) -Original Message-From: Riadh BEN HALIMA [mailto:[EMAIL PROTECTED]Sent: Wednesday, June 21, 2006 3:39 PMTo: axis-user@ws.apache.orgSubject: [SPAM] - SOAP Message redirect? - Bayesian Filter detected spam Hi all, Isimply would like to know if we

Re: [Axis2][1.0] JMS test problems with SonicMQ

2006-06-21 Thread Ali Sadik Kumlali
Hi again, Finally, I've managed to initilize SimpleJMSListener and retrieved the message on it. Although the same manual processes were required to achive this, I would like to congratulate Axis2 team as these are not too easy to accomplish tasks in a transport-transparent manner. Some of the

problem with two methods in service

2006-06-21 Thread Stefan Kuhn
Hi all, I have a web service, described via a wsdl. I deployed this, but it seems only one method is recognized. When I go to http://127.0.0.1:8080/axis/servlet/AxisServlet, only the doPrediction method is listed, but not getSpectrumTypes. Furthermore when using my client, always the doPrediction

Re: [Axis14] Newbie: How to get XML data which is sent over network?

2006-06-21 Thread Riadh BEN HALIMA
ok, You put ClientHandler.java in theclient folder, and add those lines to your client code: java.util.List list = helloService.getHandlerRegistry().getHandlerChain(new QName(nameSpaceUri, portName)); list.add(new javax.xml.rpc.handler.HandlerInfo(ClientHandler.class,null,null));

Re: [SPAM] - SOAP Message redirect?

2006-06-21 Thread Riadh BEN HALIMA
Hi,Could you please, tell me how to do? could you maybe provide a very minimum example?ThanksRiadh - Original Message - From: Dhakshinamoorthy, Hariharasudhan To: axis-user@ws.apache.org Sent: Wednesday, June 21, 2006 12:37 PM Subject: RE: [SPAM] - SOAP Message

Axis2: can client read from open stream?

2006-06-21 Thread Betsy Frey
Is there a way in which Axis 2 will allow the client to start receiving the response while the server is still adding children to the SOAP response? Thanks you. Betsy Frey ** This email and any files

Re: [Axis14] Newbie: How to get XML data which is sent over network?

2006-06-21 Thread Axel Bock
thanks very much, I'll test that ASAP :))greetings thanks, axel.On 6/21/06, Riadh BEN HALIMA [EMAIL PROTECTED] wrote: ok, You put ClientHandler.java in theclient folder, and add those lines to your client code: java.util.List list = helloService.getHandlerRegistry().getHandlerChain(new

[Axis14] SSL handshake TrustManager

2006-06-21 Thread Axel Bock
Hi all, I have another problem concerning SSL handshakes with axis. I am developing against a server which has a non-public security certificate. For convenience reasons (and maybe even for the final product :) I would like to implement my own certificate checking for the SSL server handshake. I

[axis2] axis 2.1

2006-06-21 Thread Anamitra . Bhattacharyya
Hi With all these bug fixes thats getting done - is there any date for axis2.1 release? Or do we keep downloading the latest nightly build? I am little nervous to download a nightly build mainly because of the stability factor. thanks Anamitra -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 See

Re: SOAP Message redirect?

2006-06-21 Thread Martin Gainty
In normal circumstances the publishing service publishes a WSDL (a schema which defines supportingoperations andsupported types) to the consuming client..I guess I dont understandtheneed for locating an intermediary node between the publishing server and the consuming client?? *Most*

Relation between SOAP Header and Body?

2006-06-21 Thread Riadh BEN HALIMA
Hello,Are there any relationship between a soap body and a sopa header elements? Thanks in advance---Riadh

Re: Relation between SOAP Header and Body?

2006-06-21 Thread Anne Thomas Manes
They're both in a SOAP envelope...The SOAP Body should be used to convey the application payload.The SOAP Header should be used to convey information used by the middleware to manage and coordinate the service interaction. The specific relationship between Header and Body elements will be

Re: Relation between SOAP Header and Body?

2006-06-21 Thread Riadh BEN HALIMA
Thank you very much ---Riadh - Original Message - From: Anne Thomas Manes To: axis-user@ws.apache.org Sent: Wednesday, June 21, 2006 3:59 PM Subject: Re: Relation between SOAP Header and Body? They're both in a SOAP envelope...The

Re: problem with two methods in service

2006-06-21 Thread Anne Thomas Manes
I don't believe that Axis let's you define two ports with the same access point.Rather than defining two different portTypes, each with its own associated binding, define one portType and one binding with two operations. AnneOn 6/21/06, Stefan Kuhn [EMAIL PROTECTED] wrote: Hi all,I have a web

Shared Object Webservice call

2006-06-21 Thread Arvind S.
Hi, I am using Axis 1.3 to make webservice calls. I have two servlets - ServletA ServletB running on the same instance of webserver. Servlet A passes an object to Servlet B through the ServletContext. The object can call a webservice 'A' and obtain succesful result from a remote webservice

Re: Axis2 generates invalid parameters in WSDL for simple service

2006-06-21 Thread Davanum Srinivas
I created one. Thanks Anne! http://issues.apache.org/jira/browse/AXIS2-837 -- dims On 6/21/06, Anne Thomas Manes [EMAIL PROTECTED] wrote: Eran, Regarding #1: Based on John's service interface, Java2WSDL should generate a WSDL interface that accepts an empty SOAP Body. e.g., wsdl:message

Re: [Axis2]is this [bug] already fixed?

2006-06-21 Thread Ruchith Fernando
Hi Anamitra, Please use this wss4j-SNAPSHOT.jar from here [1] and replace your wss4j-SNAPSHOT.jar We had a problem in the wss4j-SNAPSHOT.jar in the axis2 nightly build and Dims just fixed it. Thanks Dims ! The next axis2 nightly build should have the correct jar with it. Thanks. Ruchith [1]

https --- web service

2006-06-21 Thread Shuaibin Wang
Hi,I need to access a rpc web service with https. But the code I generated from wsdl file is for http , could any on tell me how can I change the generated client code to send https requests ? many thanks . SWang

Re: [Axis2]is this [bug] already fixed?

2006-06-21 Thread Davanum Srinivas
Sorry guys! On 6/21/06, Ruchith Fernando [EMAIL PROTECTED] wrote: Hi Anamitra, Please use this wss4j-SNAPSHOT.jar from here [1] and replace your wss4j-SNAPSHOT.jar We had a problem in the wss4j-SNAPSHOT.jar in the axis2 nightly build and Dims just fixed it. Thanks Dims ! The next axis2

[axis2] UserExceptions and WSDL

2006-06-21 Thread studium-sbr
Sorry for bringing this up again, but nobody answered. Any hints ? Hi, I have a service implementation, that is NOT generated by WSDL2Java. It is just simple Java-classes. There I have some methods, that can throw my own UserExceptions. To put some helpful response back to the client, I

Re: [axis2] UserExceptions and WSDL

2006-06-21 Thread Riadh BEN HALIMA
Hi, I have modified your code in order to lunch your exception, see below. --- Riadh - Original Message - From: [EMAIL PROTECTED] To: axis-user@ws.apache.org Sent: Wednesday, June 21, 2006 5:49 PM Subject: [axis2] UserExceptions and WSDL Sorry for

Re: problem with two methods in service

2006-06-21 Thread Stefan Kuhn
Am Wednesday 21 June 2006 16:06 schrieben Sie: I don't believe that Axis let's you define two ports with the same access point. Rather than defining two different portTypes, each with its own associated binding, define one portType and one binding with two operations. Hi Anne, thanks for

something is wrong with my deployment or Axis ?

2006-06-21 Thread maxim
Hello, I am trying to understand what is wrong with my deployment. It seems like my service is getting requests , but processing them with wrong java methods. I've seen it before and its disappeared after I've changed the order of operations in the binding section of my WSDL, but after I've

[axis2] axis not able to resolve wsdl schema http ref

2006-06-21 Thread Anamitra . Bhattacharyya
Hi I am deploying my service by creating a aar file and that has both the wsdl and the services.xml in it. I am using the RawXMLINOutMessageReceiver and my wsdl contains a http ref to the schema and it give the error below. But if the schema file is included this works fine. Any pointers to

Re: problem with two methods in service

2006-06-21 Thread Martin Gainty
Stefan- Are you attempting to execute 2 tasks asynchronously? If so why not break the design into 2 separate Axis services .. in this way each service request and response invocation can execute independently.. Viel Gluck, Martin --

Re: problem with two methods in service

2006-06-21 Thread Stefan Kuhn
Hi, as I just found out it seems the problem is the mixture of rpc and message style. The line generated in server-config.wsdd looks like this: service name=NMRShiftDB provider=java:MSG use=literal and this gives problems with method returning a string. I either need to define them as two

RE: https --- web service

2006-06-21 Thread Ben Ethridge
This is quite involved, and was a bit tough to set up, as it doesnt seem to be well-documented as to whats actually required and what isnt...or maybe there are just so many different ways to do it that its hard to see the forest for the trees. In any case, a good place to start is here:

Re: problem with two methods in service

2006-06-21 Thread Jeff Greif
If you have a message service, it is treated as having only one operation. (The Axis user guide or FAQ explains this.) You could make the invoked method dispatch to the various desired operations. If you have you have a service with two ports, it should probably have two distinct address URLs

Re: something is wrong with my deployment or Axis ?

2006-06-21 Thread Anne Thomas Manes
Validation of your WSDL using Cape Clear SOA Editor produces the following errors:- There is no schema component of the name [pbrns:PBRclient] defined in the WSDL either via imported or embedded schema.- There is no type [{ http://www.lambdastation.org/datatypes/pbrclients/}PBRclient] defined for

RE: something is wrong with my deployment or Axis ?

2006-06-21 Thread maxim
Thanks for prompt reply, Anne, Of course those types exists in the locally located schema files. Thanks for noticing SOAP encoding in the soap:body. But, I dont think its related. The problem is that in generated WSDD file there is line: parameter name="allowedMethods"

org.apache.xml.xml_soap.MapItem missing in Axis 1.4?

2006-06-21 Thread Xingshan He
Hi, I am trying to upgrade from Axis 1.3 to Axis 1.4. I have a java class that returns a HashMap to my client, which used to work in 1.3. In 1.4, it gets the following error: [javac] C:\Paraclete\generated\axis\org\apache\xml\xml_soap\MapItem_Helper.java:13: cannot find symbol [javac]

[Axis 2.0] Creating Web Services.

2006-06-21 Thread iahmed
Seems like there are only two ways to create WS using Axis. - using Axis APIs - WSDL Why not relax the conditions so that any Java class with public methods (without using Axis APIs) can be exposed as a web service and the JAva to WSDL is done automatically! Thanks,

Re: A concrete axis + ssl client example.

2006-06-21 Thread ip vp
Hey Subir, Thanks for your response. Can you provide a sample code ? regards, IPVP From: Sai Arunachalam [EMAIL PROTECTED] Reply-To: axis-user@ws.apache.org To: axis-user@ws.apache.org Subject: Re: A concrete axis + ssl client example. Date: Mon, 19 Jun 2006 13:31:06 +0530 Hey Subir,

I am still getting the IllegalStateException in the test client

2006-06-21 Thread Jim Bender
I have been working through issues with building the jar file to deploy to Tomcat. I am able to run, with classpath issues solved (seemingly). I am getting an IllegalStateException, again, from the test client, when trying to execute the web service deployed to Embedded Tomcat. Points

Re: something is wrong with my deployment or Axis ?

2006-06-21 Thread Anne Thomas Manes
It doesn't matter that the types exist in the locates schema files -- the problem is that you aren't importing/including them properly. See my quick observations.AnneOn 6/21/06, maxim [EMAIL PROTECTED] wrote: Thanks for prompt reply, Anne, Of course those types exists in the locally located

Re: something is wrong with my deployment or Axis ?

2006-06-21 Thread Anne Thomas Manes
Also, the namespace attribute can cause this type of problem -- the namespace attribute overrides the schema target namespace and changes the QName of the child element of the SOAP Body. That QName is what Axis uses to dispatch requests. I'm really surprised that shifting the parameters around

Dynamic Proxy

2006-06-21 Thread Ted Jones
Can someone please point me to some example code for a dynamic proxy in Axis2? I have a wsdl url and just want to set the operation and parameters via code. Thanks, Ted Jones

More stack on IllegalStateException at runtime

2006-06-21 Thread Jim Bender
I looked down the Eclipse console and saw this, which is relevant to the problem: Caused by: java.lang.IllegalStateException at org.apache.xmlbeans.impl.store.Jsr173$XMLStreamReaderForString.next(Jsr173.java:1110) at

Re: Need help on Axis2SampleDocLitService sample!!!!

2006-06-21 Thread Gary Yue
Hi, i also tried the latest nightly built, but that didn't help. Has anyone tried this sample and have gotten it to work? Any idea what i might have missed? (i tried both adb and xmlbeans databinding. None of them works) thanks gary --- Gary Yue [EMAIL PROTECTED] wrote: Hi, I am trying

[Axis2]getting username and password

2006-06-21 Thread Andrew B
Hi,Does anyone know how to get the username and password that were set on the client stub, in the service implementation class? This is another thing that was easy in Axis 1 but so far seems to be impossible in Axis 2. I need them to do authentication.Thanks,Andrew B Want to be your own boss?

Re: Dynamic Proxy

2006-06-21 Thread Martin Gainty
Good Evening Ted- If you already have the WSDL then you can run the Java2WSDL utility to generate the required stubs e.g. org.apache.axis.wsdl.WSDL2Java Whatever.wsdl HTH,Martin *This email message and any files

[axis2] Anyone know tricks on NoClassDefFoundError -- commons/logging/LogFactory ?

2006-06-21 Thread robert lazarski
Hi all, I've been googling all day and I'm stuck. I'm trying to run a junit test case in eclipse 3.1 calling an axis2 web service running in jboss, and axis2 depends on HttpClient. I get this stack trace: java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at

Re: [Axis 2.0] Creating Web Services.

2006-06-21 Thread robert lazarski
Here's a POJO example which may be what you're looking for: http://www.wso2.net/kb/90 HTH, Robert http://www.braziloutsource.com/ On 6/21/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Seems like there are only two ways to create WS using Axis. - using Axis APIs - WSDL Why not relax the

RE: Need help on Axis2SampleDocLitService sample!!!!

2006-06-21 Thread Ahmed, Zahid
Looks like DocLit is broken on client-side? -Original Message- From: Gary Yue [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 21, 2006 3:19 PM To: axis-user@ws.apache.org Subject: Re: Need help on Axis2SampleDocLitService sample Hi, i also tried the latest nightly built, but that

Recall: Need help on Axis2SampleDocLitService sample!!!!

2006-06-21 Thread Ahmed, Zahid
Ahmed, Zahid would like to recall the message, Need help on Axis2SampleDocLitService sample. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

AXIS ex: java.io.WinNTFileSystem.createFileExclusively

2006-06-21 Thread ABOU LINA
hi,i m using axis 1.4.i can send message wiithout attach.Message with attach, i m trying to send a file (a small file 30Kb) from windows professional 2000 to another pc windows XP. i got this message (sorry but a part of the message is french message) : java.lang.RuntimeException:

question about WSDL2Java and attachments

2006-06-21 Thread Tomas Molina
Hello all, I have setup a c++ webservice in which I obtain a WSDL and run it through WSDL2Java to generate the necessary stub files for dealing with DIME attachments. I have found that when I try to receive the attachment back, at run time I get Error: java.lang.ClassCastException:

Re: [axis2] UserExceptions and WSDL

2006-06-21 Thread robert lazarski
I'll try and help, though I'm not a fan of faults. Typically I use error codes and put the stack trace as a string. That's reflected in the following WSDL, which also for demonstration defines a fault: ?xml version=1.0 encoding=UTF-8? definitions name=SimpleService

RE: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?

2006-06-21 Thread Derek
Thanks for the suggestion, Robert. I tried downloading the June 21 nightly build of Axis, and that version of WSDL2Java did produce the same skeleton files for me that it did for you (the ones taking an XmlObject parameter, rather than OMObject as I was getting with the 1.0 release). I then

Re: [axis2] Anyone know tricks on NoClassDefFoundError -- commons/logging/LogFactory ?

2006-06-21 Thread Jim Bender
Robert, I suppose that you have tried adding to the run configuration for the test? You probably know all this and tried it already, but here goes. Forgive me for being redundant and obvious. On one TestNG test I have for the end-to-end building of the web service and testing with Embedded

Re: [Axis2] Why do I get service skeletons taking OMElement, and uncompilable code?

2006-06-21 Thread Davanum Srinivas
Yes, Please log a JIRA bug. thanks, dims On 6/21/06, Derek [EMAIL PROTECTED] wrote: Thanks for the suggestion, Robert. I tried downloading the June 21 nightly build of Axis, and that version of WSDL2Java did produce the same skeleton files for me that it did for you (the ones taking an

Re: AXIS ex: java.io.WinNTFileSystem.createFileExclusively

2006-06-21 Thread Davanum Srinivas
Please make sure the TEMP / TMP environment variable is set to some directory that the process has write access to. See if that helps. -- dims On 6/21/06, ABOU LINA [EMAIL PROTECTED] wrote: hi, i m using axis 1.4. i can send message wiithout attach. Message with attach, i m trying to send a

Could I get the client IP address in service or Handler class ?

2006-06-21 Thread 蘇 軼(CEC)
hi all, Could I get the client IP address in service class? or Handler's invoke() method ? Any help or web resources would be greatly appreciated ! Regards, - sukie - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [Axis 2.0] Creating Web Services.

2006-06-21 Thread Kinichiro Inoguchi
Hi, How about JWS (Java Web Service) Files - Instant Deployment ? http://ws.apache.org/axis/java/user-guide.html#PublishingWebServicesWithAxis Regards, kinichiro __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around

Re: Importing external schema in WSDL

2006-06-21 Thread Deepal Jayasinghe
Hi Carlos; I am sorry for late reply . I think this is a bug in either Axis2 or XMLSchema so it is better if you can create a JIRA. Carlos A. Perez wrote: Hi, I am attaching you the services.xml and the WSDL with the reference to the external schemas. I removed the external references and made

Re: WSDL file generation

2006-06-21 Thread Deepal Jayasinghe
Hi Jim pls see my comments below; Jim Bender wrote: It appears that the Axis2 Std 1.0 WSDL file generation from a Java interface is hard-wired to set the elementFormDefault to unqualified. By not setting // java2WsdlBuilder.setSchemaTargetNamespace(); //

Re: [Axis2] stop reporting wsdl

2006-06-21 Thread Deepal Jayasinghe
Lets add that as a feature into Axis2 next release , I mean a way to tell the Axis2 not to expose a wsdl for a given service. Why dont you create a JIRA ?:) Bram Biesbrouck wrote: Thanks. Is there any other way the (perhaps autogenerated) wsdl file can be extracted from a service? b.

Re: [AXIS2] WS-Addressing HTTP-SMTP problem!

2006-06-21 Thread Deepal Jayasinghe
Hi Dubey; There was a problem in Axis2 and we have fixed it now , any possibility of using Axis2 nightly builds ? Dharmendra Dubey wrote: Hi, I am trying to build a request-response soap service that will take a request on HTTP but would respond on SMTP (Using WS-Addressing). I am using the

Re: [Axis2] obtaining the service class through factory ?

2006-06-21 Thread Deepal Jayasinghe
Axis2 current implementation only support default constructor case , and you have a workaround; - You have to write your own message receiver and use that as your message receiver for your service - And once the message receiver get the request or when it create service impl class , you can create

Re: [Axis2]How to process SOAP header in service class? or handler class?

2006-06-21 Thread Deepal Jayasinghe
hi Sukie; Sorry for late reply; From the operationContext you can get the corresponding AxisOperation and name of the axis operation will be the method name that the client is trying to invoke. 蘇 軼(CEC) wrote: hi deepal, Thank you very much for your help and sorry for late reply. I have

Re: [Axis2] Handler issue

2006-06-21 Thread Deepal Jayasinghe
Hi Michele; pls see my comments below; Michele Mazzucco wrote: Hi all, sorry for flooding you with all these messages. Could be a possible solution to implement the handler before the dispatch phase, eventually creating the AxisService object (say, because the service is not provided here)?

Re: Axis2 dynamic undeployment

2006-06-21 Thread Deepal Jayasinghe
Hi Anamitra; Dims fixed this issue few days ago , now hot undeployment is working in Axis2 (both windows and Linux). If you can please try with Axis2 nightly builds. [EMAIL PROTECTED] wrote: Hi Deepal I am in windows xp env. So are you saying I cannot undeploy axis web services in windows? Can

Re: [Axis2] Exception in test web service

2006-06-21 Thread Deepal Jayasinghe
Hi Soactive; In oder to generate wsdl at the runtime you have to either put your wsld in side meta-inf or - Each and every operations has to use RPCMessageReceiver By changing your services.xml as following will solve the problem service name=echoheaders description This is a sample service for

Re: [axis2] Sorry we don't support methods overloading.....

2006-06-21 Thread Deepal Jayasinghe
Hi Ajay pls see my comments below Ajay Upadhyaya wrote: Hi, I'm in process of migrating from axis1.x, I was using Message style services in my application signatures were like Document method(Document in) Which I've changed to OMElement method(OMElement in).The code migration went okay,

Re: [Axis2] Raw Xml provider supports only the methods bearing the signature public OMElement lt;method-namegt;(OMElement) where the method name can be anything

2006-06-21 Thread Deepal Jayasinghe
Hi Nancy you can use string as input but you have to use RPCMessageReciver , since RawXMLMessageReceiver can not handle that nancy wrote: Hi , I have deployed a webservice 'ProcessService' using Axis2 version0.95 .It consists a method createProcess(String businessObjectId) .

Re: [Axis 2.0] Creating Web Services.

2006-06-21 Thread Deepal Jayasinghe
we do have http://www.wso2.net/kb/83 [EMAIL PROTECTED] wrote: Seems like there are only two ways to create WS using Axis. - using Axis APIs - WSDL Why not relax the conditions so that any Java class with public methods (without using Axis APIs) can be exposed as a web service and the JAva to

Re: [Axis2]How to process SOAP header in service class? or handler class?

2006-06-21 Thread 蘇 軼(CEC)
hi Deepal, Thank you very much for your help ! Regards, - sukie - Original Message - From: Deepal Jayasinghe [EMAIL PROTECTED] To: axis-user@ws.apache.org Sent: Thursday, June 22, 2006 2:01 AM Subject: Re: [Axis2]How to process SOAP header in service class? or handler class? hi

newbie question about WSDL2JAVA

2006-06-21 Thread ip vp
Hi All, Sorry if it is a very basic question, but the user guide is not clear for me. Can somebody send a step by step example about how to build a webservice client? I am using wsdl2java in eclipse but I do not know what generated classes may be used for what. I am in doubt about what

Re: [axis2] axis not able to resolve wsdl schema http ref

2006-06-21 Thread Ajith Ranabahu
hmmm.. This seems like a bug in schema resolving in ws-commons-schema. But I'm sure there were some test cases that did test the resolution of absolute references (Dan would have complained already if it was so :)) On 6/21/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi I am deploying my

Re: [Axis2] obtaining the service class through factory ?

2006-06-21 Thread Ajith Ranabahu
Hi, Anyway if you take the workaround it means that you'll be handling the scope by yourself Ajith On 6/21/06, Deepal Jayasinghe [EMAIL PROTECTED] wrote: Axis2 current implementation only support default constructor case , and you have a workaround; - You have to write your own message