WLS 9.2 Console App Conflicts with Stuts2 App

We are seeing the following error when starting up our Struts2 application on the Admin server.
          ERROR org.apache.beehive.netui.pageflow.internal.AdapterManager :
          ServletContainerAdapter manager not initialized correctly.
          The error seems to be happening as a result of the struts configuration setting which allows you to set a class to handle MulitPart Requests:
          struts.multipart.parser=mypackage.MyMultiPartRequest
          It appears that this error only occurs when the application is installed on the admin server. Our application is not utilizing Beehive. It appears though that the Weblogic Console is. I believe that the two are conflicting. When running our application on a managed server without the console app, we do not get the error.
          This is okay since our production and test environments are set up this way anyhow. However, our developers working locally by installing the app in the admin server rather than running an admin server and a managed server.
          Anyone seen this or know of a work around?

Have you been able to fix this problem?
          Did you try prefer-web-inf-classes" in the
          weblogic.xml file?
          Unfortunately, I don't have any suggestions. I'm in the same quandry and looking for answers.

Similar Messages

  • AIR app communnicating with External App

    I would like to make my AIR app communicate with another
    application that's running on the desktop. What are the best ways
    to do this?
    Ideally I'm looking to call functions inside the AIR app from
    a separate program, and vice versa. This is in fact possible using
    the ExternalInterface capability, however, this is only available
    when the separate application is an ActiveX container (such as the
    browser), and thus contains the FlashPlayer ActiveX control within
    it. But what if your AS3 application doesn't just run inside the
    FlashPlayer but requires the AIR runtime instead? There doesn't
    seem to be any way that an external app. can talk to an AIR app the
    way it can call functions on the FlashPlayer.
    My reasons for needing this are that while AS3 is great,
    especially for creating an interactive interface, there are still
    some low-level things which must be coded in another language.
    Any thoughts that anyone has on this topic would be greatly
    appreciated.

    Hi Bruce,
    In theory, you can do what you want, but it is an indirect
    way of achieving it, and there are some performance/functional
    issues.
    You can make a windows application that is an ActiveX control
    container, and put the FlashPlayer control inside it. Handle the
    "FlashCall" event in your windows program (this is fired when your
    swf calls a custom external function), and then you can use it to
    load and call whatever .dll function you want.
    In practice, from what I've observed, there are some
    limitations. The graphics performance of the FlashPlayer suffers
    when embedded this way in a Windows app. Also, if you want to call
    into the flashplayer sometimes the function calls fail. Having said
    this, my experience is limited to AS2 implementations; maybe things
    have improved with AS3.
    Anyway, hope this helps. Would be interested to hear your
    observations if you should try this route.
    Ed

  • Problem : App works with Sun App server 8.0 but fails with 8.1

    Hi All
         I am experiencing some strange problem with executing my JSF application with Sun App Server.
         I have an EAR deployed on Sun Application Server 8.0 and 8.1.
         Strangely it works quite fine with 8.0 but fails with 8.1.
         In my JSP page ..I have a dummy component whose getter method is used as a "FormLoad" event of the page.
         <h:form id="imageForm" enctype="multipart/form-data">
         <h:messages showDetail="true" />
         <table width="980" border="1" cellpadding="0" cellspacing="0" bordercolor="#A9B8C2">
              <tr>
    <td>     
                   <h:inputHidden value="#{Screen1.initializeService}"/>
              <h:selectOneListbox styleClass="style2" id="cmbMiddleArea" immediate="true" value="#{Screen1.selectedMiddleArea}">
              <f:selectItems value="#{Screen1.middleAreaList}" />
         </h:selectOneListbox>
         In my backing bean i have ..
         public String getInitializeService() {
              ..... Retrieve all the data from DB to initialize all the components on the JSP page
              .......setMiddleAreaList......
              .......setSelectedMiddleArea.....
              ........set the values of the individal component...
         I am retrieving all the data from DB in this getter method and intializing the components on the JSP page.
         I have also checked the code generated for JSP by both the servers.I am posting the code here for reference although
         i did not find any significant difference between the two...
         For Server 8.0
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{searchBean.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value.reuse(_jspx_th_h_inputHidden_0);
         return false;
         For Server 8.1
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         PageContext pageContext = jspxpage_context;
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value_nobody.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{searchBean.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value_nobody.reuse(_jspx_th_h_inputHidden_0);
         return false;
         Now the actual problem is "getInitializeService" method never gets called when i deploy and run the application on Sun App Server8.1
         However with Sun App Server 8.0 it woeks perfectly fine.
         Can anybody help me in resolving these issues ?
         

    Actually generated JSP code can be referred as ...
    For Server 8.0
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{Screen1.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value.reuse(_jspx_th_h_inputHidden_0);
         return false;
         For Server 8.1
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         PageContext pageContext = jspxpage_context;
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value_nobody.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{Screen1.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value_nobody.reuse(_jspx_th_h_inputHidden_0);
         return false;
         }

  • Why am I getting unable to purchase message from App Store with free apps

    Why am I getting unable to purchase message from App Store for free apps on my I pad?

    Sign out of your Apple ID, reboot yor iPad and sign in again.
    Settings>iTunes and App Store. Tap your ID and sign out.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    Go go back to Settings>iTunes & App Store. Sign in. Try to download the free apps again.

  • IOS7 accessibility zoom conflict with multi app closing

    I some times can't read small text or see small indicators so I turned on the zoom function from the accessibility settings. When I open the multitasking window, I usually need to close as much apps as possible in the least time so I flick three fingers up the screen to close three apps at a time. When the zoom is enabled from the settings (not the actual zoom (double tap three fingers)), I can only close two apps at a time, when it is disabled I can close three apps at a time. I believe this is a bug with iOS7, I wanted to tell apple but I didn't know how except through here. Please tell me if you have the same bug and that I'm not alone.

    A Chrome extension is out which enable Bootcampers to swipe back/forth for pages. You can get it here:
    https://chrome.google.com/webstore/detail/mgegfjnccpnkdppohmfgnjalkediapkc
    Or search for it yourself:
    Swipe Gesture
    In google addon store.
    All credits goes to antimatter15.com for creating this. It's still at an early stage, but very useful indeed. And as seeing that swiping back/forth is one of the most used multi touch features (at least to my experience) this addon is a godsend. Also has no problem with people running virtual machines, as the addon can simply be turned off.

  • Need help, oracle xml db jar conflicts with sup app server v9

    I am trying to create a web service on sun app v9 that will work with calls to oracle xml db on oracle 10gr2. I have successfully created a web service on other application servers (weblogic and websphere) but sun was the app server of choice. The oracle jar xmlparserv2.jar is causing problems with the sun server as it seems to have bundled some java classes from the javax.xml.parsers, javax\xml\transform (and even from dom, sax and streams sub folders) packages.
    If I put the oracle jar in my war the error I get in the log file when accessing my webservice tester is:
    [#|2007-08-13T08:37:48.691-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=15;_ThreadName=httpWorkerThread-8080-0;|error: http://www.w3.org/TR/html4/loose.dtd<Line 31, Column 3>: XML-20100: (Fatal Error) Expected '>'.
    line 31 of http://www.w3.org/TR/html4/loose.dtd|#]
    [#|2007-08-13T08:37:48.738-0400|INFO|sun-appserver-pe9.0|javax.enterprise.system.stream.out|_ThreadID=15;_ThreadName=httpWorkerThread-8080-0;|
    error: Expected '>'.
    line ? of http://ann-griffithlap.jsc-eses.com:8080/TestWS/TestWSService?WSDL#types?schema1|#]
    And the UI error from the tester call is:
    javax.servlet.ServletException: java.lang.RuntimeException: Service Class not generated as expected at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.initializePort(WebServiceTesterServlet.java:546) at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.doGet(WebServiceTesterServlet.java:158) at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.invoke(WebServiceTesterServlet.java:104) at
    I had attempted to move the xmlparserv2.jar elsewhere in the classpath for classloading and one error I got while trying different spots was:
    [#|2007-07-16T14:16:57.982-0400|SEVERE|sun-appserver-pe9.0|javax.enterprise.system.tools.deployment|_ThreadID=10;_ThreadName=main;_RequestID=c9ffb261-2b6d-4dd2-bd8f-362e6b2af1a0;|INFO: JAXP SAXParser property not recognized: http://java.sun.com/xml/jaxp/properties/schemaLanguage|#]
    [#|2007-07-16T14:16:57.982-0400|SEVERE|sun-appserver-pe9.0|javax.enterprise.system.tools.deployment|_ThreadID=10;_ThreadName=main;_RequestID=c9ffb261-2b6d-4dd2-bd8f-362e6b2af1a0;|Check to see if parser conforms to JAXP 1.2 spec.|#]
    which gets repeated for each deployment and then the server would not start up.
    Is there any suggestions of where I can put the oracle jar to get sun to still start up as well as the jar to be available for use by the classes in my war that also contains the webservice that will call my underlying class? I have not found a way to eliminate the oracle jar if I want to do an xquery against oracle xml db.
    Thanks,
    D.Griffith

    Here's more information on the machines.
    Machine where the Oracle Database 11g Express Edition: IP Address is 10.162.128.67
    Machine where the SQL Server database: IP Address is 142.120.51.30.
    I've modified the tnsnames.ora to the following:
    XE =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = 10.162.128.67)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = PLSExtProc)
          (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
    SQLSERVER =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = 142.120.51.30)(PORT=1433))
        (CONNECT_DATA =
          (SID = SQLSERVER)
      (HS = OK)
    )But now I'm getting the following error:
    C:\>tnsping sqlserver
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.2.0 - Production on 18-SEP-2
    012 14:52:59
    Copyright (c) 1997, 2010, Oracle.  All rights reserved.
    Used parameter files:
    C:\oraclexe\app\oracle\product\11.2.0\server\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
    (HOST = 142.120.51.30)(PORT=1434))) (CONNECT_DATA = (SID = SQLSERVER)) (HS = OK)
    TNS-12541: TNS:no listener
    C:\>Regards,
    Allen

  • Over the weekend i downloaded the new ios6, but since doing so i have had a few conflicts with the apps that are on my ipod touch - is anyone else having any issues and is there a patch, remedy or even anyway of having the other version previous ?

    Is anybody else having a few issues since the new IOS6 download for their Ipod Touch ?????

    I'm having the exact same problem with Firefox 3.6. I'm running windows Vista 64bit.

  • PHP app conflicts with FW(java) pop up menu

    I use a template with my navigaiton in a fireworks popup menu
    and everything works fine. But when I begin to develop php
    applicaitons in that same template my navigation stops working
    properly. The flyout menus don't go away and the format of each
    menu item is off?

    sjmacro,
    Before going down too far down that rabbit hole, you might
    want to check
    the following menu solutions:
    http://www.projectseven.com/
    http://tjkdesign.com/articles/dropdown/
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    alex
    sjmacro wrote:
    > Hello everyone:
    >
    > I have few questions regarding modify layers and
    exporting file from
    > Fireworks8 (FW8) to Dreamwaver8 (DW8)
    >
    > a) I crated a single menu item with a sub pop-up menu. I
    crated menue item
    > with hostspot method. Once hotsopt added, There is
    another blue behavor layer
    > inide hotsport layer. I can drag this inner layer by
    using pointer tool.
    >
    > I noticed on over state, the background color won't
    cover whole gray area of
    > orginal background. Is there a way I can modify the size
    of inner blue behavor
    > layer so over state background can cover whole area?
    >
    >
    http://cuj06.com/drop_down_exer.png
    >
    > b) I used rectangle tool drawed the menu item, once
    hotsopt is added, is there
    > a way I can modify the size of menu item?
    >
    > c) Are there any online documentation describe how to
    export file from FW 8 to
    > DW?
    >
    > d) Please share with me if you know good online
    tutorials that demonstrate how
    > to created customized pop-up menu in FW8.
    >
    > e) how can I change file name extension before export
    the file into DW.
    > For example change file extension to
    .htm to .html
    >
    > e1. where can I find the .htm file and .css file
    associate with my pop-up
    > menu. I couldn't file them once I crated my .png file
    for pop-up menu
    >
    >
    >

  • Folio appear in app library with in-app purchase status is "Developer removed from sales"

    Please share your experience about Apple In-app purchase setup.
    Viewer Builder app: Multi-issue
    Folio published with public & retail
    Producct Id: input to iTunes In-App manage console
    In-App Status : Developer removed for sales
    After I launch the developer build customer app, I can see this issue available to purchase and download (in Sandbox environment).
    Does Custom Content Viewer app check the distribution server, when the folio is public & retail, check iTunes store, if it is ready to sale, show folio with selected price tier and make availbe to purchase.  If the record status is not "ready to sales", the folio should not appear in folio library, correct ?
    Problem In-App record highlight with red rectangle in screen capture.
    Please comment below action taken to resolve this situation.
    (1) Delete the folio using Folio Producer (unpublish);
    (2) Delete the record in iTunes In-App purchase;
    (3) Publish the folio with new productID;
    (4) add record in iTunes In-App with the new productID;
    Michael.

    Hey Bob. Yeah, I tried that. It just comes back. I even deleted the app entirely and reinstalled it. Same thing.
    I logged in through the Adobe Content Viewer and it even shows up there. I don’t understand where it’s coming from.
    I rebuilt the viewer and need to send the updated binary to Apple for approval but I’m afraid this phantom folio is going to cause them to reject it.

  • ITunes insists on rearranging my iPad apps, even with 'Sync apps' unchecked

    Here's an issue which I've noticed crop up on a few other forums, but which there doesn't seem to be a definitive answer for.  I'm hoping that one of the veterens on this forum might have come across it and figured out a fix...
    Since iCloud launched, I've not had any need to use iTunes for any app, music, video, podcast or book syncing. I have automatic downloading enabled on both my iPad and iPhone, and that's worked very well.  Download something on one device, and it appears on the other. Wireless backup to iCloud too. All good.
    There's just one thing I do still rely on iTunes for - and that's syncing photo albums and events created on my Mac in iPhoto to my iPad.  I'm hopeful that at some point Apple will enable iCloud syncing for iPhoto albums (especially seeing as iPhoto is now available for iOS), but for now I'm stuck with using iTunes to move new albums and events to my iPad.
    Here's the thing. Given I have automatic iCloud downloading enabled for pretty much everything, I have the following sync options turned off in iTunes:
    Info
    Apps
    Tones
    Music
    Movies
    TV Shows
    Podcasts
    Books
    The only item that is checked is Photos.
    So once I'm ready to sync a newly created iPhoto album or event to my iPad, I fire up iTunes, select my iPad in the devices list, make sure that the new album/event is checked under the Photos tab, make absolutely sure all other sync options are unchecked, then I hit the sync button.
    And about half the time, this will go well.  And the other half... well, disaster. iTunes will decide that it doesn't like my iPad apps arranged in the order I have them, and will rip them from their folders and scatter them across a ton of homescreens. The result is about an hours worth of work to get them all back in place again, just so I can enjoy having my latest photo album on my iPad.
    I can't figure out why this happens.  When I have app syncing unchecked, I'm specifically telling iTunes to leave my apps well alone.  I have no interest in syncing apps to/from iTunes and my iPad. iCloud takes care of this for me now, and I have no reason to even have a copy of an app on my Mac. I can't do anything with it once it's on there.
    Has anyone come up against this issue and found a fix?
    Alternatively, and perhaps preferably, is there another way to move albums and events created in iPhoto to my iPad, without using iTunes? I know iTunes wants to be the be-all-and-end-all of syncing beasts, but now I have iCloud I have no use for it aside from photo syncing.
    Thanks in advance to anyone who can help here!

    I'm starting to think that the lack of replies is due to the fact that nobody actually knows why this behaviour is, including Apple themselves.

  • Plans for adding countries to App Catalog (with paid apps)?

    Are there any plans that HP support paid apps in countries the currently only allow free apps in the App Cataloge?
    Even though there are many free apps, many great apps are not available
    As example for a country HP could add: Austria ;D
    Post relates to: HP TouchPad (WiFi)

    Hi SabbeRubbish,
    Thanks for the detail information for this issue.
    >>Hi, I don't know where you found the information that Access apps should not be packaged with apps for Office included.
    This would mean that:
    - Apps for Office need to be removed prior to deployment
    - Apps cannot be locked, as locking an app makes it impossible to add apps for Office to it.
    My app needs to be locked to be able to upgrade the database schema later on.<<
    There is no such document describing this secnario. Based on my understanding, if we delpoy an Acccess web app which refer to an content app which inserted from Office Store we can package the Access web app directly since after publish the Access 2013 web
    app we can still use the content app.
    If you want to lock the Access web app, and there is an content app refer to the SharePoint catelog we need to modify the path for the content app based on the depolyment enviroment.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Parental Controls Always Allow App issue with Blender app (3d modeling app)

    To whom this may concern,
    I have a 3D modeling app called blender. I have installed it on my mac os running on lion (os 10.7) currently.
    What I want to do. Always run this app on an account that has parental controls set up on my mac. The blender app would be a part of the allowed apps for the account.
    Here's where I have my problem:
    I have set it up to run on an account that has parental controls set up.
    The problem I keep running in to is that every time I try to run blender I receive a popup window that says the app is not allowed and gives me three options: always allow, allow once, or okay (and close without trying to open).
    Everytime I try to click always allow and enter my password, the process just repeats the next time I open the app. This make me believe that perhaps there is some sort of executable that the blender app uses before starting that the parental controls is stopping and even when I allow blender to start, there is something else not being allowed through. Any ideas on how I can work around this (obviously I want to keep parental controls on to prevent access to other apps)?
    I'm not overly computer savvy but I can give some more info as requested if my question needs further explanation/documentation
    I guess the best way to see the problem for yourself is to download blender and try using it on an account with parental controls, heh heh.
    This is more of an annoyance having to enter the passcode everytime I want to use this wonderful app.
    Thanks for any help.

    Solution:
    I updated to OSX Mavericks and the parental controls issue went away for Blender.
    Hurray!

  • App store with no apps listed.

    I have been given a preowned ipad that has been restored to factory settings. I open the app store the page opens with headers but no list of actual apps. What am i doing wrong?

    Where are you located? Not all apps are in all countries' AppStore.
    Are you logged in under your account?

  • In-App Downloads with in-app storage

    Hello everyone, I'm new in windows development. I want to sell design elements and themes in windows store but can't find a way to store files in windows app. Short of what I'm seeking - I want that people could download windows store app, preview files
    in it and save them to local machine. 
    Maybe there is some samples?
    Thank you!

    Hi,
    As I get your question, You need to keep the theme / template offline ..
    use isolated storage to store data in your app such like theme files. If you are working on XAML youe theme may XAML style file. save it as it is, then you can add that resource in to the app.xaml in runtime by code dynamically .
    Hope that helps
    Please don't forget to up vote answers you like or which help you and mark one(s) which answer your question.
    M Prabath Maduranga Peiris
    Microsoft Partner  and MSP/MSA
    Blogs : prabathsl.blogspot.com

  • I cant connect to my app store with my app id can you help me please?

    je ne peux pas me connecté a l'app store ni a itunes avec mon identifiant apple,pouvez vous m'aider??

    What happens when you try to connect? Do you receive an error?

Maybe you are looking for

  • Hyperlinking text in imail from a pages document

    Hi, I have just created a wonderful layout using Pages. The document contains several hyperlinks that I would like my viewers to click when they receive my emails. How is this accomplished? I've tried saving the document and attaching it to the email

  • Org chart integration with Who's who

    Hi All, I am using ERP2004 SP10. I am able to call org chart from who's who. but it opens in same window, so lose the result list when i exit from org chart. I want org chart to appear as pop up. How can i achieve this. I have already specified page/

  • Using an 8.0 client with a 6.5 server

    We currently have an application running on AIX and Tuxedo Client 6.5, that connects to a 6.5 server. We are thinking on migrating the application to Linux, and found that Linux is only supported for Tuxedo 7.1 and higher. Would there be any problem

  • Is TEDs transducer informatio​n saved in the .tdms file?

    I have a TEDs-capable Pressure Transducer connected to a NI-9237 module in a cDAQ-9174. In this application, I am collecting data using SignalExpress 2014. The attached file shows the information displayed in MAX, for the TEDs-capable transducer. Whe

  • Sybase to oracle

    how do we convert these to oracle ? New to oracle and assuming the decode will work, not sure how that works. #1 convert(char(4) not null,(substring('0',1 - abs(sign(char_length(convert(varchar(4),RCRC_ID)) - 3)),1) + RCRC_ID)), #2 In sybase where co