Jump to content

Messito

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Messito's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. 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..?
  2. 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.
  3. 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!  :)
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.