The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package SOAP::ISIWoK::Lite;

use base qw( SOAP::ISIWoK );

use strict;

our $VERSION = $SOAP::ISIWoK::VERSION;

sub new
{
	my ($class, %self) = @_;

	$self{endpoint} ||= SOAP::ISIWoK::WOKSEARCH_LITE_ENDPOINT;
	$self{service_type} ||= SOAP::ISIWoK::WOKSEARCH_LITE_SERVICE_TYPE;

	return $class->SUPER::new(%self);
}

1;