| Caelum | cc_jengelh: my $VAR1; beforehand? |
| cc_jengelh | does not work :( after the 'do $file' statemenet, VAR1 remains udnef |
| mauke | how about omitting the $VAR1 and simply saying my $x = do $file? |
| cc_jengelh | yeah that works, thanks! (But it only works because the last statement in $file _is_ the VAR1 assignment) |
| Touns | i'm trying to do a simple exemple of web services, i can call a function, but i can't call a function with an argument. Here is my server : http://www.pastebin.ca/400751 and here is my client : http://www.pastebin.ca/400752 . i read the SOAP::Lite documentation but i don't understand why this doesn't work. |
| buubot | The paste 400751 has been copied to http://erxz.com/pb/1817 |
| Touns | and i'm just working in localhost |
| Randal | SOAP ick if you really need soap interoperability ok |
| bbrasky | bhahhahaha |
| Randal | but today's hip kids are staying away from SOAP |
| bbrasky | guess who just called me up? buu's mom. |
| Randal | it's all about JSON and REST |
| Caelum | Touns: try POE::Component::Server::SOAP |
| bbrasky | buu: your mom AND dad thought you were dead. |
| Randal | Touns - next time you paste... |
| Caelum | Touns: much easier |
| Touns | Randal: i need a SOAP interoperability |
| Randal | perlbot, paste > Touns ok |
| NOTevil | Touns: wouldn't the first variable shift'd in is_available be the $self ? |
| Randal | all soap calls are object calls, yes |
| NOTevil | (is_available is in a package) |
| bbrasky | buu: I told them you had gotten married to Randal, and life was hectic prepairing for your honeymoon on WoW |
| Caelum | Touns: and in your server, isn't the parameter you get the soap body rather than $domain? |
| dsch04 | Evening all |
| Khisanth | Touns: why are all your handlers declared to take no parameters? |
| dsch04 | I'll looking for some advice on an object-based solution I'm creating an AudioFile class which has sub-classes for each type of Audio file (FLAC, MP3, etc) |
| Touns | NOTevil: i don't know |
| dsch04 | I'm using Class::Factory |
| Jo-W | meh my fingers hurt because of that annoying # key ^^ |
| dsch04 | The basics are working OK I'm just not sure of the best way to create the various properties and methods |
| Touns | Khisanth: what you mean by the handlers? this line ? : -> dispatch_to(undef, Meticiel, undef, undef); |
| dsch04 | For example, I want to be able to access the "ALBUM" property. |