Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default CF 4.5 POST content

    I'm trying to implement a SOAP server in CF4.5 and the first problem I'm coming
    up against is how to get the payload of the POST request. This is a bit like
    asking for CGI.Content or FORM.Everything.

    I must be a bit stupid, but I can't see how to do it!

    alexlake Guest

  2. Similar Questions and Discussions

    1. #39201 [NEW]: POST with invalid content-length and ErrorDocument set crashes php
      From: thomas at partyflock dot nl Operating system: Linux (2.6.18) PHP version: 5.1.6 PHP Bug Type: Apache2 related Bug...
    2. redirect but with post data - mimick form post behaviour
      Any thoughts on how to mimic result of submitting form data via POST Method? I have some code that sanitizes some submitted formfields and i'd like...
    3. How to post some data in form of POST action of forms in asp?
      Hi there, I need to post some information into an ASP page (mypage.asp), in form of POST action which I do with the following code: 'contents...
    4. Transferring the POST content from one page to another
      Is there an easy way to transfer a page POST content to the next page? Right now I read out the POST content in the PHP script and put it in a html...
    5. #18648 [Com]: Single entry form POST gives incorrect variable content
      ID: 18648 Comment by: vesely at tana dot it Reported By: ms at ecs dot soton dot ac dot uk Status: Bogus Bug...
  3. #2

    Default Re: CF 4.5 POST content

    <Cfloop index="formfield" list="#FORM.fieldnames#">
    <cfoutput>#formfield# : #evaluate(formfield)#<br></cfoutput>
    </cfloop>

    Is an easy way to look at the info. You could also treat the form info as a
    structure.

    HTH,

    philh Guest

  4. #3

    Default Re: CF 4.5 POST content

    There are no any form fileds in SOAP request. So the above suggestion will not work.

    Look, if GetHttpRequestData() was already implemented in CF 4.5. If not, you cannot do this.

    Mr Black 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