How to start a loop back proxy in Windows Phone 8 and have all app and internet traffic routed via it

I want to develop a proxy in windows phone 8 that will handle all data traffic emanating from phone(i.e. browser and Apps). The following procedures were carried out
a) Edited the Wifi settings http proxy and port to the loop back proxy running in the phone(i.e. 127.0.0.1) and the port in which we brought up the loop back proxy
b) We browsed pages and no request landed on the loop back proxy in the phone
Loop back proxy in phone is built using StreamSocketListener 
Another observation is that:
If we edit Wifi settings http proxy and port to a http/https proxy running on server then when we browse pages from windows phone we are getting the requests to server. Why is this difference?
Is there a limitation to run http/https proxy on mobile phone as loop back proxy.
But there are apps in the market for windows phone that behaves as HTTP proxy like 
http://www.windowsphone.com/en-us/store/app/smartproxy/75da629b-c0f3-4999-86a3-9559181d1299
Any help on the same would be appreciated

Hi,
Thanks for your reply and we have used StreamSocketListener waiting on a port and ip is given as loopback.The same settings are done for Wifi access point but when we browse any page in IE the requests are not landing on to the loop back proxy.Any idea on
the same would be highly appreciated

Similar Messages

  • I have just updated to the latest io5 and have lost apps and their data, can i reverse the new update to get back what i had on there?

    i have just updated to the latest ios 5 and have lost apps and their data, can i reverse the new update to get back what i had on my ipad?

    There is no need to do that, I had the same problem pal! Just do this and all should be fine!
    Delete one of the app's and re-install it, then for some reason everythign is restored to as it was!
    Hope you get on fine, let me know!
    Thanks
    Dan

  • I purchased Adobe Photoshop Elements 13 from Amazon.  It has been installed successfully.  However, when it comes up asking me to Accept the Licensing Agreement it continues to loop back to that screen.  I have tried uninstalling and reinstalling it but s

    I had previously purchased a DVD disk from Amazon.  I did get the program to install today.  However it continues to loop back to the screen where you accept the licensing agreement.  I had lost the previous serial number and was given a new one by Adobe.
    After trying over and over again to install the version from their download, I purchased a new copy from Amazon.  I am still getting the same loop on the software where it asks you to Accept the Licensing Agreement.  Short of reformatting my hard drive and starting with a clean PC, I have no idea what to try.  Is the previous software installed somewhere?  I had uninstalled it prior to downloading and installing the new software.  Any help is appreciated!

    I'm going to try reinstalling Windows 7 and installing the software that way.  I've reinstalled it before so am not concerned about taking that step.  If I need further assistance, I'll add a reply.  Thanks!

  • My kid bought a bunch of in-app stuff accidentally and i was wondering how i get my money back?? please reply i have order numbers and dates.

    I noticed about $350 worth of charges on my card today and had no idea what they were. After doing some digging I found it was an accidental in-app purchase my kid made while playing a game. I was just wondering how to go about giving the product, or whatever it was, back and getting a refund. I hope this will be honored because it's obvious I wouldn't spend that much on a game in just a few days, thanks.

    First, to prevent this from happening again, turn off "In App purchases" in the Restrictions settings on your iPhone. You may also want to turn off the ability to install apps, to prevent purchases in case the child gets hold of your iTunes Store account information, and set the password to be required immediately. For more information, see:
    http://support.apple.com/kb/HT4213
    As to a refund, that's not automatic since the terms of sale for the iTunes Store state that all sales are final. You can contact the iTunes Store, explain the reason for your request, and ask, though:
    http://www.apple.com/support/itunes/contact.html
    They're usually pretty lenient in the case of inadvertent purchases by children. No guarantees, though, just as if your child was in a store and ate a bunch of food (in other words, something that can't just be returned). And just FYI, some people do indeed knowingly spend that much in a game or other app in a few days, so Apple will make no presumptions just on that basis.
    Good luck.

  • My macbook pro's screen display has suddenly gone into a strange colour setting where everything appears in a kind of infrared colour palette an I can;t seem to change it back.  It's the same for all icon and websites, does anyone know how to restore?

    My macbook pro's screen display has suddenly gone into a strange colour setting where everything appears in a kind of infrared colour palette an I can;t seem to change it back.  It's the same for all icon and websites, does anyone know how to restore?

    Wow!  I think I had this same issue just last night.
    I was cleaning my macbook pro retina on the outside.  Then I opened it up and was wiping dust off the monitor and I can't pinpoint exactly when, but the colors changed suddenly.  It looked super strange, it was like green halo's and it looked worse when looking at it at an angle.  Of course I took no pictures!!!  I was freaking out that my 2 grand laptop was busted and I somehow removed a protective film or something.
    But I digress...  The image looked very green and spacey, it was almost a neat effect.  After about 5 minutes it started to look a little more digital though.  There were straight lines of this halo effect on the edges and top.  After about 10 minutes it turned into a predominate issue with the blacks on screen.  I could open a web browser and it was unnoticable on a white background.  After about 15 minutes, you could only barely see the green cloud effect if you looked at the monitor from an extreme angle.  After about 20 minutes, it was completely back to normal, I almost feel paranoid like I see a halo or something strange.  But I believe that might be all in my head now.
    So yerp, lemme know what you guys figure out.

  • How do I update my iOS? I have the iPad 1 and have tried over and over to try and update the iOS version to iOS 5.1, nothing works it will start updating then say that it did not update? PLEASE HELP!!!

    How do I update my iOS? I have the iPad 1 and have tried over and over to try and update the iOS version to iOS 5.1, nothing works it will start updating then say that it did not update? PLEASE HELP!!! P.s I'm running newest version of iTunes.

    Connect your iPad to your computer and let iTunes back up your iPad. After it does that disconnect it and go into your settings under general and under reset and select erase all content. After you do that reconnect to your computer, open iTunes and follow the screen options to set up your iPad as new. Once it is done doing that see if you have the latest version of iOS installed and if it does then either download gain the apps you had before or restore them from the backup made previous.

  • How to start a application with a login window?

    hi there
    does anyone have any idea on how to start an application with a login window? a login window is the first frame or window to be displayed when an application starts running. and only correct login id and password have been entered the real application will start. any sample out there? thank you.

    You can start a new thread by making a thread object and passing it an implementation of a runnable object. Runnable has just one method, public void run(), this is was gets executed in a second thread. perhaps the code you would use would look something like this.
    <code>
    // set up thread for login window
    new Thread(new Runnable() {
    public void run() {
    // construct your login window here
    // when you are done processing the
    // password....
    if(goodPassword) {
    authorized = true; // a global variable
    notifyAll(); // don't forget this
    else {
    System.exit(42);
    }).start();
    // control does not stop this code gets executed while
    // the above thread is running.
    // Set up main program here. This is done in the
    // backround.
    while(!authorized) {
    synchronized(this)
    { wait(50); }
    // now when the user logs in this frame pops
    // up real quick.
    myFrame.setVisible(true);
    </code>
    Hope you can figure it out.. good luck :)

  • 2 iphones 1 computer. updated my wifes phone to ios 5 her phone got wiped of all apps and all my contacts are on her phone. we had been using the same apple id but different user accounts on our laptop. How do i get her phone back to normal?

    2 iphone 4, 1 computer. i upgraded to ios 5 and just updated my wifes phone as well. her phone got wiped of all apps and all my contacts were put on her phone. we had been using the same apple id but different user acct on our laptop. How do i get her phone back to normal??

    Have your wife log in to her user account on the laptop. Launch iTunes, then connect her phone to the computer with the USB cable. Sync. That should put back all apps and media. Since you already upgraded her to iOS 5 she'll have to manually enter all her settings and preferences, and organize her home screens.

  • When you delete an app from your homescreen it is still in the cloud, does that mean you still have the app, and how do you get it back on to the home screen

    When you delete an app from your homescreen it is still in the cloud, does that mean you still have the app, and how do you get it back on to the home screen. new to ipad so do not know much. Anybody know.p

    As long as the app remains in the store then you can re-download it via the Purchased tab in the App Store app, or via the Purchased Link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    Similarly ibooks can be re-downloaded, and depending upon what country that you are in then music, films and tv shows may also be re-downloadable (if they remain available in the store).

  • I was wondering how to get my background back? it just quit on me one day and I can not get it back, I was wondering how to get my background back? it just quit on me one day and I can not get it back

    I was wondering how to get my background back? it just quit on me one day and I can not get it back, I was wondering how to get my background back? it just quit on me one day and I can not get it back

    explain further please...
    Is this your problem?
    Program, Utility, Desktop picture, Screensaver won't open or save changes
    https://discussions.apple.com/docs/DOC-3046
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • My phone was stolen, I have moved it in lost mode,but I can see that whoever has it,is changing phone name and can use it until I activate lost mode again.Can I do it permanently? How can I cancel ICloud back for the stolen phone,it blocks Cloud memory?

    My phone was stolen, I have moved it in lost mode,but I can see that whoever has it,is changing phone name and can use it until I activate lost mode again.Can I do it permanently? How can I cancel ICloud back for the stolen phone, as I cannot delete the stolen phone backup (says that backup is being in use) and this is keeping memory occupied in the Cloud and I cannot back-up the other devices.

    http://support.apple.com/kb/ht2526

  • I have recently installed Firefox Minefield in hope to try out the new TabCandy feature however I was dismayed to find that there was no TabCandy button. I was wondering either whereabouts this button is, or how I can get it back on my Minefield. I have a

    I have recently installed Firefox Minefield in hope to try out the new TabCandy feature however I was dismayed to find that there was no TabCandy button. I was wondering either whereabouts this button is, or how I can get it back on my Minefield. I have already tried uninstalling then reinstalling a few times.
    == This happened ==
    Every time Firefox opened
    == I first installed Minefield ==
    == User Agent ==
    Mozilla/5.0 (Windows; Windows NT 5.1; rv:2.0b3pre) Gecko/20100723 Minefield/4.0b3pre

    See this thread:
    https://support.mozilla.com/tiki-view_forum_thread.php?forumId=1&comments_parentId=736763#threadId736851
    Once you have the correct TabCandy build installed, you can't let it update because that version points to the wrong update package.

  • Updated to ios 5 and itunes 10.5 for my iphone and now i lost all apps and songs that i had downloaded in the past. how do i get everything back

    Updated to ios 5 and itunes 10.5 for my iphone and now i lost all apps and songs that i had downloaded in the past. how do i get everything back?

    in order to restore your songs and apps, you should just reconnect to itunes and sync your data. your phone ran a backup before it upgraded, and you can also do a restore. but the key is still to go to your itunes and sync back to your phone what you wanted there in the first place.

  • How can start service from the spfile, on  Windows 2003,

    On Windows 2003, how can start service from the spfile?
    connect to the database as sysdba and startup will start from the spfile.
    Once I use wondows Service for shutting down and startup datbase it start from the pfile.
    Which defeat my ability to change parameters at the system level.

    Hi,
    I'm not sure, but maybe your windows Instance service was created with
    C:\> oradim -new -sid <SID> -startmode m -pfile C:\oracle\product\10.1.0\admin\pfile\init.ora
    then, you need edit this service with command like below:
    C:\> oradim -EDIT -SID <SID> -spfile C:\oracle\product\10.1.0\admin\spfile<SID>.ora
    Take a look on this link before make any changes:
    http://www.stanford.edu/dept/itss/docs/oracle/10g/win.101/b10113/create.htm#i1006533
    Cheers

  • My Apple ID changed back to an old ID when I installed last update on my iPhone 5s.  How can I change it back to match what is on my MacBook Pro and iPad?

    My Apple ID changed back to an old ID when I installed last update on my iPhone 5s.  How can I change it back to match what is on my MacBook Pro and iPad?

    Hi GlendaGirl,
    Thanks for visiting Apple Support Communities.
    It sounds like you're unexpectedly seeing the incorrect Apple ID on your iPhone 5s. You can use these steps to sign out of iCloud on your iPhone 5s and sign in with the right Apple ID:
    iOS 6 and later: Go to Settings > iCloud.
    If you're still signed in with your previous Apple ID:
    Scroll down and tap Delete Account [Sign Out in iOS 8.] Depending on what iCloud options are turned on, you'll be asked to confirm that you want to delete data from your device. To confirm, tap Delete. (If you're using iOS 7 and have Find My iPhone turned on, you'll be asked to enter the password for your previous Apple ID. Enter the password, then tap Turn Off.) The data will be deleted from your device, but not from iCloud.
    Enter your current Apple ID to sign in. The data from your iCloud account will download again to your device.
    From:
    Apple ID: What to do after you change your Apple ID - Apple Support
    Best Regards,
    Jeremy

Maybe you are looking for

  • Bug while deleting values in form and it's parent member is dynamic calc

    Hi, I'm having a problem that seems to be a bug. I am trying to delete the values of member A11 in the following hierarchy, in a Planning Form: A (Dynamic Calc) |_A1 (Dynamic Calc) |__A11 (Store) |_A2(Dynamic Calc) !_A21 (Store) However when I save t

  • Material block for sale in plant-storage location level

    Dear experts, Please help me how to block a material to sale in plant-storage location level. Thank you. Regards, Badruddoza

  • Re Initialisation for 0CRM_SRV_IbASE_ATTR

    Hi Gurus, I have tried doing re init for the 0CRM_SRV_IbASE_ATTR but I have got error says delete the init request. But I deleted the init from the shedule in the infopackage and no data in the Datatarget as well. Please help me out from this. Thanks

  • Deactivate change pointer in particular article type

    Dear all expert We are using IDOC type Wp_plu02 for outbound article processing we also activate change pointer setting on IDOC type wp_plu02 but now we want to do deactivate change pointer in particular article type (project articles) how we can do

  • Debug Event: [...\ ...\src\TickTime.cpp-290]

    Hello, I have meeting a problem for 24 hours on adobe first pro cc on 2014... Debug Event: [...\ ...\src\TickTime.cpp-290] and adobe announces a grave error then he(it) closes. I uninstalled everything and quite reinstalled, but the problem persists.