RE: Help with using axis C++

2005-03-14 Thread Kon Kam King, France
Title: RE: Help with using axis C++ I need to pass a complex-type parameter from a C++ client to a soap server, for example person useruser1/user passwordpass/pass parameterparameters/parameters /person How is this done in Axis-c? I tried to use WSDL2Ws to try generating the client

RE: Help with using axis C++

2005-03-14 Thread Kon Kam King, France
Title: RE: Help with using axis C++ When I remove the type schema declaration from my WSDL, WSDL2Ws runs to completion. Is complex type allowed wih WSDL2Ws? I do see an example of a WSDL in the samples library with doclitfault. Can somebody help me? De: Kon Kam King, France Envoyé:

RE: Help with using axis C++

2005-03-14 Thread John Hawkins
I think this should work but can you send us the WSDL to try? Kon Kam King, France [EMAIL PROTECTED] 14/03/2005 18:00 Please respond to Apache AXIS C User List To Apache AXIS C User List axis-c-user@ws.apache.org cc Subject RE: Help with using axis C++ When I remove

[FYI] JAXB 2.0 - Early Draft 2

2005-03-14 Thread Toshiyuki Kimura
To: 皆様  木村です。  JAX-RPC ver 2.0と同様、J2EE 5.0の目玉の一つであるJAXB(Java Architecture for XML Binding) ver 2.0に関してです。Javaの標準 化団体であるJCPにおいて、JSR-222として仕様化が行われています。 http://www.jcp.org/en/jsr/detail?id=222  現在、Early Draft Review版のみの公開となっていますが、近日 中にEarly Draft 2版を提供する予定で作業が進められています。 仕様策定メンバの手を離れて一般に公開される前に、作成した仕様

RE: Axis, Spring and Hibernate

2005-03-14 Thread Arijit Mukherjee
If you are using hibernate-style beans (that is, collections are represented as sets/bags), you can set the option for lazy loading - in which case when you are retrieving one object, hibernate will not retrieve all the children unless asked to do so. This will reduce the time for mapping the

RE: Axis, Spring and Hibernate

2005-03-14 Thread Arijit Mukherjee
What if you persist the session factory? Opening a session during each start will mean you will have to load the hibernate config properties each time (unless ofcourse spring does something for that)...This (persisting the session factory and loading the config properties only once) improved my

How to convert Encrypted Binary Token value to a Crypto Instance?

2005-03-14 Thread anshuk pal chaudhuri
I have the encrpyted Binary Token value. I need to get the crypto instance out of it. How do I do that? Plase help me. __ Do you Yahoo!? Yahoo! Small Business - Try our new resources site! http://smallbusiness.yahoo.com/resources/

how to pass List type in soap messgae

2005-03-14 Thread Pavan Kumar Choukhada
i have to pass java.util.ArrayList type object in soap message. is it belongs to default set of object (for eg Map) which we can pass in soap message or i would need to use serializer for that. please tell me steps i need to implement in order to pass java.util.ArrayList as parameter in soap

DataHandler is referenced but not defined

2005-03-14 Thread Dovholuk, Clint
Hi there everyone... (Bueller? Bueller? Bueller?) Was this email too long or was the topic one which I *should* have been able to find on the internet? I'm just wondering if anyone could tell me why there was no feedback for this particular problem. Was the email too long? Did I break some

could not find deserializer for type

2005-03-14 Thread bohldan bohldan
Error message: org.xml.sax.SAXException: Deserializing parameter 'ldap_GetAllUsernamesReturn': could not find deserializer for type {http://localhost:8080/axis/services/GlazeService}User whats wrong what do i have to do i only want to send a Array om my object User Client:

RE: Axis, Spring and Hibernate

2005-03-14 Thread Oleg Lebedev
This looks like a Hibernate issue, so you may want to move this thread to the Hibernate forum. Some hints: - When you open a new Hibernate session you need to re-attach your cached objects to this session before using them. - Use Hibernate.initialize(Object), Session.refresh(Object), and

Handlers, GUI's and problems... (Java, Axis)

2005-03-14 Thread Dan O'Neill
Hi all, If have a system with handlers on both the server and client side. Now I was wondering is it possible to call a GUI on the client side when a certain server side handler is called? What way would I go about it? Anybody done this before or know if it is possible? Now, I don't need code,

Re: .NET and Axis

2005-03-14 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 [EMAIL PROTECTED] wrote: | I'll have more time to look at this later. . . | *Thanks - I am ready to give up and stick to my rpc/encoded service :)* ~ I am working on a testcase for the beehive project that I will later do under axis also, to

Deploy a handler with a method?

2005-03-14 Thread Dan O'Neill
Hi all again, Can I deploy a web service so that a handler is called when a method is invoked? Is it similar to the way of adding handlers to a service? Just adding it to the .wsdd? I need a handler to be invoked after a certain method is called? I'm using Java :) Many thanks all, Dan

Re: Handlers, GUI's and problems... (Java, Axis)

2005-03-14 Thread Kevin Duffey
If I understand you correctly, you want the server side to call a service on the client side? It's possible but not practical. Primarily because the server side is now suddenly a client, and has to know every client IP that is accessing it. How do you deal with proxies and dynamic IPs? You are

RE: .NET and Axis

2005-03-14 Thread Dino Chiesa
~ I am working on a testcase for the beehive project that I will later do under axis also, to show the problems that axis has with .net clients. Interesting way to look at it. Rather than showing the problems, my approach has been to document how to get them to talk nicely with each other. ~

Another basic question: faults best practices

2005-03-14 Thread Elaine Nance
TIA for your kind response: This is related to trying to get an improved wsdl. The situation is this: Trying to program to a service with well-formed in messages and not so swell out messages. This question probably implies other questions as well. Many of the out messages (responses) may

Re: WS-Security?

2005-03-14 Thread Davanum Srinivas
look at apache wss4j. -- dims On Sun, 13 Mar 2005 21:09:21 -0600, Robert Nicholson [EMAIL PROTECTED] wrote: What is the most common toolkit to implementing WS-Security like features with Axis? Specfically the ability to XMLize an X509Certificate and chain. -- Davanum Srinivas -

RE: .NET and Axis

2005-03-14 Thread Dino Chiesa
Title: .NET and Axis If you look in the deploy.wsdd that Iattached with the last mailyou should see a typeMapping for getCustomerResonse (X = Customer). Are you saying you don't get these typeMappings when you run WSDL2Java on my inquiry.wsdl? Any idea why that is? Ah, I'm sorry. When I

RE: .NET and Axis

2005-03-14 Thread Dino Chiesa
Title: .NET and Axis Mmkay, I just tried building this, with a dummy implementation for getCustomer() , and it works for me? In other words, I do not get the response you showed, but I get the response .NETis expecting. This is the actual response (cut-n-paste): soapenv:Envelope

Re: Problem after deployment of my wsdd with AdminClient

2005-03-14 Thread Axel Burwitz
Axel Burwitz wrote: Hi, certainly a beginners problem, but I can't fix it: -have Tomcat 5.0.27 -axis 1.1 -and a axis happiness page being completely happy -CLASSPATH with all settings incl the /opt/tomcat5/webapps/axis/WEB-INF/lib/xml-apis.jar:/opt/tomcat5/webapps/axis/WEB-INF/lib/xercesImpl.jar

RE: Consume EJB and Web Services

2005-03-14 Thread Mi Zhang
I can use Axis client to invoke Ejb-based Web Service and Ejb client to invoke Ejb. But what I want to do is to use one client to invoke both. -Original Message- From: fabrizio picca [mailto:[EMAIL PROTECTED] Sent: Monday, 14 March 2005 7:03 PM To: axis-user@ws.apache.org; [EMAIL

Doubts on handling exceptions in AXIS based Web Services

2005-03-14 Thread babloosony
Hi All, Say I am exposing below skeleton EJB method as web service using AXIS. public String getMethod1() { .. getMethod1.1() .. } 1. If getMethod1.1() throws some unchecked exceptions that I didnt handle in my code then how is this axis web service going to

Re: Consume EJB and Web Services

2005-03-14 Thread Anne Thomas Manes
Then I suggest you use WSIF. On Tue, 15 Mar 2005 09:21:08 +1100, Mi Zhang [EMAIL PROTECTED] wrote: I can use Axis client to invoke Ejb-based Web Service and Ejb client to invoke Ejb. But what I want to do is to use one client to invoke both. -Original Message- From: fabrizio picca

Simple array datatype as argument in rpc/literal

2005-03-14 Thread song xiaofei
Hi experts, I have a simple method which takes short[] as argument. And as I am exposing it as a webservice I found the wsdl generated by Java2WSDL (1.2 rc3)like below: import namespace=http://schemas.xmlsoap.org/soap/encoding// complexType name=ArrayOf_xsd_short sequence element

axis stubs

2005-03-14 Thread David Levy
Hi, I've been working on a project where we must generate client axis stubs for code which we maintain. This means that we generate the WSDL via java2wsdl, then generate the stubs with wsdl2java. This all works fine, but the problem is that the client stubs generated with wsdl2java adhere to a

Dynamically reconfiguring Axis at runtime?

2005-03-14 Thread Brian Abbott
Hi, I have a webservice generated from a class that has overloaded methods. However, I only want one method defination to be exposed through Axis and have only that same method be represented in the generated WSDL. What would be the best way to do this? I was thinking about dynamically removing

Re: Consume EJB and Web Services

2005-03-14 Thread fabrizio picca
I've just developed my application using an Ejb-based web service and a plain axis client. I've followed the axis user guide on the website and all went well. The only problems i had was related to the mapping of custom datatypes. But here, in this mailing list, i found all the answers! On

AXIS - Xerces Classloading Problems with WebSphere

2005-03-14 Thread babloosony
Hi All, I am trying to deploy Apache AXIS 1.2 RC2 as Web Module inside a EAR deployed using WSAD 5.1.2's WebSphere 5.0 Test Environment. Websphere 5.0 server has built with its own logging component internally for its own logging purposes and has been kept in Webphere java runtime extension