Announcement

Collapse
No announcement yet.

Possible to send a variable from HTTP back to SetupFactory?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Possible to send a variable from HTTP back to SetupFactory?

    In my installer, I'll send some variable to my HTTP web site.
    I wonder is it possible for the web site to send back a variable?

  • #2
    Re: Possible to send a variable from HTTP back to SetupFactory?

    Yep. Use the Submit to Web action. See the help topic for details.

    Note that there is a typo in that topic, though. Instead of:

    <SUF60>%UserName%,%AuthorizedToUpdate%</SUF60>
    <%UserName%>William Gates</%UserName%>
    <%AuthorizedToInstall%>FALSE</%AuthorizedToInstall%>

    The example given should be:

    <SUF60>%UserName%,%AuthorizedToInstall%</SUF60>
    <%UserName%>William Gates</%UserName%>
    <%AuthorizedToInstall%>FALSE</%AuthorizedToInstall%>
    --[[ Indigo Rose Software Developer ]]

    Comment


    • #3
      Re: Possible to send a variable from HTTP back to SetupFactory?

      thx for noting that typo Lorne [img]/ubbthreads/images/icons/wink.gif[/img]

      Comment


      • #4
        Re: So how are my web server script going to look like?

        How am I going to return on my web server side?
        I'm using ASP.

        Comment


        • #5
          Re: So how are my web server script going to look like?

          See this thread:

          http://www.indigorose.com/ubbthreads...p;Number=14626

          Comment

          Working...
          X