Server Side Processing Help

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Server Side Processing Help

    Looking for help resolving a problem on a website we wrote. The submit page
    actually generates an XML packet which is submitted to an internal server for
    processing by an asp page to an ERP system's database. The internal server is
    running IIS and has a submit.asp ready to process the XML packet via a custom
    interface to our ERP. The problem I am having is that it works fine when
    running the page while on our internal network but the minute you aren't on our
    network (like all our customers are, truly on the outside) The submit fails
    because it has no way to find the internal server. The web server itself can
    contact the internal dbase server, but it seems that I need to do some sort of
    true server side processing.

    Does anyone know how I might tweak my code in order to accomplish what I
    describe above for my customers? Any and all help is appreciated! :-)

    mich13 Guest

  2. Similar Questions and Discussions

    1. read server side file from clent side
      Hello all, i m using Influxis server.I have used these lines of code to create text file at server side:-> var myFile = new File("log_file.txt");...
    2. Time Stamp (User Side/Server Side)
      I am using the following to display time. #TimeFormat(Now(), "h")#:#TimeFormat(Now(), "mm")# #TimeFormat(Now(), "tt")# My problem is the server...
    3. Server Side Processing - WebServices?
      If I have a number of 'server side' programs that need to poll and do activity (run jobs, print things, scheduler, interfaces etc.) are these...
    4. Controls with a client side onLoad function or seting a cursor server side
      Is there any way to create a web control that calls a client side onLoad function? Its diffucilt since you are not able to access the form or...
    5. button evet ---- server side - client side ???
      I want to use button. My question is that How can use server side and client site event at the same time. That is: I want to use button : when...
  3. #2

    Default Re: Server Side Processing Help

    On 2005-05-07 07:20:35 -0500, "mich13" <webforumsuser@macromedia.com> said:
    > Looking for help resolving a problem on a website we wrote. The submit
    > page actually generates an XML packet which is submitted to an internal
    > server for processing by an asp page to an ERP system's database. The
    > internal server is running IIS and has a submit.asp ready to process
    > the XML packet via a custom interface to our ERP. The problem I am
    > having is that it works fine when running the page while on our
    > internal network but the minute you aren't on our network (like all our
    > customers are, truly on the outside) The submit fails because it has no
    > way to find the internal server. The web server itself can contact the
    > internal dbase server, but it seems that I need to do some sort of true
    > server side processing.
    If it works from within your network but not from outside (as well as
    based on what you're describing) my first guess would be that you need
    to open up your firewall to allow this internal server to be seen, or
    you need to set up some sort of proxy on a public-facing server so
    outside traffic can reach your internal server. This is a discussion
    probably best had with your networking folks to see what their
    suggestions are as well as what they're comfortable with from a
    security standpoint.

    Matt
    --
    Matt Woodward
    [email]mpwoodward@gmail.com[/email]
    Team Macromedia - ColdFusion

    mpwoodward *TMM* Guest

  4. #3

    Default Re: Server Side Processing Help

    And ColdFusion fits in to this picture, where?
    ksmith Guest

  5. #4

    Default Re: Server Side Processing Help

    Well, my thought in looking through the server side processing doc from the
    Cold Fusion library was that there might be a custom tag that would allow me to
    direct the submit URL action to be performed server side, therefore allowing my
    webserver to communicate with the internal server and only post the resulting
    page for the external user. I saw that there were some examples on how to do
    server side processing for Flash and the like but it wasn't clear how I might
    (or if I could) use the same method to achieve what I wanted to do here. As I
    don't really want to open up this internal server to the external world.

    mich13 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139