andyfives has asked for the wisdom of the Perl Monks concerning the following question:
etc... this is where I start to get confused.. I can output the hash data using SOAP::lite if i setup a server client type setup...%SKYLIGHTS_PREFS = ( ############################################### ############################################### ##### STERLING SPECIAL SETTINGS ##### ############################################### ############################################### # Forces the customer to put in their flyme PNR on the contact pag +e! STERLING_FLYME_ENABLED => "false",
But.. I want the user to work on this type of structure make a change to the text contained and send it back to the server and make a change to the actual pref data that is located in a file. HOw do I start? I am a little lost and the documentation on SOAP is way too much. Thank you in advance... BTW can anyone recommend any good documentation on SOAP::lite and web services in general?sub getHash { my $self = shift; #my ($strxml) = $_[0]; my %params = (ref $_[0] eq 'HASH') ? %{$_[0]} : @_; # important adding new line char to reqXML my $reqXML = $params{SkylightsHash}; print "Content-type: text/plain\n\n"; print SOAP::Lite -> uri('http://sterlingSOAP/Demo') -> proxy('http://localhost/skylights/cgi-bin/sterlingSOAP.cgi') -> hi(SOAP::Serializer->serialize($reqXML)) -> result(), "\n"; };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: good material on SOAP::lite + where to find
by Herkum (Parson) on Apr 30, 2007 at 11:55 UTC | |
|
Re: good material on SOAP::lite + where to find
by lin0 (Curate) on Apr 30, 2007 at 12:46 UTC | |
|
Re: good material on SOAP::lite + where to find
by erroneousBollock (Curate) on May 01, 2007 at 06:37 UTC | |
by andyfives (Initiate) on May 03, 2007 at 07:20 UTC |