[U8.1] how to host OWIN katana Windows store App or how to intercept the http request in windows store app

Hello

I have an application that needs its own server to check if the query to this server can be served on-site or even reach the server online for the same thing.

In fact, my application will have some local files that will be included in the package and part of the content will be responsible for the online server, so my requirement, it's that I want to somehow intercept the request of my application and redirect accordingly.

You can tell I want to query interceptor or possess oneself by a webserver as OWIN katana inside my windows store app. Alternatively, is there a way to host web on IIS via app store windows application.

Please let me know what is possible only in App Store Windows as my application should run on all devices for Windows Store Apps support.

Thanks in advance.

Hi Sissi,

Thanks for posting your query in Microsoft Community Forum.

According to the description of the issue, I recommend you post your query in the TechNet Forums. TechNet is watched by other computing professionals who would be more likely to help you.

TechNet Forum

http://social.technet.Microsoft.com/forums/Windows/en-us/home?category=W8

Hope this information is useful.

Tags: Windows

Similar Questions

  • OSX Apache Server: how to redirect the http request?

    Hi all

    I have a Mini Mac OSX Server El Capitan running. It already serves some sites. Normal Server Web sites:

    -site1.example.com

    -site2.example.com

    Now, I have installed an application that has its own built-in web server. This application would be normally accessible via http on port 80. However, http on port 80 connections are automatically considered trapped by integrated apache of the OSX Server. Therefore, I now put the web application to run in a different port to apache. I also setup a subdomain, so that users can access this application directly, but they also have to type in the port in the URL - for example, the new web app site is reachable at the:

    -myapp.example.com:7117

    What I would do, is for users to simply access the application using:

    -monappli.exemple.com

    I know that there is a way for us to have apache to "Reroute" all requests for a specific to an internal port subdomain automatically, but I don't even know where to start. What are the files we need to configure on OSX Server? How configure us them?

    Any guidance would be greatly appreciated.

    I had the same requirement and has resolved the way you want to as described below.

    1. Define the additional app to run on another port
    2. Create a site in.app using port 80 and the same host name you want to use for the additional application
    3. Set up a redirection for this site in.app as follows
    4. Source = /, Destination = http://hostname.domain.com:1234 /, Status = Permanent (301)

    Of course, use the correct host name, the domain and port for your situation.

    PS. the same approach I have described above also can be used to redirect the corresponding https port 80 or 443 site.

  • How to set the simultaneous request completed with warning?

    Hi all:
    How to set the simultaneous request completed with warning in oracle 11.5.9?


    For example:

    I completed an application with "Completed" 'Normal '.
    After I put a condition similar to when xxx > 0 then
    It will complete a request indicates 'Complete' 'warning '.



    My environment is: oracle 11.5.9 and operating system is Linux Redhat 4.0



    Concerning
    Terry

    Terry,

    You can use 'FND_CONCURRENT. Function SET_COMPLETION_STATUS.

    Note: 866194.1 - is there a method to return a 'Warning' to host Language simultaneous program status?

    The Oracle Applications Developer's Guide
    http://download-West.Oracle.com/docs/CD/B11454_01/11.5.9/Acrobat/115devg.PDF

    FND_CONCURRENT. SET_COMPLETION_STATUS
    http://forums.Oracle.com/forums/search.jspa?threadID=&q=FND_CONCURRENT.SET_COMPLETION_STATUS&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001

    Thank you
    Hussein

  • EBS - how to remove the link "request access" preferences page

    We do not want our users able to select the link "Access request" from the preferences page. Does anyone know how can this be achieved?

    Thank you

    -Matt Symes

    Impossible to hide the "access request" Page in the General preferences [362871.1 ID]

  • How to remove the link "Request itself" from the login page

    Hi all, I want to remove the link "Request itself" from the login page. It is not a menu item. So how can I remove it? Any ideas?

    Go to the System Configuration in Console Design

    Search authorized registration and XL. SelfRegistrationAllowed it is wrong. No need to modify the JSP

  • How to get the code request on 2542 DJ HD all-in-one

    I am trying to add my printer to the HP Connect, but the instructions he gives to the printed code of request does not match the available options on my printer. It gives instructions for printers equipped with touchscreens, and mine has one. How can I get my code of request with this printer?

    The Deskjet 2542 is unfortunately not able ePrint. However, you can directly use wireless to print.  When a printer has a wireless direct printing capability means your WiFi (smartphone, Tablet, laptop) compatible devices can connect directly to your printer wireless network without using a wireless router or access point. Here is a link to a web page that says wireless direct printing in more detail http://www.hp.com/global/us/en/wireless/wireless-direct.html

    I would like to know if I can be of further assistance.

  • How to make the SOAP request with the complex data types?

    Hi all

    I want to apply soap like that, how I can do this,


            string
            string


            dateTime
            dateTime

    string

    Thanks in advance.

    Any help?

  • How to intercept the Message event opened on existing messages Inbox

    I asked in this thread for a way to override the event open Message in the Inbox so that I could see a message personalized with my own Viewer.

    Doug suggested that I create a folder and message listeners to intercept events that interest me.

    It works partially. The FolderListener can detect new messages coming, but he does nothing with the existing messages, so, in my app initialization, I loop over the existing messages and look for those to whom I want to fix a messageListener.

    I reinforced with the code and see that the headphones are fervent. But the modified (event MessageEvent) method never fires on existing messages when I opened the. It fires only on messages received recently.

    How can I catch the event message open for existing messages?

    Also, when I catch the event on new messages, it opens my custom desktop, but when I go back to the list of messages, he had also opened the message with the default mail Viewer. Is there an equivalent to CONSUME_CLICK a button to say that if I got trapped in the event to just make my personalized treatment and not the default behavior?

    Thank you!

    Dave

    What I do is I store the operating screen and close it after the event handling:

    public void open(MessageEvent messageEvent)
    {
        if (messageEvent.getMessageChangeType() == MessageEvent.OPENED)
        {
            final Screen mailScreen = UiApplication.getUiApplication().getActiveScreen();
    
            // DO YOUR THING WITH THE SCREEN
    
            String className = mailScreen.getClass().toString();
    
            /*
             * Only close the active screen if it's the EmailViewerScreen.
             *
             * Note: This is undocumented so I'm not sure whether this will always work.
             */
            if (className.endsWith(".EmailViewerScreen"))
            {
                UiApplication.getUiApplication().invokeLater(new Runnable()
                {
                    public void run()
                    {
                        try {
                            mailScreen.close();
                        }
                        catch(Throwable t) {
                            // log error
                        }
                    }
                });
            }
            else {
                // log that Classname is not-a EmailViewerScreen
            }
        }
    }
    
  • How set/enable the authorization requested by programming?

    Hi all
    1. work on the version of BB storm (9500/9530 Simulator) is v4.7.0.75
    2 opportunity BB JDE v4.7

    3. signed request

    4. the request is:

    Is it possible to programmatically set the authorization of enforcement. not even pointing to the top of the screen of the permission to the user.

    I want to leave as soon as I install/run my application.

    I want to "Allow" "Entry Simulation" by programming.

    I used the code:

    ApplicationPermissions appPermi is ApplicationPermissionsManager.getInstance () .getApplicationPermissions ();.
    appPermi.getPermission (ApplicationPermissions.PERMISSION_INPUT_SIMULATION);
    ApplicationPermissionsManager.getInstance () .invokePermissionsRequest (appPermi);

    but it gives me the settings screen with the options marked as 'Allow', which is not sure how I feel.

    any body can help me on this.

    Thanks in advance

    Ratna-

    Gave you a peek at the 'applicationpermissionsdemo' example comes with JDE.

  • How to intercept the sockettimeout exception message and display in the user interface of the view?

    Hi my jdev - 11.1.1.7 version

    I ask a socket connection in my AM and I want to catch the exception of the sockettimeout of t and display the error message in the user interface of the view layer.

    I use customException class that extends DCErrorHandlerImpl, but if we use try catch, then exceptions doesnot reach customclass.

    How to catch exceptions and return to view the layer if we use the operation binding. ?

    Because you call the operation via the link layer, which is perfectly fine, you do not get an exception at all. Exceptions thrown in methods called via the link layer are captured by the framework and transferred to the appellant in the operation binding.

    For that, you get the list of errors after the call returns and add them as messages of faces

    execute the method

    Method.Execute ();

    List errors = method.getErrors ();

    If (! errors.isEmpty ()) {}

    handle errors errors here is a list of exceptions!

    We only get the first

    E receive = errors.get (0);

    FacesMessage msg = new FacesMessage (FacesMessage.SEVERITY_ERROR, e.getMessage (), "");

    FacesContext.getCurrentInstance () .addMessage (null, msg);

    }

    no error return to normal work

    Timo

  • How to change the HTTPS Console Weblogic admin port

    Hello


    I want to change my HTTPS Console port which was default port 7799 to other ports and also weblogic admin port 7101 to another port.
    How we change that. Thank you


    Thank you
    Sachin Bhadauria

    you need to change the powers of oversight for the EMGC_GCDomain reflect the new administration server port.
    Go to the target-> Middleware-> EMGC_Domain
    Select Configuration of the target-> supervision of the identification information in the drop farm
    Change the Port field
    Return to the menu drop-down firm and select Refresh WebLogic Domain-> Add targets to update
    The objectives of OHS and Server Admin should now appear in the console. I checked on my test site.

  • How to publish the http live stream

    When I use Adobe Flash Media Server 4.5 publish live http streams. I found a message from Server Log to manage Adobe Flash Media Console administrator servers. It is said that 'Impossible to record the live stream (disk quota exceeded)."  How can I do to resolve the issue?

    Hello

    Thank you for using the FMS 4.5.

    I assume you are using a developer edition (trail), FMS. It has restriction of 10 minutes for HDS streaming, after which, the journal exceeded disk Quota would come to the top. You must upgrade to the other flavors use HDS full-time.

  • How to get the object request or session in action jpf in WebLogic Portal 8.1

    I am using WebLogic Portal 8.1. I want to get the parameters of query/attributes in the flow (jpf) page controller action method. Can someone help me how to get objects session or request to the page (CCP) flow control.

    getRequest() (inherited method gives extended request)
    ScopedServletUtils.getOuterRequest (scopedRequest) gives the main query

  • How to prevent the new request of leave of SSHRC in case of negative accumulation of PTO

    Hi people,

    I'm stuck with a particular problem.

    He has employed in our system that have negative charges of PTO, and when they try to create periods of SSHRC, the system allows them to create a fillet with a warning.
    * "This absence will decrease the net PTO employee less than zero for one or more of their accrual plans." * "

    I want to warn users to fill the Absence of SSHRC form, if they have negative charges Oct.

    How can I achieve that, I thought it would be simple enough forward controlled a profile!

    Any help would be appreciated.

    Concerning
    Shah Alam

    User API hooks are a way to add validation custom API. You must add a user (pl/sql procedure) hook to raise and error, if the net accumulation value is less than zero.

    MetaLink Doc 73170.1 (understanding and use API user hooks) can be useful for you.

    In summary, you must create a pl/sql procedure which, when called, will raise an error if the net accumulation falls below zero. and create entries in the table hr_api_hook_calls to forward the process of the creation of Absence API (you can find them by querying the table hr_api_modules and hr_api_hooks), then regenerate the API module.

  • Snap to point the cursor: how to intercept the event of 'snap '.

    Hi all

    I use a chart control with 1 defined in the snap cursor to point and I'm plotting just a waveform: hang on to the points works great!

    My problem is that I need show the value of point break and it seems that the alignment code runs after the events of the chart.

    So by using the code below, when I left click on the graph, I get the mouse position value and not the point closest to my plot to the position of the mouse.

    I tried with all the events graph, but was not able to discover any event which triggers the cursor was taken to the nearest location.

    int CVICALLBACK GraphGetCursor (int, int int event, control panel,
    void * callbackData, int eventData1, int eventData2)
    {
    switch (event)
    {
    case EVENT_LEFT_CLICK_UP:
    GetGraphCursor (hPanel, arranging, 1, & dX, &dY);)
    break;
    }
    return 0;
    }

    My real solution was to create a timer (50ms) and activate on the event that precedes.
    Then call GetGraphCursor (hPanel, arranging, 1, & dX, dY &) in case EVENT_TIMER_TICK, that occurs after the cursor has been aligned with the nearest point, I get the correct values I was looking for.

    Any suggestion for a more elegant solution?

    Thank you very much

    Sergio

    Hi Sergio,

    have you had a look at the example of graphcursors? It seems to do what you want using the EVENT_COMMIT. This example does not work for you?

Maybe you are looking for

  • Since the last update, firefox can never find any web site

    I am running windows 8.1. Firefox has been slow, now when I start already in firefox, it just goes round and never find anything. IE works without problem.

  • Buy new iPad 2 Air

    Tomorrow I'll buy an iPad opportunity Air 2 by pictures and of vdos it seems to be in very good condition. I never bought a used front element, any advice will be greatly appreciated. The bought so made will be in person. I have the serial number of

  • ring Xbox games on disc

    new xbox - problem with the drive to make noise and rubbing playing the sports game "kinect". It was not until recently. While playing the game - sound heard "rubbing sound" that eventially left a scratch 'circle' to drive all around - while playing

  • How can I change my product key.

    Hi, I had my computer fixed. Its a really old computer and the person who fixed improved many things. He even re-installed Windows XP and makes it seem smoother and faster by adding more ram. I have been using this machine for awhile now, but then wh

  • How can I uninstall windows 7 and reinstall windows xp

    any input would be greatly appreciated