IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 14, 2008, 12:54:25 PM (18 years ago)
Author:
eugene
Message:

reverting to pre-distributed version code (distrib is on branch)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/lib/Nebulous/Server/SOAP.pm

    r20972 r20990  
    11# Copyright (c) 2004  Joshua Hoblitt
    22#
    3 # $Id: SOAP.pm,v 1.5 2008-12-13 00:41:15 jhoblitt Exp $
     3# $Id: SOAP.pm,v 1.6 2008-12-14 22:54:25 eugene Exp $
    44
    55package Nebulous::Server::SOAP;
     
    1717our $AUTOLOAD;
    1818
    19 our $config;
     19our @args;
    2020our $neb;
    2121
    22 
    23 sub new_on_init
    24 {
     22sub new_on_init {
    2523    my $self = shift;
    2624
     
    2927    require Apache2::ServerUtil;
    3028
    31     $config = shift;
     29    @args = @_;
    3230
    3331    my $s = Apache2::ServerUtil->server;
     
    3735}
    3836
    39 
    40 sub init
    41 {
     37sub init {
    4238    my $self = shift;
    4339
    44     $neb = Nebulous::Server->new_from_config($config);       
     40    $neb = Nebulous::Server->new(@args);       
    4541
    4642    return Apache2::Const::OK;
    4743}
    4844
    49 
    50 sub AUTOLOAD
    51 {
     45sub AUTOLOAD {
    5246    my $self = shift;
    5347
     
    8276}
    8377
    84 
    85781;
Note: See TracChangeset for help on using the changeset viewer.