Messito Posted July 8, 2006 Share Posted July 8, 2006 Hello,Looks like a simple code, but I had problems doing it.[u]What's needed?[/u]The php script should call a remote aspx service on another domain -> [b]www.anotherdomain.com/service.aspx?p1=x&p2=y[/b]This "service.aspx" will only execute if this request is sent from a [b]specific IP[/b]. In other words, this service has IP restriction, for security matters.The returned XML response notifies if the referring IP is authorised or not.I've configured my site's IP as an authorised IP.[u]The problem[/u] To invoke the service I've used a simple implode() statement:[code]$xmlAnswer = implode('', file($URL));[/code]Where $URL is the URL of the service call -> http://www.anotherdomain.com/service.aspx?p1=x&p2=y[b]I get an error response of Invalid IP.[/b]Which I suppose means that the call for the remote service is invoked from the viewer IP (browser page), and not from the machine IP.[b]Any Ideas how to fix this?[/b]Thanks in advance! :) Quote Link to comment https://forums.phpfreaks.com/topic/14028-invoking-a-remote-aspx-script-that-has-ip-restrictions/ Share on other sites More sharing options...
Daniel0 Posted July 8, 2006 Share Posted July 8, 2006 Are you trying to restrict a script so it may only be run by certain IPs? If so, look at this snippet:[code]<?php$allowed_ips = array('127.0.0.1','1.2.3.4','9.8.7.6');if(!in_array($_SERVER['REMOTE_ADDR'],$allowed_ips)){ die("Your IP ({$_SERVER['REMOTE_ADDR']}) is not allowed to run this script.");}// do whatever here...?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/14028-invoking-a-remote-aspx-script-that-has-ip-restrictions/#findComment-54796 Share on other sites More sharing options...
Messito Posted July 8, 2006 Author Share Posted July 8, 2006 Hi,thanks for the quick reply.Actually the service I'm calling to (which is a 3rd party) -> [b]service.aspx [/b] , is the one which has IP restriction.What I need to do, it to make sure that the call for this service (which is done by my php script) will originate from the machine ip(my domain IP) , and not from the user IP.The method I tried, using implode() - apparently doesn't work - so I'm wondering how it can be done. Quote Link to comment https://forums.phpfreaks.com/topic/14028-invoking-a-remote-aspx-script-that-has-ip-restrictions/#findComment-54800 Share on other sites More sharing options...
Daniel0 Posted July 8, 2006 Share Posted July 8, 2006 Just do something similar in the ASP script (I don't know ASP so I can't give an example), just your machine/server IP in the array. Quote Link to comment https://forums.phpfreaks.com/topic/14028-invoking-a-remote-aspx-script-that-has-ip-restrictions/#findComment-54803 Share on other sites More sharing options...
Messito Posted July 8, 2006 Author Share Posted July 8, 2006 but this asp isn't mine - it's a 3rd party service I'm calling to execute an action for me.My script is in PHP - I need it to call the aspx file, and that this call will originate from my server IP, not from the browser IP.Any ideas..? Quote Link to comment https://forums.phpfreaks.com/topic/14028-invoking-a-remote-aspx-script-that-has-ip-restrictions/#findComment-54938 Share on other sites More sharing options...
Messito Posted July 16, 2006 Author Share Posted July 16, 2006 Pitching the post up... Quote Link to comment https://forums.phpfreaks.com/topic/14028-invoking-a-remote-aspx-script-that-has-ip-restrictions/#findComment-58905 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.