in reply to generate XML command front to package

Sounds like a dirty job! You might want look into SOAP.

HTH

--
3dan
  • Comment on Re: generate XML command front to package

Replies are listed 'Best First'.
Re: Re: generate XML command front to package
by jorg (Friar) on Sep 02, 2003 at 10:15 UTC
    well soap is one way of doing this ofcourse but consider the following

    ->java XML frontend accessing perl backend (high load).

    Soap wouldn't give me the scalability i need, by using perl in a cgi environment i can piggyback on top of apache for performance.

    Jorg

    "Do or do not, there is no try" -- Yoda
      Soap wouldn't give me the scalability i need, by using perl in a cgi environment i can piggyback on top of apache for performance
      That is wrong. The only way apache/perl can give your high performance is through mod_perl, especially when using XML:: modules to parse xml properly. You're needlessly reinventing a wheel called SOAP.
        correct, my script would be mod_perl'ed ofcourse.

        Jorg

        "Do or do not, there is no try" -- Yoda