I have a webservice class that will be in a managed package and distributed to multiple clients. The class currently has a variable with the hardcoded value of the server it's hitting.

The problem: the server will be different for each client, so a hardcoded value will not work.

I figured since each client will have to add their server to their remote site settings, the easiest way might be to grab the correct URL from their setting. Is this possible? Or is there another "right" way to accomplish this? Thanks

link|improve this question

69% accept rate
feedback

1 Answer

up vote 7 down vote accepted

The best way I've found to save configuration values is to use Apex Custom Settings. To set the Remote Site settings programmatically you could use the Metadata API.

link|improve this answer
This did the trick, thanks – CDelaney Jul 27 '11 at 18:49
How about if all I want to do is test to see if the remote-site setting exists? – tggagne Nov 16 '11 at 15:25
I just want to test (inside a unit test) to see if the remote site is properly configured. After deploying to production (or integration) I want to test multiple setup parameters, one of them being if the remote site setting has been created correctly. – tggagne Nov 16 '11 at 15:31
1  
I'm not aware of any way to access remote site settings setup from within Apex code. <hack-alert>You could write a method which attempts a callout to a given URL, then if Salesforce suppresses the callout (catch the exception) you'll know that the Remote site setting is not setup correctly</hack-alert> – Adam Nov 16 '11 at 18:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.