[OT] Re: Axis with more than 4GB data transfer.

2005-08-25 Thread Woodchuck
darn, i was hoping someone found a way to lob 4GB globs around  :D

woodchuck


--- Guy Rixon <[EMAIL PROTECTED]> wrote:

> Hi,
> 
> we have a similar situation in our project (AstroGrid:
> http://www.astrogrid.org/). We have a service that gives access to an
> on-line
> data store in which the data-items range from tiny to very large.
> Rather than
> export the large items as attachments, we prefer a two-stage process.
> 
>  1. Client calls the W/S to request a transfer with a particular
> protocol.
> W/S returns a URL for this transfer.
>  2. Client transfers data to/from the URL.
> 
> We're treating the bulk-transfer URL as ephemeral and the W/S as an
> indirector
> for the data-transfer. That lets us manage the data on file-servers
> without exposing permanent URLs.
> 
> If your data are private, then you need to secure the link to the
> file server
> as well as the link to the W/S. You could do this by including a
> password, generated by the W/S, in the bulk-transfer URL; in this
> case the W/S
> has to manage the authorization on the file-server. Alternatively,
> you could
> secure access to both W/S and file-server using a client certificate
> and
> GridFTP for the file-transfer protocol.
> 
> On Thu, 25 Aug 2005, Peter wrote:
> 
> > Hi all,
> > Thank you for the helps.
> > I would like to explain more about my scenario maybe it help. I am
> doing a
> > Web Services projects . First i expose some methods like
> getAllMovieNames
> > using Axis. Now I want to implemement the download method and
> upload method
> > to download and upload movies (very big) between client and server.
> > I realize that using SOAP is not enough. Is it possible to bind
> SOAP with
> > other data transfer protocol like FTP or data space transfer
> protocol?Does
> > Axis has someway to solve this problem ?how to solve this problem?
> I really
> > have no idea.
> >
> > Any ideas and any feedback would be much appreciated.
> > Best regards
> > peter
> >
> >
> > On 8/25/05, Michael Oliver <[EMAIL PROTECTED]> wrote:
> > >
> > > I would recommend Bit Torrent http://azureus.sourceforge.net/
> > >
> > > Michael Oliver
> > > CTO
> > > Alarius Systems LLC
> > > 6800 E. Lake Mead Blvd, #1096
> > > Las Vegas, NV 89156
> > > Phone:(702)643-7425
> > > Fax:(702)974-0341
> > > *Note new email changed from [EMAIL PROTECTED]
> > >
> > > -Original Message-
> > > From: Davanum Srinivas [mailto:[EMAIL PROTECTED]
> > > Sent: Wednesday, August 24, 2005 4:05 PM
> > > To: axis-user@ws.apache.org
> > > Subject: Re: Axis with more than 4GB data transfer.
> > >
> > > kidding me? :) no, soap is not designed for this. (see other
> protocols
> > > -
> http://www.google.com/search?q=%22Data+Space+Transfer+Protocol%22)
> > >
> > > -- dims
> > >
> > > On 8/24/05, Peter <[EMAIL PROTECTED]> wrote:
> > > > Hello,
> > > > I am new to Axis.I have a questing for the experts.
> > > >
> > > > I am doing a Web Services projects. I am trying to find
> information
> > > > for using Axis to transfer more than 4GB data such like big
> movie. My
> > > > scenario is I want to upload and download big movies between
> server
> > > > and client using Web Service.
> > > >
> > > > I am not sure if I can solve this using SOAP with attachments
> .I do
> > > > not know if SOAP can solve this kind of problem.
> > > >
> > > > Any ideas and any feedback would be much appreciated
> > > > Thank you in advance.
> > > >
> > >
> > >
> > > --
> > > Davanum Srinivas : http://wso2.com/ - Oxygenating The Web Service
> Platform
> > >
> > >
> >
> 
> Guy Rixon [EMAIL PROTECTED]
> Institute of AstronomyTel: +44-1223-337542
> Madingley Road, Cambridge, UK, CB3 0HAFax: +44-1223-337523
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Re: deploying web service

2005-06-10 Thread Woodchuck
hihi,

the deploy/undeploy.wsdd are not needed in production.  they are used
to generate the server-config.wsdd

the server-config.wsdd goes into your webapp/WEB-INF folder (same as
your web.xml deployment descriptor file)

if you have web services working on your local machine, deploying it on
'the network' requires no change to your web service.  you should be
able to just copy your entire web service app to your network server
and have it work just the same.  only the clients who access the web
service needs to change, they need to know where the new location of
your web service is (eg. the proxy/stub classes if you're using any).

hth,
woodchuck


--- Plorks mail <[EMAIL PROTECTED]> wrote:

> 
> 
> Hi all
> 
> I've developeed a web service on my local PC.
> 
> I now need to deploy this to our network so it can be used.
> 
> Can someone point to an example of deploying a webservice to tomcat. 
> I've 
> read a few articles but they don't seem to be relevant/quite complex
> to 
> understand
> 
> I have my deploy/undeploy/server-cofig wsdd and my wsdl - i just
> don't know 
> where to put them and what to change once they are on the network e.g
> the 
> endpoint in the wsdl file
> 
> Also, i don't understand how the web service will see the java files.
>  It 
> works on my PC i have a project with packages and java files in each
> and my 
> web service can see them
> 
> Sorry for my dumb questions
> 
> Thanks for any help
> 
> _
> It's fast, it's easy and it's free. Get MSN Messenger 7.0 today! 
> http://messenger.msn.co.uk
> 
> 




__ 
Yahoo! Mail Mobile 
Take Yahoo! Mail with you! Check email on your mobile phone. 
http://mobile.yahoo.com/learn/mail 


RE: happyaxis JAXP implementation found at an unknown location

2005-06-07 Thread Woodchuck
i believe because the core Java classes will only be loaded from your
JAVA_HOME location

there are very specific rules to how Tomcat classloading works. 
specific packages will only be loaded from specific locations only.

more info here:
http://jakarta.apache.org/tomcat/tomcat-5.5-doc/class-loader-howto.html

hth,
woodchuck


--- Henry Lu <[EMAIL PROTECTED]> wrote:

> I copied rt.jar file to both tomcat common/lib and axis/WEB-INF/lib,
> but I still got:
> 
> Found JAXP implementation ( javax.xml.parsers.SAXParserFactory ) at
> an unknown location
> 
> Why?
> 
> -Henry
> 
> >>> [EMAIL PROTECTED] 6/7/2005 1:24:36 PM >>>
> thanks!
> 
> you're right, there is a SAXParser class in the rt.jar that came with
> JDK 5.0!
> 
> 
> --- "Ruiz González, Jose de Jesus" <[EMAIL PROTECTED]> wrote:
> 
> > Axis is finding that package from Java 
> > 
> > 
> > José de Jesús Ruiz Gonzalez
> > Departamento de Sistemas
> > México Asistencia S.A. de C.V.
> > Sistema Internacional de Asistencia Mapfre
> > 
> > * mailto:[EMAIL PROTECTED] 
> > *(52) 55 + 54801298
> > 
> > *Fax(52) 55 + 56112011
> > 
> > <http://www.mexicoasistencia.com/> 
> > 
> > 
> > -Mensaje original-
> > De: Woodchuck [mailto:[EMAIL PROTECTED] 
> > Enviado el: Martes, 07 de Junio de 2005 11:08 a.m.
> > Para: axis-user@ws.apache.org 
> > Asunto: happyaxis JAXP implementation found at an unknown location
> > 
> > hihi all,
> > 
> > i'm currently using axis 1.2 in tomcat 5.5.9
> > 
> > everything is fine but i'm curious to know where axis is finding
> the
> > JAXP
> > implementation ( javax.xml.parsers.SAXParserFactory ).
> > 
> > i do not have the jaxp-api.jar anywhere at all.
> > 
> > has anyone else noticed this as well (who are using Tomcat 5.5
> also)?
> > 
> > i even did a file search for the string "javax.xml" but it is not
> > anywhere
> > within tomcat.
> > 
> > anyone have any ideas or know the answer to this mystery?
> > 
> > thanks in advance,
> > woodchuck
> > 
> > 
> > 
> > __
> > Yahoo! Mail Mobile
> > Take Yahoo! Mail with you! Check email on your mobile phone. 
> > http://mobile.yahoo.com/learn/mail 
> > 
> 
> 
> 
>   
> __ 
> Discover Yahoo! 
> Find restaurants, movies, travel and more fun for the weekend. Check
> it out! 
> http://discover.yahoo.com/weekend.html 
> 
> 
> 
> 
> **
> Electronic Mail is not secure, may not be read every day, and should
> not be used for urgent or sensitive issues.
> 




__ 
Discover Yahoo! 
Have fun online with music videos, cool games, IM and more. Check it out! 
http://discover.yahoo.com/online.html


RE: happyaxis JAXP implementation found at an unknown location

2005-06-07 Thread Woodchuck
thanks!

you're right, there is a SAXParser class in the rt.jar that came with
JDK 5.0!


--- "Ruiz González, Jose de Jesus" <[EMAIL PROTECTED]> wrote:

> Axis is finding that package from Java 
> 
> 
> José de Jesús Ruiz Gonzalez
> Departamento de Sistemas
> México Asistencia S.A. de C.V.
> Sistema Internacional de Asistencia Mapfre
> 
> * mailto:[EMAIL PROTECTED] 
> *(52) 55 + 54801298
> 
> *Fax(52) 55 + 56112011
> 
> <http://www.mexicoasistencia.com/> 
> 
> 
> -Mensaje original-
> De: Woodchuck [mailto:[EMAIL PROTECTED] 
> Enviado el: Martes, 07 de Junio de 2005 11:08 a.m.
> Para: axis-user@ws.apache.org
> Asunto: happyaxis JAXP implementation found at an unknown location
> 
> hihi all,
> 
> i'm currently using axis 1.2 in tomcat 5.5.9
> 
> everything is fine but i'm curious to know where axis is finding the
> JAXP
> implementation ( javax.xml.parsers.SAXParserFactory ).
> 
> i do not have the jaxp-api.jar anywhere at all.
> 
> has anyone else noticed this as well (who are using Tomcat 5.5 also)?
> 
> i even did a file search for the string "javax.xml" but it is not
> anywhere
> within tomcat.
> 
> anyone have any ideas or know the answer to this mystery?
> 
> thanks in advance,
> woodchuck
> 
> 
>   
> __
> Yahoo! Mail Mobile
> Take Yahoo! Mail with you! Check email on your mobile phone. 
> http://mobile.yahoo.com/learn/mail 
> 




__ 
Discover Yahoo! 
Find restaurants, movies, travel and more fun for the weekend. Check it out! 
http://discover.yahoo.com/weekend.html 



Re: AW: activation.jar ... what does axis need it for?

2005-06-07 Thread Woodchuck
thank you!

i guess the happyaxis validation page is a bit misleading... they
should put activation.jar as an 'optional' component instead of a
'needed' component.

woodchuck

--- Ferruh Zamangoer <[EMAIL PROTECTED]> wrote:

> Hi,
> 
> the activation.jar are used for sending attachments. You can use a
> DataHandler Object to send files. But I don't know if it's optional.
> 
> Attachments can be send optionally with SAAJ-API, but in this case
> you have
> to build your attachment manually.
> 
> Regards
> Ferruh
> 
> 
> 
> 
> 
> -Ursprüngliche Nachricht-
> Von: Woodchuck [mailto:[EMAIL PROTECTED] 
> Gesendet: Dienstag, 7. Juni 2005 16:15
> An: axis-user@ws.apache.org
> Betreff: activation.jar ... what does axis need it for?
> 
> hihi all,
> 
> i've setup axis and have my web services running happily.  but i
> noticed that if i remove activation.jar the happyaxis page will say
> that it cannot find activation.jar and that axis will not work.
> 
> however, my web services still work fine without activation.jar!
> 
> so my question is, what does axis need activation.jar for?
> 
> thanks in advance,
> woodchuck
> 
> 
>   
> __ 
> Yahoo! Mail 
> Stay connected, organized, and protected. Take the tour: 
> http://tour.mail.yahoo.com/mailtour.html 
> 
> 




__ 
Do you Yahoo!? 
Read only the mail you want - Yahoo! Mail SpamGuard. 
http://promotions.yahoo.com/new_mail 


happyaxis JAXP implementation found at an unknown location

2005-06-07 Thread Woodchuck
hihi all,

i'm currently using axis 1.2 in tomcat 5.5.9

everything is fine but i'm curious to know where axis is finding the
JAXP implementation ( javax.xml.parsers.SAXParserFactory ).

i do not have the jaxp-api.jar anywhere at all.

has anyone else noticed this as well (who are using Tomcat 5.5 also)?

i even did a file search for the string "javax.xml" but it is not
anywhere within tomcat.

anyone have any ideas or know the answer to this mystery?

thanks in advance,
woodchuck



__ 
Yahoo! Mail Mobile 
Take Yahoo! Mail with you! Check email on your mobile phone. 
http://mobile.yahoo.com/learn/mail 


activation.jar ... what does axis need it for?

2005-06-07 Thread Woodchuck
hihi all,

i've setup axis and have my web services running happily.  but i
noticed that if i remove activation.jar the happyaxis page will say
that it cannot find activation.jar and that axis will not work.

however, my web services still work fine without activation.jar!

so my question is, what does axis need activation.jar for?

thanks in advance,
woodchuck



__ 
Yahoo! Mail 
Stay connected, organized, and protected. Take the tour: 
http://tour.mail.yahoo.com/mailtour.html