DeserializationContext.getObjectByRef

2003-01-22 Thread Rolando Pablos Sánchez
Have anyone tell what kind of object returns the following method?: DeserializationContext.getObjectByRef(java.lang.String href)   Is it an AttachmenPart object?

Re: Retrieve file names in attachments

2003-01-21 Thread Rolando Pablos Sánchez
I have also sent attachments. I guess you use the DataHandler type. The file name is not sent because that is extra information (not the attachment itself) and may be you need an additional tag (). I was figuring out about how to achieve extra attributes in the attachment tag in order to specify th

Re: Document Style Service

2003-01-21 Thread Rolando Pablos Sánchez
You can create your wsdd from the wsdl. And you can obtain this one from the Java class with Java2WSDL. But you must modify the wsdl to declare the document style and literal enconding. I show you the lines: [...] http://schemas.xmlsoap.org/soap/http"/> [...] If you use RPC, you get in line the m

Re: Attachments with atributtes

2003-01-20 Thread Rolando Pablos Sánchez
{   //    return    //      new  com.integro.neien.node.ser.CdxDocSerializer(   //       _javaType, _xmlType, typeDesc);   //}     /**    * Get Custom Deserializer    */   //public static org.apache.axis.encoding.Deserializer getDeserializer(   //       java.lan

Skeleton problem

2003-01-17 Thread Rolando Pablos Sánchez
I am been doing a service program that sends an attachment. I used the DataHandler for the attachment param. But now I have done my own class and de/serializers for this class. I did this because I need extra attributes, apart of href, in my attachment element and Axis cannot do it, as far I

Attachments with atributtes

2003-01-15 Thread Rolando Pablos Sánchez
I made this question time ago, but nobody answered. I need attachments, and now I am specifying the attachment in the wsdl file like this:       But I need to specify more attributes in this element, because I don´t know how to write the element description to include attributes and besides

xmlns attribute

2003-01-14 Thread Rolando Pablos Sánchez
I am working with a document style service. Originally it was a rpc service, where I couldn't see this xmlns attribute in the params. I get the java stubs from wsdl file, and when I test it I get this:   [...]          [EMAIL PROTECTED]             [...]      I get the correct xmlns

elements order

2003-01-14 Thread Rolando Pablos Sánchez
I have a wsdl file where there is a type definition like this:           ...         "genericRequestType"  is also a sequence type.   My problem is: the "genericRequestType" sequence elements must be serialize before the "submitReqType" ones. And in fact, they are serialize

Re: Document service

2003-01-14 Thread Rolando Pablos Sánchez
> > Another way to generate the WSDL would be to create an Axis web service > (not .JWS) and in the wsdd file have an entry like this > > > > > > > Then browse to this service with ?wsdl on the end. The generated WSDL > will be doc/literal and you should be ab

Re: Document service

2002-12-20 Thread Rolando Pablos Sánchez
2002 2:48 PM Subject: Re: Document service > Ronaldo, > > you typically need to do more than simply change the style to document. > Can you post your WSDL here for us to see? > > Kevin Jones > DevelopMentor > > On Fri, 2002-12-20 at 11:59, Rolando Pablos Sánchez wrote: &g

Re: Document service

2002-12-20 Thread Rolando Pablos Sánchez
  hope it helps greetings from Hamburg -Ursprüngliche Nachricht-Von: Rolando Pablos Sánchez [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 20. Dezember 2002 12:59An: axis-userBetreff: Document service I have been doing a rpc service, but now I have

Document service

2002-12-20 Thread Rolando Pablos Sánchez
I have been doing a rpc service, but now I have modified my wdsl file and I have changed to: soap:binding . But it doesn´t work. I don't know if I have to make more changes in my wsdl file. Besides, the WSDL2Java tools generates the deploy.wsdd with the provider attribute = java:RPC, just li

argument name

2002-12-18 Thread Rolando Pablos Sánchez
I am doing tests transmitting a big object (bean) which was generated with WSDL2Java. I have a schema with big sequence type. Then, what I get in the wire is: [...]                                                                 [...]   But what I want to get is:

Re: ñ and other characters

2002-12-18 Thread Rolando Pablos Sánchez
r with which you > translate. > > > ]> > > Probably & is declared so the parser handles it.. just declare the > other entities and it should go smoothly.. > > :) > > cya > > Eriam > > > Rolando Pablos Sánchez a écrit: > > >No. At least just writing

Re: ñ and other characters

2002-12-18 Thread Rolando Pablos Sánchez
No. At least just writing ñ. I've tried ñ but I get "ñ" in the wire and "ñ" in the destination string, so it translates & but nothing else. Besides, actually I don´t write the string. It is passed to me. Is the solution to write a function to translate and other to undo the translation? -

ñ and other characters

2002-12-18 Thread Rolando Pablos Sánchez
I am transmitting  strings and it was OK until I transmitted ñ,í and similar characters. It is because I need to transmit spanish characters. I get a error parsing because of that. I thought it was automatic but it wasn´t. I have even tried the method:String org.apache.axis.utils.XMLUtils.xm

Attachment with attributes

2002-12-16 Thread Rolando Pablos Sánchez
I am working with attachment and I am using the DataHandler object for this purpose. In fact, I am using the following line in my WSDL file in order to get the correct stubs: [...] [...]   It is OK. I get an array of DataHandler. But what I want is to add 2 attributes to this element. I have