Deni has asked for the wisdom of the Perl Monks concerning the following question:
Hi all !
I've wrote a SOAP::Lite - Server in Perl with several modules. One module is kind of "executing" - module and executes the commands given by the params of the module.
I send my SOAP call to the server and the server executes it and sends me the response of the call. Now I have a problem regarding the translation of double quotes.
The request I send to the server looks like this:
/bin/bash -c 'echo "$(echo "paramter" | program )"'but when it arrives at the server it looks like this:
/bin/bash -c 'echo "$(echo "paramter" | program )"'I don't know why the quotes are not translated, because I ran the command on another machine and there it works fine.
Any ideas what the problem could be ? Maybe a wrong version of perl libs ?
Thanks for your help
Edited by planetscape - added code tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Translation of quotes
by philcrow (Priest) on Oct 31, 2005 at 17:00 UTC | |
|
Re: Translation of quotes
by spatterson (Pilgrim) on Oct 31, 2005 at 16:59 UTC | |
|
Re: Translation of quotes
by davorg (Chancellor) on Oct 31, 2005 at 16:58 UTC |