Localhost issue with Adobe Edge Inspect on iPhone

I'm synching up multiple devices to use Adobe Edge Inspect.
I downloaded and installed:
Chrome extension.
Adobe Edge Inspect on Android (on a Samsung Galaxy Tablet)
Adobe Edge Inspect on iPhone 4
I am using a Windows 64bit OS.
When I inspect online websites, both the tablet and iPhone synch.
I have a local instance of Tomcat.
I have a very simple index.html (Hello World in it).
When I use in my chrome browser localhost:8080 my Android tablet is synched
The iPhone does not synch, and I get a request timeout.
I also attempted using the IP Address instead of localhost with the same result.
The iPhone is synching with sites that I access that are hosted on the web.
How can I get it to synch using Tomcat so that I can use my localhost instance?
Thanks

This is pretty strange. I think you should try making sure Windows Firewall and any other firewall or virus protection software is off and try again to see if you get a different result with your local apache server.
Let us know if that helps. If not we'll see if we can come up with any other ideas.
Mark

Similar Messages

  • Are there any known issues with Adobe Edge Animate and Yosemite? Experiencing performance issues since upgrading OS

    Are there any known issues with Adobe Edge Animate and Yosemite? Experiencing performance issues since upgrading OS. Animation I was working on that had been performing in browser fine suddenly stopped working, and was not related to any action I had done at that point. Also was working in it today and program stopped responding to key board short cut commands.

    I am having a whole slew of odd interface problems with a fresh 2014.1.1 on a fresh macbook pro with latest Yosemite. Program locks up, cursor selections don't show, things disappear. I have a mac mini also and the program runs fine on it. Is there possibly something related to the solid state hard drive in new macs?

  • Why directories including "file" (like /fileadmin in TYPO3) are not working with Adobe Edge Inspect?

    TYPO3 uses a directory named fileadmin where all the user data (e.g. templates) is stored. But as far as i tested yet the word "file" in a folder name is a problem for Edge Inspect. The connected devices didn't react if i choose this folder at my iMac or MacBook. I've got this problem locally (using MAMP 2) and on a standard web server too.
    At the moment i have to use a symbolic link (e.g. fadmin -> fileadmin) to use Edge Inspect in my TYPO3 templating workflow.
    Thanks
    Michael

    Hi Mark,
    thanks for the quick answer. So i know it was not my fault.
    After finding this bug the solution with a symlink is easy to use, so it's not a critical bug anymore if you can use a workaround like this. But it took me some time to figure this out.
    I'm glad to help you guys with this really awesome tool.
    Thanks
    Michael

  • Adobe Edge Inspect Open Issue

    I installed Adobe Edge Inspect on a MacBook Pro, running OSX 10.8.2. Edge Inspect would not open. Following advice from an earlier discussion, I discarded the preferences folder and rebooted. Edge Inspect opened after the reboot and sent me to a web page to sign in. I signed in and nothing... No error. No open icon in the doc. No report or status indication of any kind. Now, Edge Inspect won't open again. It does open on my iPhone 4S and the iPhone app sees my MacBook Pro. The iPhone even gives me a passcode to connect, but there is absolutely no field nor application nor anything on the MacBook where I can enter the code. Nuttin' Any help would be greatly appreciated. If it's not going to work, hopefully, there would at least be some indication of why, or some notice telling me I need to do something else, if that is the case.

    Hi Mark,
    I also have this issue running 10.8.2. Edge Inspect fails to load, Console entries claim it crashed as per below
    21/02/13 11:45:28.254 AM EdgeInspect[6364]: objc[6364]: Class WebCoreTextFieldCell is implemented in both /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore and /Applications/Adobe Edge Inspect.app/Contents/Frameworks/dvawebview.framework/Versions/A/cef//libcef.dylib. One of the two will be used. Which one is undefined.
    21/02/13 11:45:28.367 AM EdgeInspect[6364]: *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 1 beyond bounds [0 .. 0]' *** Call stack at first throw: (      0   CoreFoundation                      0x972f612b __raiseError + 219      1   libobjc.A.dylib                     0x973bf52e objc_exception_throw + 230      2   CoreFoundation                      0x971ecc3b -[__NSArrayM objectAtIndex:] + 251      3   CoreFoundation                      0x971cc6d8 CFArrayGetValueAtIndex + 88      4   EdgeInspect                         0x0000e808 _ZN3App16GetDefaultLocaleERSbIhSt11char_traitsIhEN7dvacore7utility19SmallBlockAllocator12STLAllocatorIhEEE + 816      5   EdgeInspect                         0x0000ebb5 _ZN3App14GetLocaleToRunERSbIhSt11char_traitsIhEN7dvacore7utility19SmallBlockAllocator12STLAllocatorIhEEE + 147      6   EdgeInspect                         0x0000f741 _ZN3App13PreInitializeEv + 773      7   EdgeInspect                         0x00015d81 main + 113      8   EdgeInspect                         0x00002735 start + 53 )
    21/02/13 11:45:29.598 AM com.apple.launchd.peruser.501[198]: ([0x0-0x30d30d].com.adobe.EdgeInspect.application[6364]) Job appears to have crashed: Trace/BPT trap: 5
    21/02/13 11:45:30.035 AM ReportCrash[6365]: Saved crash report for EdgeInspect[6364] version 1.0.327 (1.0.327.385782) to /Users/allanbanks/Library/Logs/DiagnosticReports/EdgeInspect_2013-02-21-114530_Banksy-MBP.crash

  • How To: Use Visual Studio, IIS Express, and Adobe Edge Inspect to view local projects

    You CAN view a Visual Studio project with Adobe Inspect. The work around takes a little bit of time.
    This involves using IIS Express to run your Visual Studio project, which is mainly a setting in Visual Studio, a Firewall change, a few command line and IIS Express config change.  It isn't actually all that bad, but will make your life A LOT easier.
    Here are the steps. (Note these are steps I used for Visual Studio 2012 and your project is part of a solution project.  Windows 7 or Windows 8)
    1. If IIS in not turned on, turn it on.How to: Enable Internet Information Services (IIS) - this should install IIS Express as well.
    2. In Visual Studio, find the port that Visual Studio will be using for your project by Running your web project (Debug), and note/write down/save the port number that shows up in the browser when the project launches. (ex.  http://localhost:12345)
    3. Add a NetShare Reservation (process for this will be different for Windows XP)
    Go to your Command Line (CMD) in Windows and in c:\Windows\system32> type in
    netsh http add urlacl url=http://yourIPaddress:yourPortNumber user=everyone
    (ex. netsh add urlacl url=http://12.34.56.78:12345 user=everyone)
    Hit Enter key. You should be a successful add reservation message
    3. Go to your Windows Explorer (File system) and go to c:/Users/YourName/MyDocuments (or Documents)/IISExpress/config/ and open 'applicationhost.config'
    In the 'applicationhost.config' file find your site in the <sites> section.
    Example:
    <sites>
    <site name="WebSite1" id="1" serverAutoStart="true">
                    <application path="/">
                        <virtualDirectory path="/" physicalPath="C:\MyProjects\TestSite" />
                    </application>
                    <bindings>
                        <binding protocol="http" bindingInformation=":12345:localhost" />
                    </bindings>
                </site>
    </sites>
    In this section ADD 2 new lines to the <bindings> section. Note add your own IP address and your own Computer Name
    <binding protocol="http" bindingInformation="*:12345:12.34.56.78" />
    <binding protocol="http" bindingInformation=":12345:MyComputerName" />
    Save the config file.
    4. Open up your Windows Firewall and go to 'Advanced Settings'. Here you want to create an Inbound Rule.
    Right click on Inbound Rule and select New Rule
    - Rule Type select 'Custom'
    - Program leave this
    - Protocol and Ports > Protocol Type select 'TCP' then Local Port select 'Specific Port' and fill in the port number you got from VS.  Leave Remote Port alone.
    - Scope
    There are a few ways of doing this. Typically you would go the the Remote IP address and select 'These IP addresses: and select ADD > select 'Predefined set of computers' and choose Local Subnet.  IF this does not work leave Remote IP addresses > Any IP address option selected instead.
    - Action leave this
    - Profile select Domain and Private
    - Name put IISExpressWeb for the name
    Select 'Finish'
    5. Go to Visual Studio. (Note if you have multiple projects in your solution, choose your start up project. Right click on your project in Solution Explorer in VS and select 'Set as Start Up Project' )
    Right click on your start up project again and you should see an option to 'Use IISExpress'
    In the DEBUG dropdown (from the main menu bar at the top) select 'YourProjectName Properties'. Mine was the last one in the list with a wrench icon next to it.
    This should open an new tab in your project, You should see a left hand list of option and a right hand column of options.
    In the left column select 'Web' and in this tab select Use Local IIS Web server and select 'Use IIS Express' and type in your IP Address and port number (same as before) in the Project Url text box.
    Save.
    NOW, you should be able to run your project in Visual Studio and use Adobe Edge Inspect on your device and view new results in Chrome. You can develop from there.
    If you still can not see it working, please be sure your device is on the same SubNet or Wireless network as your computer.  If you are in a large network but the domains can still see each other, the Firewall Setting detailed above to allow Any IP Address in your Scope section.

    Hi CMosqueda,
    Thank you for taking time to share this information with other users.
    Thanks,
    Preran

  • Adobe Edge Inspect - Bootstrap.min.css (bootstrap 3)

    Hello,
    When trying to use Adobe Edge inspect on my website. For some reason I can not view the css in the remote inspection for the iPad. So I started removing style sheets to see which ones were creating the problem. It turns out to be Bootstrap 3 css file called bootstrap.min.css. Once I removed that I was able to inspect and see my other CSS styles. Thinking it was maybe just my site, I also tried to remote inspect for Bootstraps actual site (www.getbootstrap.com) and their CSS was not loading in the inspector for me also. Is there a work around for this? I could have sworn I didn't have any issues before but just now seems to be happening. Any help would be greatly appreciated. I could be doing something wrong.

    I agree seems like Adobe is behind the poor curve with support for Bootstrap and Foundation frameworks both of these are very popular for development platforms for mock ups I have been looking for a really good WYSIWYG editor for either of these frameworks Dreamweaver has some plugins but the developer is asking crazy amount of money which from what I can tell just points to the namespace or css, js files.  If Adobe could create a application like Edge Reflow using these powerful frame works they would open themselves up to a huge market as people could create functional cross platforms applications I  and believe this is a growing market as more and more people are taking to social media and creating more content for social interactions.  An application like Edge Reflow that provided Responsive web development support for Bootstrap and Foundation would be a huge success I could imagine tools Edge Flow really taking center stage for beginners and intermediate developers.

  • How to download Adobe Edge Inspect?

    It maybe weekend woes, but I find it impossible to download Adobe Edge Inspect. For starters, I would like to test the free version.
    This is what I'm doing
    1 )install the Edge Inspect Extension on Chrome
    2) sign up for Adobe Create Cloud
    3) go to apps
    x) edge tools & services does not include an icon for Edge Inspect
    Following this blog post:
    http://blogs.adobe.com/edgeinspect/2012/10/23/how-to-purchase-edge-inspect/
    5) Go to plans page to select "getting started"
    x) the button is disabled
    Trying on the main edge inspect website
    http://html.adobe.com/edge/inspect/
    6) click on edge inspect
    7) click on getting started
    x) I'm back in the cloud apps section, without the edge inspect icon
    I then downloaded the Adobe Application Manager
    x) When running there is also no option to download edge inspector
    Can anyone tell me if I'm doing something wrong?

    The Learn More link for Adobe Edge Inspect directs you to different pages depending on if you are signed in or not with your Adobe ID.
    If you are not signed in you will go to here http://www.adobe.com/go/edgeinspect which redirects you to here http://html.adobe.com/edge/inspect/. This is information on Inspect.
    If you are signed in you will go here https://creative.adobe.com/inspect and be able to download Inspect. If you are not signed in and try to go to https://creative.adobe.com/inspect you will be redirected to https://creative.adobe.com from where you can sign in or create a new Adobe ID.

  • License Question - Adobe Edge Inspect

    Ok, here is the problem. We have 3 Creative Suite Cloud licenses for 3 members of our team to use at work. Awesome.
    We have now built a mobile testing station which is one computer connected to numerous mobile devices for testing purposes. We want to Use Adobe Edge Inspect on this computer in order to do this. But when I install Creative Cloud and try and set Edge Inspect up it tells me I need a paid version in order to connect multiple devices. Do I need to buy a whole new Creative Suite License for this computer in order to use this one 'lite' application? Or can I use one of our existing licenses so that I can run this application on the testing station?
    Thanks
    Mike

    If the installation would be getting used at the same time that the other license owners would be using their CC installations then you likely need to have a separate license for the test station.  The CC licensing allows for installation on two machines with the exception that the subscription is only in use for one machine at any given time.

  • Adobe Edge Inspect won't open

    Hi,
    I'm trying to launch Adobe Edge Inspect but it won't do it.
    I have another user in this same computer and it works flawlessly. The strangest thing is that I installed the software from this user (where the app won't launch).
    Console gives me this report:
    Process:         EdgeInspect [4507]
    Path:            /Applications/Adobe Edge Inspect CC.app/Contents/MacOS/EdgeInspect
    Identifier:      com.adobe.EdgeInspect.application
    Version:         1.0.407 (1.0.407.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [176]
    Responsible:     EdgeInspect [4507]
    User ID:         502
    Date/Time:       2014-02-06 11:38:19.101 +0100
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  BE07DE49-C882-75EA-4EBF-AD729FE8C0C4
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    terminating with uncaught exception of type dvacore::filesupport::dir_create_exception: $$$/dvacore/filesupport/DirCreate=The directory '@0' could not be created. Please check the parent directory protection or permission rights.
    abort() called
    Thanks :-)

    Okay, I solved it by deleting the Folder under /user/library
    Thanks to...
    adliecxkamnadnra, 27-mar-2013 14:09   in reply to Mark Rausch Report
    No dice.
    I sent the folder:
    Users/[username]/Library/Preferences/Adobe/Edge Inspect
    into the trash. Relaunched the app and same thing. Edge Inspect appears to launch, makes a new pref folder, then crashes in a matter of 3 seconds.

  • I cant open up adobe edge inspect from my applications menu

    i cant open up adobe edge inspect from my applications menu

    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Adobe Edge Inspect says I'm offline. I'm not offline.

    I have Adobe Shadow installed. It works. 
    I just installed Adobe Edge Inspect, but it says I'm "offline". The problem is that I am not actually offline. Any help for this dead-end?

    When does this error pop up for you?
    Are you getting this after you sign in with your e-mail address?
    Or does it appear as soon as you open the app, or when?
    Also, what version of Mac OS are you running?
    Are you running any security software, like firewalls or proxies?

  • I don't know if this is the right section but I experience the following issue with Adobe Acrobat Pro XI installed on Windows 8.1. When I start Acrobat the related window opens normally but, after some scroll up and down along the document, it blocks, Acr

    I don't know if this is the right section but I experience the following issue with Adobe Acrobat Pro XI installed on Windows 8.1. When I start Acrobat the related window opens normally but, after some scroll up and down along the document, it blocks, Acrobat doesn't respond to any command I can give and, in place of the pointer arrow, a vertical bar, as the one of the text editor appears. The only way I can stop Acrobat is by means of the task manager. I tried to de-install and the re- install Acrobat but the behaviour is always the same. What can I do??

    Have you opened Acrobat and gone to Help>Updates to get an updated install?

  • Having major issues with Adobe Media Encoder (AME) - exporting with weird image flickering/colour anomalies, crashing regularly, freezing during encode...!

    Hi Guys
    I am having some real issues with Adobe Media Encoder (AME) at the moment.  It appears that I am unable to encode an h.264 for Vimeo from a Premiere Pro Project file at the moment without at least some weird image issues that are not supposed to be there.  These include weird flickering, colour changes, artefacts etc.  This is if I am lucky...often I am unable to get the process to complete as the application either crashes and tells me there has been a problem or it simply freezes and I have to force quit the application and often restart my machine.
    The problem seems to not to just be with h.264 for the web encodes but also with BluRay h.264 as well. As yet I haven't seen if there is a problem with MPEG-2 for DVD so I will check this out too!
    Does anyone else see this happening or does anyone know what might be the problem?
    I thought the Premiere Pro project might have been corrupt so tried a different project but the same issues were happening here too.
    Any help would be really gratefully received.
    Cheers
    EDIT - I have just found this online which is exactly the problem I am having! Thanks a bloody bunch Apple! 10.9.3 causing headaches for Mac Pro users | MacIssues
    Message was edited by: Alex Cameron

    Agreed, I now have a project to GET OUT, and AME crashes consistently 1/3 into the render. It appears to halt all processing after (real time) 00:02:30
    Am seriously considering uninstalling CC as I am beginning to find other issues in some apps, and going back to CS6/MC just so I can get work out. Durn it Adobe this is AWFUL!!
    Alright, let's try to be constructive instead of throwing rocks... but the frustration level is high, and I have material on deadline. Let's get with this, guys...
    What OS Win7, 64-bit
    What version of AME/PPro (Please be specific by getting the full version number in the About Adobe Media Encoder screen) 8.2.0.54 Ppro: 8.2.0 (65)
    When is it crashing (Again, the more detail here about where it was in the encoding process the better) roughly 1/3 into the sequence, always on exactly the same frame - tried replacing the clip with something different to see if it was a timeline error, and NO EFFECT.
    What is your source (PPro project or media file (what kind?)) PPro
    If the source if a PPro project, does it work when exporting directly from PPro? NO
    What format are you exporting to? H.264, QT, WM, tried everything my client can play.
    Do other formats work? MPEG2, QuickTime, etc? NO
    Have you tried with GPU rendering on? How about turning it off by switching to Software-only mode? Mine doesn't have any choice, it's software-only.
    Have you tried disabling Native Sequence Loading? (AME Preferences: General > Enable Native Sequence Loading) No effect
    Other things I tried: uninstalling/reinstalling AME, setting cache to a fast local disk.

  • Issues with Adobe Professional 9

    Hi
    We are facing some issues with Adobe Professional 9,
    The problems are as follows while converting the DOC file to PDF using Adobe Proff 9.
    1) Bullets are missing
    2) Crossreferences are not working
    3) adding junk characters in header.
    Can you please help me on this.
    We need to understand the issue.
    Manohar S S

    Just some stray thoughts on the topic:
    Use Adobe PDFMaker to create the PDF from the MS Word file.
    When a MS Word cross-reference is inserted, ensure that "Insert as hyperlink" is ticked in the Cross-reference dialog.
    In the configuration of Adobe PDFMaker's Preferences, ensure "Add Links" is ticked (under the Settings tab).
    Ensure that the installed Acrobat (and associated Adobe PDFMaker) is working with a compatible version of Office.
    See: http://kb2.adobe.com/cps/333/333504.html
    For all characters used in the source MS Word file; ensure that the characters used provide proper mapping to Unicode.
    Do not use characters that rely upon a restricted character value.
    When using Word Headings/Styles that incorporate the bullet character, ensure you work from those that are "built-in" to MS Word.
    If you are working out of Windows 7 / Office 2010 you need to move up to Acrobat X.
    Be well...

  • Issue with Adobe maybe?

    Hi,
    So I am having issues with adobe reader.  I work as tech support and someone called in with issues.  His issue is:
    Cannot open forms and enter information then save them back using his program.  The webprogram he is using is JIDS.  JIDS requires that the pdf be opened in the webbrowser.  This is so it can be saved back to their database or whatever. 
    The issue is when he tries to open the document in ie it opens it on his local adobe program not in the browser.  I checked the addons and adobe will not appear there. (in any of the catagories plz do not reply im in the wrong view or whatever)  If I open a force ie to open a pdf nothing appears (makes sense because it says there is no addon).  I have uninstalled and reinstalled adobe multiple times from adobe.com (it is up-to-date) every time says installed successfully.  This is a new computer and does not have older versions on it.  I have removed it using the adobe cleaner then reinstalled no change.  I tried reapplying the acropdf.dll using regsvr32 both in the 32bit and 64 bit locations (\windows\system32\ and \windows\sysWOW64\) and I keep getting an error that says loaded but dllregisterserver error 0x80070005.  which is permissions error, but he is the only admin on the pc(local admin) and has full access, uac is shut off and i was using the cmd in run as administrator mode.
    Since i couldnt find anything else on this I dicided to use firefox since ie and FF are only browsers allowed by JIDS.  I downloaded newest FF and FF does say adobe reader addon is installed, but when i open the pdf in the JIDS program the fields are not editable and it has a popup ontop of the browser saying something about compatability issue and asks me to open with different program (clicking it opens the pdf in the adobe reader program and it is then editable but will not save back to the website, no supprise there).
    He is using windows 7 64bit logging onto a domain.  Using IE9 and updated adobe reader (11.0.03) and newest version of Firefox
    Windows is fully up to date.
    His computer is the exact same model as the one next to it that works perfectly fine and he hasnt done anything that could have messed up the system files (he knows he is bad with computers and doesnt do anything without asking someone else first).  Mostly only uses the webbrowser and another program thats installed on there for him already.
    I plan on installing adobe reader X or possibly older version of IE/FF to see if these might help.  I also will be checking/disabling what he has for AV (i think its just windows security essentials but im not sure will doublecheck). 
    Any other suggestions on things to try?  What is could be causing these issues?

    Probable issue with the Firefox is that in the documentation it is poorly worded poorly,  JIDS only support FF 17.
    What is the issue with IE if that does fix the FF issue?

Maybe you are looking for