Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public class ClassName {
  2. private static string ipAddress;
  3. static {
  4. ipAddress = ApexPages.currentPage().getHeaders().get('X-Salesforce-SIP');
  5. }
  6.  
  7. @RemoteAction
  8. public static String userDetails() {
  9. showIpAddress();
  10. }
  11.  
  12. public static void showIpAddress(){
  13. system.debug('ipAddress ' + ipAddress );
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement