Re: Books related to Apache Axis

2005-04-06 Thread Toshiyuki Kimura
To: 皆様  木村です。  公式サイトのWikiのリンクを更新するとともに、新着 情報に「日本語対応したAxis Wikiのオープン」を追加 しておきました。 http://ws.apache.org/axis/ja/ --- Toshi [EMAIL PROTECTED] On Tue, 5 Apr 2005, Toshiyuki Kimura wrote: To: 皆様  木村です。  HTMLファイルから、日本語が使える新しいWikiに一通りの ページをインポートしました。下記URLをご確認ください。 http://wiki.apache.org/ws/ja/axis/  

Re: List of Possible Exception Messages?

2005-04-06 Thread Toshiyuki Kimura
How about 'grep -r throw new *' for the original question ? Thanks, Toshi [EMAIL PROTECTED] On Wed, 6 Apr 2005, Peter Smith wrote: how about the messages in ws-axis\java\build\classes\org\apache\axis\i18n\resource.properties? But from what I've remember of that file, the messages were a random

Need Links

2005-04-06 Thread anshuk pal chaudhuri
Please give me the useful links for the forums of XMLSecurity using xmlsec.jar (NOT using XSS4J) __ Do you Yahoo!? Yahoo! Personals - Better first dates. More second dates. http://personals.yahoo.com

Re: Null Pointer Exception

2005-04-06 Thread Virginie Legrand
Does anybody never encounter this issue ?? Virginie Legrand wrote: Hello, I use axis axis-1_2RC3 and wsdl4j in order to generate a WSDL file. Here is a sample of my code : Emitter emitter = new Emitter(); emitter.setDisallowedMethods(disallowedMethods);

Re: Null Pointer Exception

2005-04-06 Thread Venkat Reddy
Can you provide the full exception stacktrace? - venkat On Apr 6, 2005 2:39 PM, Virginie Legrand [EMAIL PROTECTED] wrote: Does anybody never encounter this issue ??Virginie Legrand wrote: Hello, I use axis axis-1_2RC3 and wsdl4j in order to generate a WSDL file. Here is a sample of my code :

RE: JAX-RPC web service in Axis, servletEndpointContext.isUserInRole(), how to map users to roles?

2005-04-06 Thread Merten Schumann
Hello, some time before I asked this question here, maybe in 2005 someone could help me out :-) I'm still having problems with these logical roles. I don't know how (where?) to map my logical roles from web.xml to physical roles. Is this a J2EE feature and not supported in Axis? Thank you!

Re: string arrays as input parameters in in doc/literal services

2005-04-06 Thread MKW
Thanks. I did that and I'm sure you are right, but it hasn't fixed the problem. I get the following: java.lang.ArrayStoreException: [Ljava.lang.String; I think there's something else that's wrong as well. Madeleine Venkat Reddy wrote: On Apr 6, 2005 5:07 AM, MKW [EMAIL PROTECTED] wrote: plus

Apache 2 - mod_jk - Tomcat5 - Apache Axis(java)

2005-04-06 Thread Yefym Dmukh
Hi guys, since some days trying to find out if it possible to connect apache with axis on tomcat . The reasons are the current architecture we use and client authentication provided by apache and also using ssl of apache and not ssl connector of tomcat. The current status :I can bind

Re: Null Pointer Exception

2005-04-06 Thread Virginie Legrand
Here is the Stack trace : Exception in thread main java.lang.NullPointerException at org.apache.axis.wsdl.fromJava.Emitter.init(Emitter.java:574) at org.apache.axis.wsdl.fromJava.Emitter.getWSDL(Emitter.java:465) at org.apache.axis.wsdl.fromJava.Emitter.emit(Emitter.java:326)

New website searches Axis source code for Java examples

2005-04-06 Thread Pete Eakle
JExamples.com is a new, free website that helps Java developers find high quality example code for virtually any Java API. JExamples uses sophisticated source analysis and a powerful search engine to find examples in well known Java open source products (e.g. Ant, Tomcat, Axis). The search

RE: Apache 2 - mod_jk - Tomcat5 - Apache Axis(java)

2005-04-06 Thread Priest, Mark
Title: Message We use the Apache jk2 connector with Tomcat and have no problem accessing Axis web services using https. We have an entry in workers2.properties as follows that accomplishes this: [uri:/axis/*]info=Prefix mapping We have the following configuration: Apache 2.0.49 jk2

Re: Null Pointer Exception

2005-04-06 Thread Venkat Reddy
try setting the TypeMappingRegistry before calling emitToString, if you can get hold of msgContext - emitter.setTypeMappingRegistry(msgContext.getTypeMappingRegistry()); - venkat On Apr 6, 2005 8:17 PM, Virginie Legrand [EMAIL PROTECTED] wrote: Here is the Stack trace : Exception in thread

RE: JAX-RPC web service in Axis, servletEndpointContext.isUserInRole(), how to map users to roles?

2005-04-06 Thread Greg_Bobak
You can map this in users.xml. See the tomcat list for details. Gregory P Bobak Keith Hatton [EMAIL PROTECTED] 04/06/2005 11:00 AM Please respond to axis-user@ws.apache.org To axis-user@ws.apache.org cc Subject RE: JAX-RPC web service in Axis,

Re: JAX-RPC web service in Axis, servletEndpointContext.isUserInRole(), how to map users to roles?

2005-04-06 Thread Brian Rook
We just made a service that uses authenticated user data. It sounds like, from your previous emails, that you did get user authentication working with your container, so your question might be directed to this group. The MessageContext object might have what you need. Check this out:

Which is a better approach to avoid polymorphism and inheritance

2005-04-06 Thread Soti, Dheeraj
Title: Which is a better approach to avoid polymorphism and inheritance Hi, I have class structure like as shown below. I am using doc/literal wrapped style and I don't want to expose concepts like polymorphism, inheritance and overloading in my service methods. There are two ways to handle

RE: Java2wsdl and interfaces

2005-04-06 Thread Oleg Lebedev
Could anyone give me some feedback on the following? -Original Message- From: Oleg Lebedev [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 3:51 PM To: axis-user@ws.apache.org Subject: Java2wsdl and interfaces Greetings. I am trying to expose my Java interface as a web service.

Re: Java2wsdl and interfaces

2005-04-06 Thread Tim K. (Gmane)
I don't think it's possible to do what you want, you need your method to return a true JavaBean class, not an interface. Think about it this way: what if IState were an argument to one of your methods (I know this is not your case)? When a client called your service how would Axis know what

help needed with Axis architecture

2005-04-06 Thread Andy Kriger
The class we have defined in server-config.wsdd with the service className does not extends SOAPService. So, somewhere under-the-hood, the SOAPEnvelope is being parsed and the SOAPAction is being dynamically invoked on our service class via reflection. I've searched through the source code, but I

RE: Re: Java2wsdl and interfaces

2005-04-06 Thread Oleg Lebedev
If Axis allowed XSDTypeToJavaClass mappings or JavaInterfaceToJavaClass mappings in addition to PackageToNamespace mappings, that would be great. This way Axis could use the specified java class when it doesn't know how to generate an xsd type for the target java interface (IState in my case).

Re: design question xsd:anyType/java Object

2005-04-06 Thread Tim K. (Gmane)
Nobody can help with a design question? :( I know there are smart people on this list, don't hold back ... Tim Tim K. (Gmane) wrote: Hello, It seems that support for xsd:anyType (java Object) is optional in JAX-RPC, though Axis supports it. What would you suggest as an alternative to a JavaBean

Generated Stubs and Thread Safe

2005-04-06 Thread gary . si . grewal
Hello, Are the generated stubs thread safe . Is 1. From invoke call stand point 2. From setting the properties Is it advisable to Re-Use the same stub Object we need to create a new one , per Thread, per Request.] Thanks and Regards, Gary Grewal This communication is for informational

Re: Generated Stubs and Thread Safe

2005-04-06 Thread Tim K. (Gmane)
I asked the same question a while back and I was told that the Stub and the Call are not thread safe, but they can be re-used from the same thread. I'm not sure about the ServiceLocator, but if you want to maintain multiple sessions for example, you need one instance of ServiceLocator per

Re: xsd:anyType with null value, deserialization problem

2005-04-06 Thread Tim K. (Gmane)
Axis Developers, Could you please comment on this? Is this a bug? Anything that I am doing wrong? Thank you. Tim Tim K. (Gmane) wrote: Hello, I have a simple JavaBean: Property { String name; Object value; } The value field maps to xsd:anyType and it works fine at run-time with all sorts of

How to Custom (De)Serilaizer in AXIS

2005-04-06 Thread babloosony
Hi All, I am using AXIS 1.2 RC2 both on server and client. Can anyone please tell me how to write a custom serializer and deserializer in axis in order to consume below soap request message from AXIS Client. My WSDL has also been included in this mail. Please redirect me to any