function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
GoForceGoGoForceGo 

Doing an HTTP Post to non-SFDC URL

When a user clicks on a link, I want to open a new window and do an HTTP post to a non-SFDC URL. I don't want to use httpRequest/httpResponse class because the response is greater than 100K and SFDC restricts to 100K.


What is the best way to do this?

 

SFDC visual force pages only post to SFDC addresses. 

BarryPlumBarryPlum

You can put "normal" html tags in VF pages.

 

You could do something like this:

 

<form action="http://myserver/endbpoint" method="POST"> <input id=myVar></input> <input type="submit" name="submit"></form>

 

 

 

GoForceGoGoForceGo

Thanks Barry...that's exactly the path I went down.....Here is my VF page...I am also submitting the form using Javascript on initial load and hiding the button...Essentially I want to go to the report without user seeing the form at all.

 

 

 

<apex:page showHeader="false" sidebar="false"
controller="showReportsController">
<apex:pageMessages />
<form name="searchForm" method="post" action="{!reportsURL}">
<input id="report" type="hidden" name="report" value="{!reportName}" />
<input id="formatOption" type="hidden" name="formatOption" value="{!format}" />
<input id="sessionId" type="hidden" name="sessionId" value="{!sessionId}" />
<input id="reportParameters" type="hidden" name="report Parameters" value="{!reportParameters}" />
<input type="submit" class="button" name="submitButton" id="submitButton" value="Fetching Report" />
</form>
<script>
var submitButton = document.getElementById("submitButton");
submitButton.style.visibility="hidden";
window.onload = new function() { submitButton.click(); };
</script>
</apex:page>

 

 

 

Message Edited by GoForceGo on 12-22-2009 11:37 AM