The application can not send http-request being on a virtual machine.

Hello, I have console application, which process data, and send report to Web API controller of my site. But the data do not reach the controller. Watching visual studio debugger for the controller, I see that he has not even called. But the application
being launched on my local PC, regularly sends data to the controller.
Im using HttpClient class, here is string which send data to server:
Client.PostAsJsonAsync("http://[site].azurewebsites.net/api/Decision", report);
VM OS - Windows  Server 2012.
What could be the
problem?

Hi,
Did you create the http endpoint for virtual machine?
Regards.
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Similar Messages

  • When I try to launch iTunes is says that the application can not be opened

    When I try to open iTunes it says that the application can not be opened, that the required folder can not be found. On my husbands log-on iTunes will open. I am so confused. Please help!!!

    Hello Keaton44,
    I recommend taking a look at this article named iTunes: Finding lost media and downloads found here http://support.apple.com/kb/ts1408
    If you need to re download the movies you bought from iTunes you can do that free of charge with this article.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    Regards,
    Sterling

  • HT4796 on my windows XP pro PC i opened windows migration assistant and the first message is: "Cannot start Outlook Express. The application can not initialize the storage. The computer doesn't have enough memory or your disk is full. (0x80007114)"

    on my windows XP pro PC i opened windows migration assistant and the first message is: "Cannot start Outlook Express. The application can not initialize the storage. The computer doesn't have enough memory or your disk is full. (0x80007114)"
    On my windows PC outlook express is NOT running and as far as i know, NOT installed.
    How do I install Outlook Express??
    I want to use my new Imac.....    

    Disk storage issues frequently happen if the hard disc is over 85% full.    Make sure your trash can is emptied after backing up any files you want to keep elsewhere.

  • What the answer for this  error on a Macintosh system, the application can not open because "NameRegistryLib" could not be found

    what the answer for this error, the application could not open because the "NameRegistryLib" could not be found

    http://www.everymac.com/mac-answers/mac-os-9-classic-support-faq/run-macos-9-on- intel-macs.html
    http://www.macwindows.com/Emulator-for-Mac-OS-9-in-OS-X-updated-for-Mountain-Lio n.html
    http://hints.macworld.com/article.php?story=20060509180914879
    How to run Classic (pre OS X) apps on Intel Macs  

  • How do I overcome the fact that not all HTTP requests require redirection

                       I have the following scenario, The Business require that the main login to JDE is just http://prod.apps, I use a redirect server to change it to
    http://prod.apps:12001/prod/Mainmanu.maf  so that all works well , but reports and approvals generate links with URIs so the redirect does not work. To overcome this problem I have generated another context with a different VIP without a redirect server and that seems to work ok. But the apllication programmers have to ensure that any reports etc point to this new VIP.
    Is there a better  way of doing this?

    Hi
    You may  use L7 http class map and add additional matching by GET field in url request (as one possibility). E.g.
    currently you have something like this :
    policy-map type load first NAME
    class class-default
    serverfarm
    you may add something like this :
    class type http load match-any
    match http url
    then your L7 map will look like :
    policy-map type load first NAME
    class
    serverfarm
    class class-default
    serverfarm
    More information you can find here :
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/ace_appliances/vA4_2_0/configuration/slb/guide/classlb.html#wp1021430
    http://www.cisco.com/en/US/docs/app_ntwk_services/data_center_app_services/ace_appliances/vA4_2_0/configuration/slb/guide/classlb.html#wp1021388
    I think it should allow you to have only one VIP for this application. Please try - if you don't succeed, please post URL you use to access reports/approvals links.
    If this answer resolved your problem - please mark it as correct it will help to keep our forum more organized.
    Thank you.

  • The application can "not initialize the application's security component" and so Firefox will not open any more... PLEASE ADVISE!!

    One day while trying to run the firefox application a box popped up and said:
    "Could not initialize the application's security component. The most likely cause is problems with the files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem."
    Ive tried everything and even deleted and then reinstalled firefox... We miss it!!

    Please try
    * disabling any background anti-virus software you have, as it may be using Firefox files while it loads and prevent it from reading them
    * following the steps at [[Could not initialize the browser security component]]

  • In ActionScript 2.0 , How can I send HTTP request and get the response in JSON format.

    I am using ActionScript 2.0 for my app development. I have checked XML and LoadVars class. These classes by default send/receive data either in XML or name/value pair format. I want to send data in JSON format and receive the response in JSON format. How can I achieve this behavior using AS2.0. I have noticed that AS3.0 has the capabilities to do so. My client platform doesn't support AS3.0. Can anybody suggest a way to achieve this?
    Thanks in Advance.

    Atlast I am able to find the solution for this problem. In the end solutioin is very simple.
    Following steps will help in sending request in JSON format.
    1. extend LoadVars class
    2. override toString method. (It should return JSON format )
    3. Use subclass to send the request.

  • ExecutorService creating tasks to send HTTP requests - time out

    In my java application, I have introduced ExecutorService to create tasks. The tasks consist of sending HTTP requests to an application server, to process transactions. The ExecutorService will process about 1000 requests.
    The executor process the transactions and terminates OK, but some of the transactions timed out (before introducing ExecutorService, I was just sending one transaction at time, all the transactions were processed OK; but, it was taking a long time to process).
    See the code below.
    private ExecutorService threadExecutor;
    threadExecutor = Executors.newFixedThreadPool(30);
    threadExecutor.execute(transaction);
    try
         //Shutting down the ThreadExecutor
    threadExecutor.shutdown();
    threadExecutor.awaitTermination(30, TimeUnit.SECONDS);
    threadExecutor.shutdownNow();
    catch (InterruptedException e)
         System.out.println("ERROR - cannot shutdown the ThreadExecutor - exception is: " + e);
    Is this the best way to implement this use case?
    Thank you.

    From the above code, it seems like you are starting only a single transaction in a thread pool. Or does the transaction object you pass to the threadExecutor spawn more tasks for the executor?
    If you are indeed still making all HTTP requests from the single transaction object, then yes, it will 'time-out' after 30 seconds, since the ExecutorService was instructed to stop its threads after that period of time.
    Your description of the use case is actually a good example of the usage of an ExecutorService, since it is faster to do 1000 HTTP requests in parallel than it is to do them sequentially.
    Consider this:
    ExecutorService threadExecutor = Executors.newFixedThreadPool(30);
    for (int i = 0; i < 1000; i++)
      threadExecutor.execute(new Transaction());
    try
      threadExecutor.shutdown();
      threadExecutor.awaitTermination(30, TimeUnit.SECONDS);
      threadExecutor.shutdownNow();
    catch (InterruptedException e)
      // Ignore
    }This will spawn 1000 transactions that will execute in parallel, with max. 30 running at any single point in time. Any transactions still not executed after 30 seconds will be terminated.
    Hope this helps.
    --JH
    Edited by: Kramor_dude on Nov 5, 2009 6:55 AM

  • (HELP~) Most applications can not be executed

    Hi, after updating my OSX 10.6.4, most applications (such as iTunes, iPhoto, Pages, Firefox... etc.) can not be executed. They always shows that the application can not be executed on this OS, even I had checked my MAC HD.
    However, when I swith to bootcamp OS (Windows XP sp3), everything goes fine.
    How can I fix it?
    Thank you all.

    Create a new User go to System Preferences > Accounts > "+" (make it an admin acct) and test the apps in this new account, if they work the problem is isolated to your User and not systemwide.
    If the issue is limited to your user account try starting up Safe Mode (It will take more time to startup in Safe Mode because it runs a directory check.)
    If your apps functions correctly that way, go to System Preferences >> Accounts >> Login Items, and remove them. Boot normally and test. If not go to/Users/yourname/Library/Contextual Menu Items and move whatever is there to the desktop. Then do the same with /Library/Contextual Menu Items. Lastly, try moving/Users/yourname/Library/Fonts to your desktop and restarting.
    Log out/in or restart, if that sorts it start putting items back one at a time until you find the culprit.
    If the issue is systemwide then, you may be able to repair this with the The 10.6.4 Combo Update This is a fuller install, as opposed to an incremental "delta" update so it should overwrite any files that are damaged or missing. It does not matter if you have applied it before.
    Remember to Verify Disk before update and repair permissions after update from /Applications/Utilities/Disk Utility.
    -mj

  • I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries)

    I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries).
    Thank you for your help! - I did try looking for all available specs about Keynote on the Apple iTunes website, and found nothing that could help me. HELP!

    1
    Close all iWork applications
    2
    Uninstall Keynote; this must be done with an application remover tool to delete the installation properly. Appcleaner is known to work correctly for this purpose, it is free and can be downloaded from here: Appcleaner Download
    3
    empty the trash
    4
    shutdown the Mac and restart. After the start up chime, hold down the shift key until the apple logo appears
    let the Mac complete the start up procedure completely, it will take longer than usual as the hard drive is being repaired
    5
    Reinstall Keynote by logging into the Mac App Store using download / install

  • Can we send a request without knowing the actual url..

    Tomcat is running at the back.
    I know the port no on which the server is running now.
    Can we send a request to the server even if we dont know the exact url
    for example I developed a form which authenticates the user, after authenticating the url will be some thing like this
    http://localhost:8090/temp/AdminRegister?uname=user?pass=user123now can the user login even without knowing the exact username and password by manipulating the url..

    it is your own risk to your applets to communicate with DBs because nobody suggests that. I agree with the Javascript story and the frames. It can be done but i thought he wanted to do that in one single page. And finally, i dont trust frames that much. I have seen many times the 404 error found on pages and because i use dynamic pages i have to make connection for each frame. and with throusands users being online it is bad for my server (traffic).

  • I purchased QT Pro, and the manual indicates that you can export to Windows Media.  However, the application does not give me that option.  Am I missing something?

    How can I export a movie to Windows Media using QT Pro?  Upgraded QT7.7 to Pro for this reason based on the graphic in the QT manual that indicates Windows Media is an export selection.

    In my original e-mail I actually pasted a screen print of the drop-down menu in the manual.  However, here is the link:
    http://images.apple.com/quicktime/pdf/QuickTime7_User_Guide.pdf
    Go to section 4:  Exporting Files with Quicktime Pro.  Page 42 has an illustration of the menu choices.  The text states “To see the list of file formats available for a movie open in QuickTime Player, choose File > Export and browse the list of file format choices in the Export pop-up menu.”  In the illustration of the drop-down menu, the selection “Movie to Windows Media” is listed between “Movie to QuickTime Movie” and “Sound to AIFF.”  However, the actual application does not provide this option.  After reading the support threads (after my purchase), users agree that  WMV is not supported.  However, the Apple user manual clearly displays this option and it was this documentation that led me to purchase the QT Pro upgrade.  If the format is not supported, why is it listed in the documentation?
    I feel that this illustration is misleading, and I’m requesting a refund based on the fact the application does not support an option illustrated in Apple’s published manual.
    If this e-mail supports attachments, the attached file is the pdf version I saved of this manual.
    Curt

  • On a Mac, in Adobe Photoshop CC 2014, when adding audio to an edit, i get the message "Could not complete your request, because Dynamiclink is not available". When performing the exact same operation in Adobe Photoshop CC, i can add audio in the same way,

    On a Mac, in Adobe Photoshop CC 2014, when adding audio to an edit, i get the message "Could not complete your request, because Dynamiclink is not available".
    When performing the exact same operation in Adobe Photoshop CC, i can add audio in the same way, no error message. Any ideas to solve this, anyone? Would be greatly appreciated.

    I tried to update and it keeps telling me to get the Application Manager. And this is what happens
    Adobe Application Manager failed and it told me to download the Adobe Support Advisor.
    Adobe Support Advisor told me that there was an issue:" cpsid_82829s1: "A restart is pending," bootstrapper error has occurred. "Token Number: 40-87772-063201122012
    I followed the instructions it gave me to correct this issue:
    If you receive the error "Installer has detected that a machine restart is pending. It is recommended that you quit the installer, restart try again," do the following:
    #Restart the computer and try the installation again.
    #If the installation fails, delete the InProgress registry key: 
    Disclaimer: This procedure involves editing the Windows registry. Adobe doesn't provide support for editing the registry, which contains critical system and application information. Make sure to back up the registry before editing it. For more information about the registry, see Windows registry information for advanced users on the Microsoft support site, or contact Microsoft. 
    Launch Windows Registry Editor.
    (Windows XP) Choose Start > Run, type regedit in the Open text box and click OK.
    (Windows Vista/ Windows 7) Choose Start, type regedit in the Search box, and press Enter.
    Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager.
    Delete the InProgress key.
    I was not able to find the "InProgress" key.

  • TS3899 In my iPad 2 with IO6 today I can not send emails from my gmail account, they go to the outbox directly...why? How can i solve this problem? ..I restarted the IPad but the problem was not solved. Please help.

    In my iPad 2 with IO6 today I can not send emails from my gmail account, they go to the outbox directly...why? How can i solve this problem? ..I restarted the IPad but the problem was not solved. Please help.

    Greetings,
    Questions:
    1. What version of the Mac OS are you running (Apple > About this Mac)?
    2. What version of the iOS are you running (Settings > About)?
    3. Do you use MobileMe/ iCloud or another server based sync solution like Google or Yahoo?
    4. Do other changes to synced information like Address Book content sync successfully back and forth?
    Based on your description it sounds like you have a 1 way sync issue.  Events sync fine between the iOS devices and fine from the computer to the iOS devices but not from the iOS devices to the computer.
    Try:
    Backup your computer and iOS devices before doing anything else:
    http://support.apple.com/kb/HT1427
    http://support.apple.com/kb/ht1766
    Ensure all the devices in use are fully up to date: Apple > Software Update / Settings > General > Software Update
    Make separate backups of critical data:
    Backup your computer Addressbook: http://docs.info.apple.com/article.html?path=AddressBook/4.0/en/ad961.html
    Backup your computer iCal: http://support.apple.com/kb/HT2966
    Reset syncing on your Mac: http://support.apple.com/kb/TS1627
    Reply back if that does not resolve your issue.
    Hope that helps.

  • HT4061 I recently switched from my iphone to a samsung Galaxy S4, trading in my iphone. I now can not send/receive text messages from any iphones to my galaxy S4. Since I traded the iphone in, I can't access it to make any changes. Any ideas?

    I recently switched from my iphone to a samsung Galaxy S4, trading in my iphone. I now can not send/receive text messages from any iphones to my galaxy S4. Since I traded the iphone in, I can't access it to make any changes. Any ideas?

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

Maybe you are looking for

  • HT1386 My system got crashed and I dont have backup fo my iphone.... now how do i synch my iphone with new itunes without loosing my data ?

    My system got crashed and I dont have backup fo my iphone.... now how do i synch my iphone with new itunes without loosing my data ?

  • Emac Died, NEED HELP!!!

    Hi, I have had an emac for over 3 and half years now. Just an hour ago, it died on me. I wasn't at my computer, but near it. It clicked off and was followed by a burning smell, no smoke. A friend of mine said the power supply may have died, but he is

  • Mail stops accessing mails

    Mail stops accessing mails in most cases after downloading many of them. The rest will follow then and when. I am not sure if there is a rest because I forget the number of the downloaded mails when the procedure is finished.

  • Photoshop Elements 2.0 Windows 7 Scratch Disks Full

    Hello there, I have seen a few posts about PSE2 on Windows 7, but none of them have helped get it working for me. Same deal, I run PSE2 and get the "Scratch disks full" message. I have a 1.5GB hard drive. I have tried everything and no luck on gettin

  • Remove file association - not change it

    Hey everyone, I've been searching the net over the past 2 hours and the solution always comes up as 'change to another default program' The problem I've got is that I tried to open a VOB file, there was no program associated, so I picked quicktime. Q