Re: Books related to Apache Axis

2005-04-05 Thread Toshiyuki Kimura
To: 皆様  木村です。  HTMLファイルから、日本語が使える新しいWikiに一通りの ページをインポートしました。下記URLをご確認ください。 http://wiki.apache.org/ws/ja/axis/  もし、リンク切れやおかしな箇所があればご連絡ください。 ちょっとした修正であれば、アカウントを登録して頂いて、 ご自身で対応して頂いても構いません。 よろしくお願いします。 --- Toshi [EMAIL PROTECTED] On Thu, 31 Mar 2005, Toshiyuki Kimura wrote: To: 皆様  木村です。  

How does one extract the key (say Symmetric Key) from the Key Info?

2005-04-05 Thread anshuk pal chaudhuri
How does one extract the value of the symmetric key from the KeyInfo Element from the Encrypted XML Document? That I am trying to use In XML Decryption. And i am trying to do that using XML Security APIS. Looking forward for ur reply. __ Do you

Re: what is the different between org.apache.axis.hander.Handler and javax.xml.rpc.handler.Handler ?

2005-04-05 Thread Venkat Reddy
The javax.xml.rpc.handler.Handler is provided for compatibilty with JAX-RPC programming model. The org.apache.axis.handler.Handler is the central piece in Axis arctitecutre for message processing. Naturally the same is used for message handlers. It is recommended to use

Re: gSOAP 2.7 (client)- Axis Java 1.2rc3 Interoperability problem

2005-04-05 Thread Venkat Reddy
But, doesn't the operation defintion inside portType indicate GetQuoteResponse? operation name=getQuote input message=tns:GetQuoteRequest/ output message=tns:GetQuoteResponse/ /operation - venkat On Apr 5, 2005 11:46 AM, Bruno LEDOUX [EMAIL PROTECTED] wrote: Hi , I

Re: gSOAP 2.7 (client)- Axis Java 1.2rc3 Interoperability problem

2005-04-05 Thread Bruno LEDOUX
I tried it but it didn't work. Is the wsdl file required by Axis only when deploying the service ? Do I also need to copy it in the WEB-INF directory. Anyway I googled wsdlFile and found I was not the only one having troubles: cf http://java2.5341.com/msg/99739.html Thanks for your help. Bruno

WSS4J and Kerberos Ticket

2005-04-05 Thread Pham Hoai Van
Dear all, Dose WSS4J support SecurityToken like Kerberos Ticket ? If yes, anybody please give me an example of using Kerberos Ticket for signing and encrypting SOAP message. Thanks and Best Regards, - Pham Hoai Van Y!: hoaivanpham Tel: 7.220.105 Mobile: 0915.116.202

List of Possible Exception Messages?

2005-04-05 Thread Mark Leone
My project is consuming services from an Axis server, and we'd like to compile a list of the possible faultstring values we could get returned in a SOAP fault message, so we can design an auditing service that properly accounts for all known error conditions that fit certain criteria. I

Programmatic Service Deployment

2005-04-05 Thread Bradley Mazurek
Hi, I'm writing some infrastructure that is expected to take a Class and a service name (String), and deploy a service with the provided name, dispatching requests to instances of the given class. I know the way I'd like to accomplish this, but I'm running into some difficulties. What I'd

How to customize the soap message generated by .NET

2005-04-05 Thread babloosony
Hi All, I have included all the relevant files in this mail. Basically I have below soap message generated by .NET (installed Microsoft .NET 1.1 Framework and am running the exe that I got from this url

attachments question

2005-04-05 Thread Brian Rook
I'm trying to send back both a string and a zip file from a webservice built using axis1_2RC1. here's the entry in the wsdl: code: schema xmlns=http://www.w3.org/2001/XMLSchema; targetNamespace=http://websvc.eiwo.childsupport.colorado.gov; elementFormDefault=qualified import

RE: attachments question

2005-04-05 Thread THOMAS, JAI [AG-Contractor/1000]
If you are attaching an already created zip file, create data handler from FileDataSource. That way, you let datahandler to set the appropriate mime type. dhSource = new DataHandler(new FileDataSource(docFile)); Also make sure there is typemapping registered for DataHandler. Jai

Re: attachments question

2005-04-05 Thread Brian Rook
okay, tried that. I get a different message now: java.lang.RuntimeException: javax.mail.MessagingException: Error in input stream; nested exception is: java.io.IOException: End of stream encountered before final boundary marker. This method works when I call it from a servlet, so I'm

I see the following exception in the console output while invokin g the service (although everything works fine and I do get desired result s)

2005-04-05 Thread Soti, Dheeraj
Title: I see the following exception in the console output while invoking the service (although everything works fine and I do get desired results) urrent message form to: FORM_SOAPENVELOPE (currentMessage is now org.apache.axis .message.SOAPEnvelope) 831 05 Apr 2005 11:47:58,571 [main] DEBUG

What are these QName_Helper and String_Helper classes?

2005-04-05 Thread Liu, Scott
Hi, All, In an experiment I named namespaces using format like x_1_00 and service endpoint using a name like y_1_00.wsdl to support multiple web services (more than one port). I generated the server side classes fine with wsdl2java tool and the compilation was successful. But when I

Re: attachments question

2005-04-05 Thread Brian Rook
I was thinking about trying this, but didn't know where to find out what the DataSource actually needed. Do you have links to documents where I could learn more about the DataSource interface? Thanks, brian On Apr 5, 2005 1:09 PM, Ryan Bell [EMAIL PROTECTED] wrote: Brian, one option you can

Re: attachments question

2005-04-05 Thread Brian Rook
Ryan, I actually just implemented the code snippet that you supplied and it worked. I really appreciate the help that both you and Jai provided me with. brian On Apr 5, 2005 2:01 PM, Brian Rook [EMAIL PROTECTED] wrote: I was thinking about trying this, but didn't know where to find out what

type mapping registry

2005-04-05 Thread psw-axis-www
I'd like to create a facade on top of an axis-generated web service proxy that does some type substitutions with derived classes representing XML schema elements; no new content but more convenience accessors, particularly to help with key and keyref pointers and backpointers. Our web service is

type mapping registry

2005-04-05 Thread psw-axis-www
I'd like to create a facade on top of an axis-generated web service proxy that does some type substitutions with derived classes representing XML schema elements; no new content but more convenience accessors, particularly to help with key and keyref pointers and backpointers. Our web service is

wrapped doc/literal and Object vs. primitive types

2005-04-05 Thread Tim K. (Gmane)
Hello, Is it OK to use the wrapper objects and arrays of wrapper objects, e.g. Long and Long[] vs. long and long[] for wrapped doc/literal? Will this work with .NET? I know that it doesn't work for rpc/encoded with .NET as .NET will send xsd:long rather than soapenc:long so if a method takes a

Re: List of Possible Exception Messages?

2005-04-05 Thread Venkat Reddy
how about the messages in ws-axis\java\build\classes\org\apache\axis\i18n\resource.properties? - venkat On Apr 5, 2005 7:18 PM, Mark Leone [EMAIL PROTECTED] wrote: My project is consuming services from an Axis server, and we'd like to compile a list of the possible faultstring values we could

Configuring an independent Axis client

2005-04-05 Thread dean
Hi All, This question seems to continue the fine tradition of confusion over configuring an Axis client's properties. The situation is that I am writing a client that can be provided to people to use in their applications. This client essentially consumes a web service that I publish so that

design question xsd:anyType/java Object

2005-04-05 Thread Tim K. (Gmane)
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 like this: public class Property { private String name; private Object value; // getters + setters ... } It's useful in