Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
SOAP /
Transport /
Delete
Unzip
Name
Size
Permission
Date
Action
HTTP.pm
28.68
KB
-rw-rw-rw-
2018-05-15 00:35
IO.pm
1.66
KB
-rw-rw-rw-
2018-05-15 00:35
LOCAL.pm
1.59
KB
-rw-rw-rw-
2018-05-15 00:35
LOOPBACK.pm
1.73
KB
-rw-rw-rw-
2018-05-15 00:35
MAILTO.pm
2.55
KB
-rw-rw-rw-
2018-05-15 00:35
POP3.pm
3.51
KB
-rw-rw-rw-
2018-05-15 00:35
TCP.pm
9.48
KB
-rw-rw-rw-
2018-05-15 00:35
Save
Rename
# ====================================================================== # # Copyright (C) 2007 Martin Kutter. # Part of SOAP-Lite, Copyright (C) 2000-2001 Paul Kulchenko # (paulclinger@yahoo.com) # You may distribute/modify this file under the same terms as perl itself. # # $ID: $ # # ====================================================================== package SOAP::Transport::LOOPBACK; use strict; package SOAP::Transport::LOOPBACK::Client; use strict; our $VERSION = '1.27'; # VERSION use vars qw(@ISA); use SOAP::Lite; @ISA = qw(SOAP::Client); sub new { return $_[0] if ref $_[0]; return bless {}, $_[0]; } sub send_receive { my($self, %parameters) = @_; $self->code(200); $self->message('OK'); $self->is_success(1); $self->status('200 OK'); return $parameters{envelope}; } 1; __END__ =pod =head1 NAME SOAP::Transport::LOOPBACK - Test loopback transport backend (Client only) =head1 DESCRIPTION SOAP::Transport::LOOPBACK is a test transport backend for SOAP::Lite. It just returns the XML request as response, thus allowing to test the complete application stack of client applications from the front end down to the transport layer without actually sending data over the wire. Using this transport backend is triggered by setting a loopback:// URL. Sending requests through this transport backend alway succeeds with the following states: status: 200 OK code: 200 message: OK =head1 COPYRIGHT Copyright (C) 2007 Martin Kutter. All rights reserved. This file is part of SOAP-Lite, Copyright (C) 2000-2001 Paul Kulchenko. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 AUTHOR Martin Kutter E<lt>martin.kutter fen-net.deE<gt> =cut