SOAP and auto WSDL writers

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • PP

    #1

    SOAP and auto WSDL writers

    Hi

    Perl, .NET, Java all have automatic WSDL creation.
    Does such a thing exist in PHP also?


  • Noodle

    #2
    Re: SOAP and auto WSDL writers


    PP wrote:
    Hi
    >
    Perl, .NET, Java all have automatic WSDL creation.
    Does such a thing exist in PHP also?

    It depends on the development environment you use.
    Zend Studio can do it. http://www.zend.com/products/zend_studio

    Comment

    • Tom

      #3
      Re: SOAP and auto WSDL writers

      It depends on the development environment you use.
      Sorry, I forgot to write that it is supposed to be something that will do to
      at run-time.



      Comment

      • Jerry Stuckle

        #4
        Re: SOAP and auto WSDL writers

        Tom wrote:
        >>It depends on the development environment you use.
        >>Zend Studio can do it. http://www.zend.com/products/zend_studio
        >
        >
        >
        Sorry, I forgot to write that it is supposed to be something that will do to
        at run-time.
        >
        >
        >
        Tom,

        WSDL is static unless you edit the file. Why would you create this at
        run time? When you compile is a good time to create it for compiled
        languages like Java; for interpreted languages like PHP it's generally
        either part of the editor (like Tom mentioned) or a separate program you
        run against the source (which I don't *think* exists for PHP).

        --
        =============== ===
        Remove the "x" from my email address
        Jerry Stuckle
        JDS Computer Training Corp.
        jstucklex@attgl obal.net
        =============== ===

        Comment

        • Tom

          #5
          Re: SOAP and auto WSDL writers

          WSDL is static unless you edit the file. Why would you create this at run
          time?
          I want something that creates the WSDL for me so that I don't have to do it.
          Clients normally cache the file so the overhead is not much.
          If it proves to be significat, I'll cache it myself and send that out.

          I guess auto-WSDL is not ported to php yet :-(



          Comment

          • R. Rajesh Jeba Anbiah

            #6
            Re: SOAP and auto WSDL writers

            Tom wrote:
            WSDL is static unless you edit the file. Why would you create this at run
            time?
            >
            I want something that creates the WSDL for me so that I don't have to do it.
            Clients normally cache the file so the overhead is not much.
            If it proves to be significat, I'll cache it myself and send that out.
            >
            I guess auto-WSDL is not ported to php yet :-(
            Possibly <http://pear.php.net/package/SOAP/>
            <http://talks.php.net/show/soap-phpcon-ny2003/70>

            --
            <?php echo 'Just another PHP saint'; ?>
            Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com/

            Comment

            Working...