Re: A question about AXIS c++ project status

2006-05-22 Thread Fred Preston
Hi Yair, Axis C/C++ is still being developed and there will be a new release (1.6) available soon. There is still a nightly build that is available from the website and the code is in SVN. Regards, Fred Preston. Yair Zaslavsky [EMAIL PROTECTED] 21/05/2006 16:56 Please respond to

Re: [Axis2] Building samples in MS Visual Studio

2006-05-22 Thread Andrew Borley
Hi Sahan,Thanks for the reply. I've been putting my built dll into a directory called $AXIS2_HOME/services/EchoWebService with the dll name as EchoWebService.dll and the services.xml file containing the following: service name=EchoWebService parameter name=ServiceClass

Re: [Axis2][1.0] overwrite WSDL ?

2006-05-22 Thread Kinichiro Inoguchi
Deepal, Thanks for your answer. I understand that I can't overwrite WSDL by using RPCMessageReceiver. There are 3 ways to create web service via axis2. 1. from java code with using RPCMessageReceiver. - writing java codes and archive them with services.xml, then deploy. - data binding will be

[Axis2] WSDL Generation

2006-05-22 Thread Ingo Siebert
Hi, is it possible to generate the WSDL file from Java code? I found only a tool which creates server/client stubs from a WSDL file. Cheers, Ingo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: [Axis2] WSDL Generation

2006-05-22 Thread A A
Easily possible; deploy your java file into axis2 (version 1) repositorywith jws extension.call http://hostname/axis/yourjava.jws from your browser and here is the WSDL ! On 5/22/06, Ingo Siebert [EMAIL PROTECTED] wrote: Hi,is it possible to generate the WSDL file from Java code?I found only a

Inconsistent Array Elements

2006-05-22 Thread Stephan Fischli
Hi I have deployed a Stock Quoter Service with Axis 1.3 whose operation "getSymbols" returns an array of strings. According to the generated WSDL the array elements should be named "item". But in the SOAP response the array elements have the name "getSymbolsReturn". Does anybody have an

Re: [Axis2] WSDL Generation

2006-05-22 Thread Kinichiro Inoguchi
Ingo, With Axis2, how about using Code Generator Wizard - eclipse Plug-in. http://ws.apache.org/axis2/tools/1_0/eclipse/wsdl2java-plugin.html You can generate WSDL from java code. Or, deploying service using RPCMessageReceiver, Axis2 will generates WSDL automatically. You can see WSDL via url,

[AXIS 2] [vers 1] : does php nuSOAP understand AXIS 2 ver 1 ?

2006-05-22 Thread A A
I have developped a web service using AXIS 2 version1, everythings work fine with a jsp client and SOAPUI 1.5 but when i call the service with php nuSOAP i have this SOAP response:Array ([faultcode] = soapenv:Client[faultstring] = null; nested exception is: java.lang.NullPointerException

RE: [Axis2] Vanishing MTOM attachments

2006-05-22 Thread Timo Ahokas
Hi Thilina, The fix you did to OMTextImpl seemed to fix the problem I'm seeing, so thanks very much for that. :) The only problem is that the fix was committed to AXIS2-753 (Setting SOAP Version URI to type 1.2 creates invalid Content-Type that fails during parsing) which seems to be a different

Sax exception:Invalid element in...

2006-05-22 Thread Roy
Hello,I use axis 1.3 to call a service that is implemented in an uknown language (probably .NET but not Java). I have generated the classes with the wsdl2Java tool from the service's WSDL and i called normally the service with a static stub. In the SOAP monitor i can see the respone with the

Re: Decryption of a complex Axis2 SOAP message fails in WSS4J/XmlSec

2006-05-22 Thread Reshef Roy
Ruchith, Werner. Werner was right! I have switched off MTOM optimization in the services.xml (service-client message), and it works without problems. I did leave MTOM optimization on the client Axis2 repository configuration (client-service), this is also not a problem (the client-service

envelope prefix issue

2006-05-22 Thread Razvan Dani
Hi I am not sure if this is the right place to address this, but i'd appreciate some feedback if possible, because i already made lots of queries on the internet about this issue with no success. My problem is the following: - i am using WSDL to Java ant task to generate classes against a

Re: [Axis2] WSDL Generation

2006-05-22 Thread Ingo Siebert
Hi, the option Generate WSDL form Java source file isn't selectable(grey). Cheers, Ingo Kinichiro Inoguchi schrieb: Ingo, With Axis2, how about using Code Generator Wizard - eclipse Plug-in. http://ws.apache.org/axis2/tools/1_0/eclipse/wsdl2java-plugin.html You can generate WSDL from java

Re: [Axis2] WSDL Generation

2006-05-22 Thread Ajith Ranabahu
hi. You are probably having an old version of the plugin. Download the latest from http://ws.apache.org/axis2/tools/index.html Ajith On 5/22/06, Ingo Siebert [EMAIL PROTECTED] wrote: Hi, the option Generate WSDL form Java source file isn't selectable(grey). Cheers, Ingo Kinichiro Inoguchi

Re: [Axis2] specifying username and password

2006-05-22 Thread Kees de Kooter
This is an Axis 1 solution. There is no such object as Call in Axis2. So I repeat my question: how can you specify username and password with Axis2?? On 5/3/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On 5/3/06, Kees de Kooter [EMAIL PROTECTED] wrote: In Axis 1 I specified

Re: Decryption of a complex Axis2 SOAP message fails in WSS4J/XmlSec

2006-05-22 Thread Ruchith Fernando
Hi Roy, Thanks a lot for the feedback ... seems like a bug in MTOM with _large_ base64 text. I'm trying to reproduce your scenario ... I just checked the security sample with the similar configuration (added wsa headers as parts to be signed) and it worked with out a problem _with_ MTOM

Re: Schema validation

2006-05-22 Thread Martin Gainty
Good Morning Ken Who(m)ever is supplying the WSDL to you is responsible for specifying request and response for all methods along with specifying parameters to those methods. Who(m)ever is changing the schema needs to re-gen and re-publish the WSDL A situation arose where my webservice is now

Re: envelope prefix issue

2006-05-22 Thread Anne Thomas Manes
Axis does not provide this type of configuration option. Either construct the message programmatically using JAXP or insert an intermediary into your message path to transform the message. Anne On 5/22/06, Razvan Dani [EMAIL PROTECTED] wrote: HiI am not sure if this is the right place to address

Re: envelope prefix issue

2006-05-22 Thread Anne Thomas Manes
Or -- customize Axis. On 5/22/06, Anne Thomas Manes [EMAIL PROTECTED] wrote: Axis does not provide this type of configuration option. Either construct the message programmatically using JAXP or insert an intermediary into your message path to transform the message. Anne On 5/22/06, Razvan Dani

Re: Schema validation

2006-05-22 Thread Anne Thomas Manes
Ken,I agree with Martin -- your service provider should supply you with a new WSDL. Have you tried just doing a GET on the service URL appended with ?wsdl?. In the meantime, you can use a handler to validate the message. Java provides native support for validation in the javax.xml.validation

Re: [Axis2] Server did not recognize the value of HTTP Header SOAPAction

2006-05-22 Thread Deepal Jayasinghe
Kees de Kooter wrote: How can I set the SOAPAction?? option.setAction(soapaction); This is the stacktrace: org.apache.axis2.AxisFault: Server did not recognize the value of HTTP Header SOAPAction: . at

Re: [Axis2] WSDL Generation

2006-05-22 Thread Ingo Siebert
Hi, i've installed 1.2 (1.1 before) and it's not grey anymore. But if i select it and press next, nothing happens (Eclipse 3.1.2). Ingo Ajith Ranabahu schrieb: hi. You are probably having an old version of the plugin. Download the latest from http://ws.apache.org/axis2/tools/index.html

Re: [Axis2] Server did not recognize the value of HTTP Header SOAPAction

2006-05-22 Thread Anne Thomas Manes
options.setActionOn 5/22/06, Kees de Kooter [EMAIL PROTECTED] wrote: How can I set the SOAPAction??This is the stacktrace:org.apache.axis2.AxisFault: Server did not recognize the value of HTTPHeader SOAPAction: .at org.apache.axis2.description.OutInAxisOperationClient.execute

Re: Sax exception:Invalid element in...

2006-05-22 Thread Anne Thomas Manes
Compare the return message to the expected schema as defined by the WSDL. It's likely that the service is returning a message that doesn't conform to the schema. If so, you should report the error to the service provider. If they won't fix the error, then you may need to modify the WSDL so that it

Re: [Axis2] Server did not recognize the value of HTTP Header SOAPAction

2006-05-22 Thread Anne Thomas Manes
The SOAPAction value is a URI. The WSDL should specify the required SOAPAction value. AnneOn 5/22/06, Kees de Kooter [EMAIL PROTECTED] wrote:Thanks Deepal,That works. What kind of value is expected anyway? On 5/22/06, Deepal Jayasinghe [EMAIL PROTECTED] wrote: Kees de Kooter wrote: How can I set

Re: Inconsistent Array Elements

2006-05-22 Thread Anne Thomas Manes
It's a bug. Upgrade to Axis 1.4.On 5/22/06, Stephan Fischli [EMAIL PROTECTED] wrote: Hi I have deployed a Stock Quoter Service with Axis 1.3 whose operation getSymbols returns an array of strings. According to the generated WSDL the array elements should be named item. But in the SOAP response

Re: [AXIS 2] [vers 1] : does php nuSOAP understand AXIS 2 ver 1 ?

2006-05-22 Thread Anne Thomas Manes
Try capturing the input message and comparing it to input messages submitted by your jsp client. See what's different.AnneOn 5/22/06, A A [EMAIL PROTECTED] wrote:I have developped a web service using AXIS 2 version1, everythings work fine with a jsp client and SOAPUI 1.5 but when i call the

Re: [Axis2] [1.0] RPC primitive types

2006-05-22 Thread Anne Thomas Manes
Axis2 does not yet support automatic unwrapping of parameters (e.g., wrapped doc/literal).Wait for the next release. In the meantime, you must wrap your parameters into a bean.Anne On 5/21/06, Ahmed Ashour [EMAIL PROTECTED] wrote: Dear Martin,Thanks for your feedback.However, I am asking

Re: [Axis2] Server did not recognize the value of HTTP Header SOAPAction

2006-05-22 Thread Kees de Kooter
Thanks Anne! On 5/22/06, Anne Thomas Manes [EMAIL PROTECTED] wrote: The SOAPAction value is a URI. The WSDL should specify the required SOAPAction value. Anne - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Migrating to Axis 2

2006-05-22 Thread Anne Thomas Manes
No -- you just have to use a bean to wrap your parameters. AnneOn 5/20/06, Scott McCoy [EMAIL PROTECTED] wrote: I see, so I'm basically married to axis 1.3 for the time being. - ScottOn 5/20/06, Anne Thomas Manes [EMAIL PROTECTED] wrote:Axis 2 does not yet support automatic unwrapping of wrapped

Re: [Axis2] specifying username and password

2006-05-22 Thread Kees de Kooter
Found it: HttpTransportProperties.BasicAuthentication basicAuthentication = new HttpTransportProperties(). new BasicAuthentication(); basicAuthentication.setUsername(userName); basicAuthentication.setPassword(password);

Re: Sax exception:Invalid element in...

2006-05-22 Thread Roy
Thank you for your fast response.I compared the wsdl to the returned message and it seems ok(I checked the response objects and have the same names and structures to the ones i get in the response). Is there any other way to check the response i should get ? Can i use a custom deserialiser for the

[Axis2] directories and the files generated ???

2006-05-22 Thread Mérième N
Hi,Do you have any guidelines or documents, which explain what are the directories and the files generated by WSDL2Java tool provided by Axis2 and their use?Thanking you in advance.Regards,Merieme

Re: [Axis2][1.0] Transport error 500 for EchoBlockingDualClient echoF

2006-05-22 Thread Ali Sadik Kumlali
Hi Deepal, Thanks for the reply. I had already created a JIRA issue: http://issues.apache.org/jira/browse/AXIS2-741 Regards, Ali Sadik Kumlali --- Deepal Jayasinghe [EMAIL PROTECTED] wrote: create a JIRA Ali Sadik Kumlali wrote: Hi all, When I use EchoBlockingDualClient to invoke

Re: Client Repository

2006-05-22 Thread Eran Chinthaka
Lakshmi Chaparala wrote: Hi, We are using axis2.1.0. Does this version still need client repository specified ? ServiceClient client = new ServiceClient(configcontext, null); Nope, you can call, ServiceClient client = new ServiceClient(); -- EC Lakshmi

Re: [Axis2][1.0] fireAndDontForget ??

2006-05-22 Thread Ali Sadik Kumlali
Hi Deepal, Thank you for spending your time with my problem. Should I open a JIRA for this? Regards, Ali Sadik Kumlali --- Deepal Jayasinghe [EMAIL PROTECTED] wrote: Hi Ali Ali Sadik Kumlali wrote: Hi all, What I want is: - Make a request to a service which uses

Re: [Axis2] WSDL Generation

2006-05-22 Thread Ajith Ranabahu
hmmm.. I guess this is probably related to the fact that you had the previous version of the plugin installed. Try doing this goto the .metadata - .plugins folder and find the folder relevant to the plugin (Axis2_Codegen_Wizard) and delete it. this erases the settings related to the earlier

[Axis2] WSDL Generation from Java (Java2WSDL

2006-05-22 Thread Hansen, Geir
In Axis 1.x there was a tool Java2Wsdl. I downloaded the Axis2 1.0 release and the IntelliJ IDEA plugin, but cannot find the same tool in there, only WSDL2Java. Is this tool available in some way? Geir Hansen - To unsubscribe,

Re: envelope prefix issue

2006-05-22 Thread Razvan Dani
Hi Anne Thank you for your suggestions. However as a person that only found Axis few days ago, i am not sure how would i go about inserting and intermediary into my message path to transform the message (i.e. replace occurences of soapenv with soap-env). I would appreciate a lot if could

some question

2006-05-22 Thread eL. Bi.
Hi, i create a system of authentication with client/side structure, i want to deploy it as Web Service, so i choose Axix + Tomcat to do it. I have some questions: A) i have my own class that construct SOAP messages, so it is possible to disable in the wsdll file the serialization and

Re: envelope prefix issue

2006-05-22 Thread Davanum Srinivas
easier would be to edit axiom source (http://svn.apache.org/repos/asf/webservices/commons/trunk/modules/axiom/src/org/apache/axiom/soap/SOAPConstants.java) and build a jar for your own use. -- dims On 5/22/06, Razvan Dani [EMAIL PROTECTED] wrote: Hi Anne Thank you for your suggestions.

Re: [Axis2] WSDL Generation

2006-05-22 Thread Ingo Siebert
Thank you, i deleted the dir and the wizard starts now. I've get at the end of the wizard an TargetInvocationException, but my app build process isn't complete so it's possible that's why it isn't working. But the classpath-check was successful... Cheers, Ingo Ajith Ranabahu schrieb:

Re: envelope prefix issue

2006-05-22 Thread Razvan Dani
Hi thank you for your suggestion. if i reach desperation i will certainly customize axis for my own use, but i'd certainly like to stick to the standard axis if at all possible. otherwise when i want to switch to a new version of axis latter on, i would be loosing by custom changes. what i

XML Non-English Character Support

2006-05-22 Thread Recep Ayaz
Hello,Does anyone know how I can add Non-English character support to my Axis web services? Should I add the encoding information to my wsdd file or somethig else?Appreciate on help.Thanks.

Location of SAAJUtil?

2006-05-22 Thread Daniel Jemiolo
Hi, Which jar file is the org.apache.axis2.saaj.util package in? I'm trying to compile a project that uses SAAJUtil and can't find the class in any of the $AXIS2_WAR/WEB-INF/lib or $STANDARD_DISTRIBUTION/lib archives. I see the code in SVN, I'm just not sure where it's packaged. Thanks, Dan

Re: Inconsistent Array Elements

2006-05-22 Thread Stephan Fischli
Dear Anne Thank you for the quick answer. I migrated my server installation to Axis 1.4 but unfortunately the problem remains. Regards, Stephan View this message in context: Re: Inconsistent Array Elements Sent from the Axis - User forum at Nabble.com.

Re: envelope prefix issue

2006-05-22 Thread Xinjun Chen
Hi Razvan, What I can think of is to insert a Handler in the request flow. Inside the Handler, you can modify the message. If you are using Axis2, you can write a module or a handler to do that. I believe this will be much easier than customize Axis or Axis2. Axis gurus, please correct me if I

AXIS 1.2 and SOA

2006-05-22 Thread Jayaraman, Venkatesh
Is axis 1.2 considered as SOA? Move AXIS2 to make remove JAX-RPC and become SOA compliant? -Venky

Re: envelope prefix issue

2006-05-22 Thread Razvan Dani
Hi Xinjun Thank you very much for your useful intervention. Could either you or otherwise another Axis guru maybe present me a brief example of how a Handler can be inserted in the request flow (which translates into: i don't know how that could be done). Again i would like to remind that

Axis 2 V 1.0

2006-05-22 Thread Christian Strobel
Hi, - error descriptionUnable to generate WSDL for this service/description reasonEither user has not dropped the wsdl into META-INF or operations use message receivers other than RPC./reason /error Get every time this error message! Doesn't matter if I use the give examples or my own

Release 1.0 How to disable MTOM

2006-05-22 Thread Laurent CELLA
Hi Dear Axis Users. I Have tested the sample given in AXIS 2 rel 1.0 : MTOMService / imagetransfer - the client let us select a file, name it and post to the server. - the server is a MTOM implementation. It works perfectly. So, I modified a bit the Server Sample to handles in SOAP with

Re: envelope prefix issue

2006-05-22 Thread robert lazarski
Not sure which axis version you are using, but both axis 1.x and axis2 show a simple LogHandler in their respective user guides. That would be a good place to start. Also, the axis2 migration guide shows an Axis 1.x handler and how to migrate that to Axis2. HTH, Robert

Re: Release 1.0 How to disable MTOM

2006-05-22 Thread Thilina Gunarathne
See my comments below... On 5/22/06, Laurent CELLA [EMAIL PROTECTED] wrote: This sample is supposed to return us an instance of class Attachmentslinking to attachments retrieved on mime. The result is null.When i log the OMElement received by the method, it looks like it is theMTOM way( my

Re: Axis 2 V 1.0

2006-05-22 Thread robert lazarski
The issue is that you can only get the wsdl to display under two scenarios: 1) You are using RPC, such as RPCInOutMessageReceiver, as your message receiver in your services.xml . 2) You have your own WSDL that you use for databinding, and you put it under the META-INF directory in your war.

show a method return in xml response

2006-05-22 Thread Gabriel Moura
hi, i am brazilian student and speak english very well. :D my doubt is: i want show only xxxReturn in the aplication.. my client is generated by wsdl2.. i obtain xml response using: --- java.io.ByteArrayOutputStream baos = new

Re: AXIS 1.2 and SOA

2006-05-22 Thread Anne Thomas Manes
I don't think the term SOA-compliant applies to a development tool. Both Axis1 and Axis2 are tools that you can use to implement services, but that doesn't make them SOA-compliant.SOA is a style of design in which the fundamental unit of design is a service. An application system is SOA-compliant

Re: AXIS 1.2 and SOA

2006-05-22 Thread Ravi Krishnamurthy
Anne: Could you suggest any good articles on SOA. Thanks, Ravi Anne Thomas Manes wrote: I don't think the term SOA-compliant applies to a development tool. Both Axis1 and Axis2 are tools that you can use to implement services, but that doesn't make them SOA-compliant. SOA is a style of

Passing XML Best Practice

2006-05-22 Thread Hoda Nadeem
When dealing with raw xml data that needs to be passed through web services (the XML schemas are complicated and big enough that we are not including the types in the WSDL explicitly), is it better to: a. Pass the XML in a doc-literal web service through a string or b. Use SOAP with

Re: Adding Digital Signatures to all outgoing SOAP envelopes

2006-05-22 Thread Ali Sadik Kumlali
Hi Jeffrey, Followings are the first steps that come to my mind: 1) Find yourself a tool that ease your work. portecle[1] is my favorite. Other tools such as OpenSSL[2] and keytool[3] are very popular, though. 2) You need to create a keystore file for both client and the server. Later you will

Axis2 and WS Security

2006-05-22 Thread sagar kar
I am doing a proof of concept on WS-Security. We use websphere appserver v 6.0 to develop our webservices. RAD 6.0 supports the WS-Security 1.0. I was able to create a secured webservice on RAD 6.0. I can also use a RAD web client to send and receive messages from the secured webservice. Now my

Re: Axis2 and WS Security

2006-05-22 Thread Anne Thomas Manes
Use WSDL2Java to generate the client stub and use the Rampart module to secure it.AnneOn 5/22/06, sagar kar [EMAIL PROTECTED] wrote:I am doing a proof of concept on WS-Security. We use websphere appserver v 6.0 to develop our webservices.RAD 6.0 supports the WS-Security 1.0.I was able to create a

Re: show a method return in xml response

2006-05-22 Thread robert lazarski
Assuming you have a 'xxxReturn' as a node in your soap message - take a look at tcpmon or the soap applet, etc, if you need to... I think what you want is to get a node and show just that - I think axis 1.x allows you to get the Document from Message Context directly, but anyways:

Re: Passing XML Best Practice

2006-05-22 Thread Anne Thomas Manes
Why don't you import the schema into the WSDL?It's always better to pass the XML within the SOAP envelope than to send it as a string or as an attachment.AnneOn 5/22/06, Hoda Nadeem [EMAIL PROTECTED] wrote: When dealing with raw xml data that needs to be passed through web services (the

Re: Axis2 and WS Security

2006-05-22 Thread Ali Sadik Kumlali
Hi Sagar, You may start from the security sample that comes with axis2 distribution. Then, you may create the stub of the secure service by using WSDL2Java. Using client_repo folder as found in security sample along with your stub will let you do what you want. Regards, Ali Sadik Kumlali ---

Re: AXIS 1.2 and SOA

2006-05-22 Thread Ravi Krishnamurthy
Thanks Anne. Anne Thomas Manes wrote: See http://www.google.com/search?q=soa+design+practices On 5/22/06, Ravi Krishnamurthy [EMAIL PROTECTED] wrote: Anne: Could you suggest any good articles on SOA. Thanks, Ravi Anne Thomas Manes wrote: I don't think the term

Re: Passing XML Best Practice

2006-05-22 Thread Muthana A.
Hallo Hoda, you can use both of them but the better is the first (a) Regards Muthana Al-Temimi M.Sc.in Information and Communication Systems Hamburg Germany Original-Nachricht Betreff: Passing XML Best Practice Datum: Mon, 22 May 2006 16:35:35 -0400 Von: Hoda Nadeem [EMAIL

RE: Passing XML Best Practice

2006-05-22 Thread Hoda Nadeem
Good suggestion, but unfortunately, the schema, and the schemas it depends on make it impractical to include in the WSDL. It took XMLBeans 15+ mins and modification (to the schema) to generate the data binding jars. So, for the sake of sanity, and handling the XML cleanly, we decided it

Re: Passing XML Best Practice

2006-05-22 Thread Anne Thomas Manes
Then I suggest using the Messaging API (Axis1) or the RawXMLMessageProvider (Axis2) and don't attempt to bind the schema to Java objects. But it's still better to send the XML within the SOAP envelope. On 5/22/06, Hoda Nadeem [EMAIL PROTECTED] wrote: Good suggestion, but unfortunately, the

RE: Passing XML Best Practice

2006-05-22 Thread Hoda Nadeem
Anne, thanks for the suggestion. Both yourself and Muthana suggested sending XML in the SOAP body instead of SOAP with attachments. Is there a reason for this preference? Thanks for the help. Nadeem From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 4:57

Re: show a method return in xml response

2006-05-22 Thread Gabriel Moura
well, I am beginning and I did not understand very well. you can detail as you show the result? for example, System.out.println(). I want to show in my java aplication for example, only: helloReturn xsi:type=xsd:stringHELLO TESTING/helloReturn thanks! -- View this message in

web services client threads choking app server

2006-05-22 Thread E Zaffar
Hi, We consume a web service using axis 1.1. Whenever the webservice goes down or is slow to respond, it appears like our appservers keep creating new threads for subsequent requests and the web service client thread is never released as the service is not responding. This causes the web

javax.xml.rpc.service

2006-05-22 Thread tom mccarthy
I am writing an applet which accesses a web client to send information to a web service. However, I am getting the following exception: java.lang.NoClassDefFoundError: javax/xml/rpc/Service I believe I have all of the axis jars in my classpath and the application compiles correctly, so this

Define Axis Services in Runtime

2006-05-22 Thread Duncan Krebs
Hi, As of now I have been declaring my axis webservices in a servlet container via server-config.wsdd in the WEB-INF folder. However ideally I want to be able to declare services in runtime during startup. Does anyone know what API I can use to do this? I'm hoping its not that hard. Sneak

RE: Adding Digital Signatures to all outgoing SOAP envelopes

2006-05-22 Thread Scudder, Jeffrey W
Thank you very much -Jeff -Original Message- From: Ali Sadik Kumlali [mailto:[EMAIL PROTECTED] Sent: Monday, May 22, 2006 1:37 PM To: axis-user@ws.apache.org Subject: Re: Adding Digital Signatures to all outgoing SOAP envelopes Hi Jeffrey, Followings are the first steps that come to

Re: javax.xml.rpc.service

2006-05-22 Thread tom mccarthy
nevermind. I hadn't realized I needed to add the axis jar files to my servlet lib directory. tom mccarthy wrote: I am writing an applet which accesses a web client to send information to a web service. However, I am getting the following exception: java.lang.NoClassDefFoundError:

Re: Passing XML Best Practice

2006-05-22 Thread Anne Thomas Manes
Attachments are problematic if you need cross-platform interoperability. Encoding the document as a string can also be problematic if you have embedded or characters in the XML content or if you have encoded characters, e.g., gt; in the content or if you have CDATA in the document.Also if you

doc literal web service?

2006-05-22 Thread Suavi Ali Demir
hello,i am newbie. I have some code that generates xml. i want to make this xml available as a web service in doc literal fashion. would using axis help me do this? what would i have to do with axis to get this done? do i implement a handler? or what else? does axis have a way such that i

Re: envelope prefix issue

2006-05-22 Thread Dies Koper
Hello Razvan, I have not looked at the user guides Robert pointed out to you, but I previously posted the following about registering handlers: Refer to the JAX-RPC1.1 spec to see how to use a client handler in a portable way. I believe it goes something like this: sf =

Re: Possible to configure a module using services.xml for a client stub

2006-05-22 Thread Ruchith Fernando
Hi Kent, Thanks for the reply. So, it means it's got to be a global thing? For example, one can't encrypt the out message of an operation while just sign the out message of another operation? You can actually do this using the following :

Axis 2 V 1.0 Another Problem

2006-05-22 Thread Christian Strobel
log4j:WARN No appenders could be found for logger (org.apache.axiom.om.impl.builder.StAXOMBuilder). log4j:WARN Please initialize the log4j system properly. I get every time this warning. I found different suggestions to solve that problem, but nothing realy works.

Newbie Question MessageElement

2006-05-22 Thread O'Reilly, Barry
Hi Axis, I'm trying to write a call and need to add a message element part to my message but am unsure of how to achieve this. Can someone point me in the right direction. I do not know how to get a handle on the SOAPEvenlope or even if I require to. I use WSDL2Java to generate