• saii
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 14
    Questions
  • 11
    Replies

hi

I have Written atest case for the Class of the  http request

I am getting the Following Error has 

Methods defined as TestMethod do not support Web service callouts, test skipped

and am getting the Codecoverage 100 but getting above error

How to Resolve it can u please Help me

Hi,

 

I am Making the Http request to Amazon S3 for file download  am able get content of  the File in the Debuglog and am able to display on the page but my requirement is to download file . Am using the Content Dispostion when sending the Response but does not work . how can i download file . Here am making the  Rest Request

please help  me to solve the Problem

Hi,

I am displaying the the checkbox field in the pageblocktable.

It must select only one column only .If he select another checkbox it must display an error message .

u have select the checkbox already. how to keep these validation rule in pageblocktable. in visualforce page

please help me to  solve this issue

Hi

I am getting the response has below when i send an http request .

am getting response has text data andin that url also .now i want to get the url from the response. only please can u help me

I am sendng an example of response

 

string response='the report has generated to sai and  and ready to access the data  ..etc.after this amgetting an url   http://www.abcadef.com/abc.asp?id=1  after these url am getting thanking you';

 

In these above response i want get only url from the response.please can u say me,

thanks in advance

 

 

Hi

I have created  On visualforcepage and it is calling thecontroller when Page excuted .and its working fine.

Now i have created a formula field hyperlink  . when i click on that hyperlink it is opening  in a new  window but now my requirement is when i click on the hyperlink should open has the Pop up Page .Please help me

 

HYPERLINK("/apex/Activity?id="+Id+"",' [Comments]').

 

 

thanks in advance

Hi

I have small doubt .I am calling the rest Request in my class.If i get the status code=200 then that  If condition will execute else an error message will be display  It is working fine,,,,,,

How to cover that part in testcase in class......please help  me


//construct an HTTP request
HttpRequest req = new HttpRequest();

req.setEndpoint('sample endpoint');
req.setMethod('POST');

//send the request
Http http = new Http();
HttpResponse res = http.send(req);

//check the response
if (res.getStatusCode() == 200)
{
insert contact;
}
else
{
ApexPages.Message myMsg = new ApexPages.Message(ApexPages.Severity.ERROR, 'Request Fail');
ApexPages.addMessage(myMsg);
}

 

thanks in advances

 

 

Hi

I am able Open A new Window On click On the Button .but i want close the existing window  when i click on that button .but am not able to close an existing window.

I have tried window.close() but not working can u please help me

<script type="text/javascript">
function myFunction()
{

 window.open ("https://www.google.com/","mywindow","menubar=1,resizable=1,width=8000,height=9000");
 window.parent.close();    // not working
}

</script>

I have created a new tab to execute the Page . i want close my existing window

thanks in advances