• trick.ax1374
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 20
    Questions
  • 10
    Replies
Hi Friends, From the salesforce customer portal which is accessible to outside public, when somebody request something such as web service then which IP address is used .Is that customers IP address or salesforce IP address will be used to access web services from salesforce portal? Any reply will be highly appreciated? Thanks, Trick
Hi friends, when I try to access webservices hosted on the server from salesforce customer portal I get an error message,unable to tunnel through Proxy http,1.0 service unavailable. Can IP Whitelist help me in this?If it then please answer the following questions Q-1 Where do I need to add IP addresses to ensure that salesfiorce can communicate with server hosting webservices? Q- 2 I keep on moving from Europe to Asia and I access salesforce from Asia.Once I have got salesforce IP addresses added to the server hosting web services(I am guessing that I need to add IP addresses on the server hosting web services) ,Will I be able to access my webservices from salesforce while sitting in Asia. Q-3 After adding IP addresses.Will I be able to Login to salesforce while I am in Asia?. Can somebody Help? Thanks, Trick

Hi Friends,

 

I have flow created by some other consultant .I want to open this flow to make modifications .However,I do not see open link there.

 

1) If I create flow in my developer org,I get an option to open and make changes to it.Can somebody throw some light on this.What could be the reason that I cannot see open link in the company';s sandbox.

 

Is it something developed outside od salesforce and then using in salesforce .

 

2)When the user clicks on the finish button ,he see a list of checklist.When I check the page in which flow has been embedded,I do not see finishlocation attribute in the visualforce page.How does the user is redirected the page with a list of checklist

 

3)Is it possible to that URL could be hardcoded within the flows itself.For example finish button at the end of the flow has some URL associated to the button which redirects the user to the page

 

Can somebody please help,it is needed urgently?.

 

 

Thanks,

Trick

 

 

Hi Friends,

 

I am trying strikeiron verifyemail webservices.I have writtern apex class and from this class I try to call verifyemail web services of strikeiron.

 

When I exceute it using anonymous block,I get the following error:-

 

System.CalloutException: IO Exception: Unauthorized endpoint, please check Setup->Security->Remote site settings. endpoint = http://ws.strikeiron.com/StrikeIron/EmailVerify5/EmailVerification

 

What can be the reason for this error and what can I do to get rid of this error.

 

In my Apex class I  have done authenictaion by providing useraname and passord and then I am calling function to verify email.

 

Can somebody throw some light on it?

 

Here comes the code:-

 

public class NewEmail
{
public email2.SIWsOutputOfVerifyEmailRecord NewEmail()
{

Email2.EmailVerificationSoap temp=new Email2.EmailVerificationSoap();
temp.licenseinfo=new email1.licenseinfo();
temp.licenseinfo.registereduser=new email1.registereduser();
temp.licenseinfo.registereduser.userid='chinglish1234@gmail.com';
temp.licenseinfo.registereduser.password='strike957';
email2.SIWsOutputOfVerifyEmailRecord myresponse=new email2.SIWsOutputOfVerifyEmailRecord();
myresponse=temp.VerifyEmail('nitin009_9@yahoo.com',20); 
System.debug('The value in the myreposne is'+myresponse);
return myresponse;

}
}

 

 

Thanks,

Trick

Hi Friends,

 

Here is my scenario:-

 

I have force.com sites and on it  I have webpage.This webpage may not be accessible to some users and they will have to download some sotware in order to access this page.

I want to make sure if the page is not loaded in the user's browser then hyperlink should become visibkle to the user so that he can download software. 

The users who are able to access this page ,hyperlink should not be visiblke to them .

 

I am looking for some kind of conditional hyperlink

 

 

Thanks,

Trick

 

Hi Friends,

 

I have an Html file and I am extracting some data dynamically from the database and passing it to the HTML file.In the Html file I have two text fields in which I want to show he extracted vaalues.However  I have not been able to show those values.

 

Does any one knows how to do that,Any ideas are most welcome.?

Below give is what I am doing 

 

Testapp.html file is the file to which I am sending data

 

<apex:iframe src="http://bostonbusiness.s3.amazonaws.com/testapp/TestApp.html? parameter1=Hello&parameter2={!account.Name}  height="700" width="100%"/>

 

Thanks,

Trick123

Hi Friends,

 

My scenario is such that only when customer logs into the portal then tab on the portal should become visible.if he is not logged in then it should not become visible to the customer.   Any idea on how we can do this.Some attributes or something else.

Any info or any example on this is highly welcome.If u can point to any link which can help me in accomplisihing this will be great.

 

Thanks,

Trick

 

I am trying to capture the 'onunload' javascript event on a visual force page. Adding a html body tag and then adding the onunload event dosnt work. How can I capture this event.

In general I am trying to prompt the user when they move away from this page (either to another tab or link within the browser or if they decide to close the browser).

Thanks