I'm trying to Post to a web page developed in Cold Fusion, so the web file is .cfm. For some reason, OG is cutting off all the URL variables when it runs the server event. For example, http://mydomain.com/index.cfm?username=<login> yields only http://mydomain.com/index.cfm when it runs it. Any ideas as to why it's cutting off the variables and what I can do about it?
If you are doing a POST, it would pass the variables as a POST (not in the URL). If you want the variables in the URL, you would need to do a normal GET method instead.