You are welcome...As you know all of us have day jobs and it's a bit demoralizing when 
folks just
complain when things don't work, but we don't hear success stories as much.

- Browse Nagoya, select a bug, send in a patch
- Browse docs and see which ones need updates, send in a patch
- Browse archives and look for what kind of help users are looking for
- Think about what samples you were looking for and did not find 
- Think about what additional features that you wish axis provided

Right now we need help in:
- docs to explain what wrapped and document mean in Axis's terminology
- document samples (straight from java, without needing a WSDL to start with)
- wrapped samples
- etc...

-- dims

--- Leo de Blaauw <[EMAIL PROTECTED]> wrote:
> Dims,
> 
> Thanks for the help, i did try that before and for some reasons beyond
> me..;-) it didnt work
> that way, but now it does so all ahead forward again !
> 
> Hmm sincerely thinking about becoming more involved in the axis project to
> give something
> back for the excelent platform we deploy our webservices on ! Let me know if
> there are
> any areas that needs help at this time.
> 
> Greetz,
> Leo
> 
> -----Oorspronkelijk bericht-----
> Van: Davanum Srinivas [mailto:[EMAIL PROTECTED]
> Verzonden: woensdag, juli 2003 17:12
> Aan: [EMAIL PROTECTED]
> Onderwerp: RE: Dime parsing example ??
> 
> 
> Just as i suspected....There's NOTHING special you need to do. See enclosed
> code all you need to
> do is to feed the inputstream of the data handler into ZipInputStream. Axis
> hides actual DIME
> stuff.
> 
>             AttachmentPart ap = (AttachmentPart) iterator.next();
>             DataHandler rdh = (DataHandler) ap.getDataHandler();
>                               
>             ZipInputStream zis = new ZipInputStream(rdh.getInputStream());
>             ZipEntry entry = null;
>             while((entry = zis.getNextEntry())!=null) {
>                 System.out.println("eerste zipfile entry: " +
> entry.getName());
>             }
> 
> -- dims
> 
> 
> --- Leo de Blaauw <[EMAIL PROTECTED]> wrote:
> > Dims,
> > 
> > This is basically a .NET client, we have the webservice wich is being
> > developed in axis. The reference
> > to the attachment is not in the WSDL describing the service. We basically
> > get to the attachment trough
> > the use of:
> > 
> > Attachmentpart.getAttachmentFile());
> > (DataHandler) Attachmentpart.getDataHandler();
> > 
> > After wich we can get to the actual attachment itself, problem now is that
> > the attachment is of
> > application/dime type. 
> > 
> > My fundamental question is really how to get to the contents of the dime
> > attachment, wich is 
> > basically a wrapper. In the dime attachment is a zipfile wich in need to
> > unpack and then process
> > in our backend systems...
> > 
> > After getting the workaround for the cleaning up of the axis attachments
> > cache, this is the next
> > challenge i guess.
> > 
> > I can't really imagine no one ever stumbled on this issue ??? 
> > 
> > The library i tried using to get to the contents of the dime object is:
> > com.onionnetworks.dime wich is a java based library for dime processing,
> > however it supports
> > version 1 chunked or non-chunked DIME only. When trying to parse a dime
> > message, generated
> > by axis to the same service i get the error stating that the dime version
> > axis is using is different
> > from 1.0 ??
> > 
> > Anyway, thanks for your help in this issue !
> > 
> > Sincere greetings,
> > Leo de Blaauw
> > 
> > 
> > -----Oorspronkelijk bericht-----
> > Van: Davanum Srinivas [mailto:[EMAIL PROTECTED]
> > Verzonden: woensdag, juli 2003 15:35
> > Aan: [EMAIL PROTECTED]
> > Onderwerp: RE: Dime parsing example ??
> > 
> > 
> > Do you have an existing .NET Web Service that does this? Is there a WSDL
> for
> > this service?
> > 
> > Thanks,
> > dims
> > 
> > --- Leo de Blaauw <[EMAIL PROTECTED]> wrote:
> > > Well,
> > > 
> > > Yeah i know that example but that just reads in the DIME attachment and
> > > copies it over to the
> > > reply message without touching the contents at all.. So again not really
> > > answered my question
> > > unfortunatly... I found an open source java library that deals with DIME
> > > objects but it comes
> > > back with the message it doesnt support the DIME version axis uses...
> > > 
> > > Sincere greetings,
> > > Leo de Blaauw
> > > 
> > > -----Oorspronkelijk bericht-----
> > > Van: Davanum Srinivas [mailto:[EMAIL PROTECTED]
> > > Verzonden: woensdag, juli 2003 15:14
> > > Aan: [EMAIL PROTECTED]
> > > Onderwerp: RE: Dime parsing example ??
> > > 
> > > 
> > > look at samples/attachments...It has a Echo Attachments service that can
> > > also do DIME. 
> > > 
> > > -- dims
> > > 
> > > --- Leo de Blaauw <[EMAIL PROTECTED]> wrote:
> > > > Well,
> > > > 
> > > > Quick answer but doesnt really answer any of my questions ;-(
> > > > 
> > > > Greetings,
> > > > Leo de Blaauw
> > > > 
> > > > -----Oorspronkelijk bericht-----
> > > > Van: Kellogg, Richard [mailto:[EMAIL PROTECTED]
> > > > Verzonden: woensdag, juli 2003 15:07
> > > > Aan: [EMAIL PROTECTED]
> > > > Onderwerp: RE: Dime parsing example ??
> > > > 
> > > > 
> > > > Please refer to
> > > >
> > >
> >
> http://nagoya.apache.org/wiki/apachewiki.cgi?AxisProjectPages/DotNetInterop.
> > > > 
> > > > -----Original Message-----
> > > > From: Leo de Blaauw [mailto:[EMAIL PROTECTED]
> > > > Sent: Wednesday, July 23, 2003 9:03 AM
> > > > To: [EMAIL PROTECTED] Apache. Org (E-mail)
> > > > Subject: Dime parsing example ??
> > > > 
> > > > 
> > > > Hi,
> > > > 
> > > > Does anybody have a working example of how to get to the files (parts)
> > IN
> > > a
> > > > dime
> > > > attachment ? I have been having the hardes time just get a zip file
> from
> > a
> > > > DIME 
> > > > attachment.
> > > > 
> > > > Also wich version of DIME does axis support currently ? Basically my
> > > service
> > > > has
> > > > to service .net clients sending in requests with DIME attachments
> > > containing
> > > > zip
> > > > files..
> > > > 
> > > > Any help or pointers greatly appreciated !
> > > > 
> > > > Sincere greetz
> > > > Leo de Blaauw
> > > > 
> > > > 
> > > > 
> > > > 
> > > > De informatie verzonden met dit e-mail bericht is uitsluitend bestemd
> > voor
> > > > de 
> > > > geadresseerde. Openbaarmaking, vermenigvuldiging, verspreiding en/of
> > > > verstrekking 
> > > > van deze informatie aan derden is niet toegestaan.  Indien dit bericht
> > > niet
> > > > voor u 
> > > > bestemd is, verzoeken wij u vriendelijk dit bericht te retourneren
> zodat
> > > dit
> > > > in de 
> > > > toekomst kan worden voorkomen. Ondanks het feit dat IZA Nederland al
> > haar
> > > > e-mail 
> > > > berichten controleert op virussen, staat zij niet in voor het
> virusvrij
> > > > verzenden c.q. 
> > > > ontvangen van deze berichten.
> > > > 
> > > > 
> 
=== message truncated ===


=====
Davanum Srinivas - http://webservices.apache.org/~dims/

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

Reply via email to