[Seaside-dev] WAKom and PUT requests

Philippe Marschall philippe.marschall at gmail.com
Tue Oct 9 20:34:14 UTC 2007


2007/10/2, Bany, Michel <mbany at cincom.com>:
> In the VW WebToolkit adapter we have this
>
>         aWaveRequest method = 'PUT' ifTrue:
>                 [self error: 'Unsupported HTTP method PUT'.
>                 waRequest fields at: 'PUTData' put: String new].
>
> In the VW Swazoo adapter we have this
>
>         aSwazooRequest isPut ifTrue:
>                 [self error: 'Unsupported HTTP method PUT'.
>                 waRequest fields at: 'PUTData' put: String new].
>
> As far as I know the error has never been hit, no PUT request was ever
> sent!

I think I just found the only sender of PUT: Monticello :-/

Cheers
Philippe

> HTH
> Michel.
>
>
>
>
> > When doing the Swazoo 2 sever adapter I stumbeled over this code:
> >
> > aKomRequest method = 'PUT' ifTrue: [
> >       request fields
> >               at: 'PUTData'
> >               put: (aKomRequest stream next: aKomRequest
> > contentLength) ].
> >
> > Can someone explain this to me. Do we make PUT requests somewhere?
> >
> > Cheers
> > Philippe
> > _______________________________________________
> > seaside-dev mailing list
> > seaside-dev at lists.squeakfoundation.org
> > http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
> >
> _______________________________________________
> seaside-dev mailing list
> seaside-dev at lists.squeakfoundation.org
> http://lists.squeakfoundation.org/mailman/listinfo/seaside-dev
>


More information about the seaside-dev mailing list