How do I configure my application to provide access for mobile and web brow

Hi everyone.
I have one application and I need to provide access for mobiles and desktop browsers, and I don't know how do I configure my application to do this.
Let me explain:
In my jDeveloper I have One application and 3 projects:
-Mobile (here is my mobile application)
-Model (here is my model)
-ViewController (here is my Web Browser application)
In Mobile I have
JavaEE Web Application name: mobile-Mobile-webapp
JavaEE Web Context Root: mobile
ViewController I have
JavaEE Web Application name: mobile-ViewController-webapp
JavaEE Web Context Root: myapplication
When I run some page of ViewController I have this URL "http://localhost:7101/myapplication/index.jspx".
When I run some page of ViewController I have this URL "http://localhost:7101/mobile/index.jspx".
My problem is that, I want to have Just one landing URL like that "http://localhost:7101/myapplication/index.jspx" and when I get this URL by Desktop Browser my ViewController is showed, and when i get by Mobile the Mobile project is showed.
Someone knows how do it?
Thanks....

Yes, I can, thanks for response.
But, don't have some configuration in Oracle for this? I've been thinking do this with java or JavaScript, but I was looking something more beautiful for this.
Java or JavaScript is the only way?

Similar Messages

  • How I can configure 2 EP 7.0 server for SSO with ECC 6.0?

    Hi,
    How I can configure 2 EP 7.0 server for SSO by using SAP Logon ticket with same ECC 6.0 back end?
    Developement EP 7.0 SP14 is already configure with ECC 6.0 back end now I want to configure my local EP 7.0 SP9 (Sneak Preview) server with same ECC 6.0 Development.
    How I can acheive this?
    I really appreciate if some one guide me.
    Thanks.
    Ashish.

    Hi,
    You have to follow the SSO steps.
    1.Create RFC Destination in SM59
    2.Create RFC Destination in Visual admin
    3.Export verify.der certificate from portal
    4.Import verify.der certificate to R/3
    5.Create system alias
    6.Export R/3 certificate from R/3
    7.Import R/3 certificate to portal
    8.Maintain the SSO parameters in RZ10
    Please check the below link also.
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/4d/dd9b9ce80311d5995500508b6b8b11/frameset.htm
    Regards,
    Bala.

  • Can I know how to get App Store applications get DRM removed for enterprise testing?

    Can I know how to get App Store applications get DRM removed for enterprise testing?

    http://www.apple.com/business/vpp/

  • How do I get an iPad micro sim card for Austria and Italy?  We purchased one for Germany, but it doesn't cover in Austria or Italy

    How do I get an iPad micro sim card for Austria and Italy?  We purchased one for Germany, but it doesn't cover in Austria or Italy

    Compare the roaming charges from the German carrier with services like those:
    http://www.abroadband.com
    http://www.maxroam.com/Shop/Product/Detail.aspx?ProductId=787&cur=EUR
    Otherwise buy a pre-paid micro-SIM card for the iPad in each country you visit.

  • How to rotate a text in the adobe reader for mobile ios ?

    how to rotate a text in the adobe reader for mobile ios ?

    There's no rotate command to rotate the document. Instead, rotate the iPad. If it doesn't rotate, turn off the Rotation Lock switch on the side of your iPad.

  • How do i get that bar to appear on the screen for http and web pages?

    How do i get that bar to appear on top of the screen for http and web pages?

    Yes im using safari version  5.1.2 (6534.52.7)  I have tried clicking show toolbar  from the view menu but i still can't see it.  It's the bar where you type in a website link or http:// that I can find - any other suggestions much appreciated

  • My Hard Disk setting has been changed into no access for everyone and i can't open my mac. please tell me how can i login as an admin to change the setting cause i have a lot of date in my hard drive.

    My Hard Disk setting has been changed into no access for everyone and i can't open my mac. please tell me how can i login as an admin to change the setting cause i have a lot of date in my hard drive.

    Read and follow Apple Support Communities contributor Niel's User Tip: kmosx: I accidentally set a disk's permissions to No Access

  • Shared codebase for both mobile and web applications?

    I've been developing a mobile application for a while now. It runs on iOS and Android as well as on the desktop as an AIR app. This is great and I'm very excited about it. However, last week I was asked why I couldn't export a version of the app that ran within a web browser. I said that I assumed I could and that I would look into it.
    But why would you want to run mobile code on the desktop?
    A couple of reasons:
    Greater re-use of code. This doesn't make sense in all cases but it does in many cases. (I won't elaborate because I think this is self-evident. If you disagree I'd be happy to talk about it but I'd rather not clog this description with it.)
    Quicker/easier client demos. Rather than having to install an apk or an ipa on a mobile device, I can just send a URL.
    So what have I found? Well, from what I've tried so far.. it.. doesn't work. Or rather I haven't been able to make it work.
    I started by creating a Flex Library project for all shared code. Then I created 2 application projects that reference it- one for mobile and one for web. The mobile project works fine but the web project does not. Here's what I've tried so far to make it work:
    I tried adding the mobilecomponents.swc and the mobile.swc theme to my web project so that Flash Builder knows about MobileSkin (and other mobile-only classes). This enables my app to compile but when I launch it immediately throws a runtime error inside of UIComponent: VerifyError: Error #1014: Class flash.text::StageText could not be found. I've found very little about this error, and the one tip I did find (adding the --swf-version=13 compiler option) does not work.
    I tried using conditional compilation to control which class my skin components inherited from: MobileSkin or SparkSkin. This was just a quick experiment to see if it worked. I know it's disgusting and not a production solution. My thinking though was that if MobileSkin was really just an optimized version of SparkSkin, my skins should be okay inheriting from either. This didn't work right away- app wouldn't compile b'c certain methods were missing (ex. layoutContents) and so I bailed on it because it felt dirty to begin with.
    I tried replacing MobileSkin with UIComponent as the super class for all of my skins thinking that MobileSkin was probably just a lightweight subclass of UIComponent anyway. This approach resulted in some compiler errors at first (ex. no layoutContents method, no measuredDefaultWidth/measuredDefaultHeight properties, addChild vs addElement, etc.). Once those issues were resolved the app compiled but crashed with runtime errors inside of UIComponent's "getState" method. (Looks like MobileSkin overrides this method to prevent UIComponent's default behavior.)
    So none of those approaches have worked for me so far... but what about you guys? I have no hopes of Adobe reading this thread or responding to it in any way, but I would love to hear from other people in the community. Have you encountered this issue yet? Were you able to make it work or can you spot any obvious oversights I've made in the methods I mentioned trying above? Thanks in advance if you can.

    Update: I've been able to make progress with the first route mentioned above: adding the mobilecomponents.swc and the mobile.swc theme to my web project
    Turns out that Flash Builder had led me wrong in this regard. Adding the mobile SWCs to your Library project with the "merged into code" setting results in the compiler warning:
    The swc '/Applications/Adobe Flash Builder 4.6/sdks/4.6.0/frameworks/themes/Mobile/mobile.swc' has style defaults and is in the library-path, which means dependencies will be linked in without the styles.  This can cause applications, which use the output swc, to have missing skins.  The swc should be put in the external-library-path.
    Seeing this the first time, I changed my linkage type to "External" and the warning went away. Then in my web project, I also added the mobile SWCs and set the linkage type to "merged into code" there. Flash Builder seemed happy with that approach, but upon running my application I got bizarre runtime errors (as mentioned above).
    Turns out that my first attempt was the correct way. Set the linkage type on the library project to "merged into code" and then don't re-link from your web project. Flash Builder will warn you about it but ignore the warning. Things seem to work pretty well for the most part now! I have an issue or two to look into (ex. List component doens't scroll) but things look pretty promising overall!

  • Which application server is requierd for form9i and for form10g

    which application server is requierd for form9i and for form10g

    Oracle Application Server 9.0.2 (Forms 9i) and Oracle Application Server 10g (9.0.4) (Forms 10g)
    Frank

  • How do I change my mouse to right click for copy and paste

    How do I change my mouse to right click for copy and paste?

    OK, what mouse are you using?  Brand, model?  Your right click should register as a right click unless that has been overridden by a preference pane.  If your Mouse preference pane looks like this, your right click should be the equivalent of a control-left-click on a Mac.

  • How do I switch my email account to cell for FaceTime and iMessage

    How do I switch my email account to cell for FaceTime and iMessages?

    I think you are asking how to use your phone number with FaceTime and Messages rather than an email address, but you must have an iPhone number not just any "cell" phone number.
    Take a look at this.
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage

  • Applications - are they only for touch and phone?

    Are there any applications for the 30g ipod 5th generation?

    Applications - are they only for touch and phone?
    Yes.
    Are there any applications for the 30g ipod 5th generation?
    No.
    (36283)

  • How much is the price of upgrading from CS5.5 Design and Web Premium to CS6 Design and Web Premium?

    How much is the price of upgrading from CS5.5 Design and Web Premium to CS6 Design and Web Premium? 
    And why is this price not on the Web site?
    And when will this price be added to the Web site?  It's long overdue.

    Sorry.  After downloading required Adobe CS6 Design and Web Premium files and attempting to install, the error message "
    The file archive part of Adobe CS6 Design and Web Premium is missing. You need all parts in the same folder in order to extract Adobe CS6 Design and Web Premium. Please download all parts" appears.  Using Window 8.  This happens on the Adobe Design and Web Premium CS6 installer file.

  • How to install the Oracle Applications Framework Provider for Portal10g?

    I am trying to intergrate Portal10g 10.4.1 with EBS 11i.5.10 and all the step required list in metalink document was done.
    However,the Oracle Applications Framework Provider is not show if i view the Portlet Repostiory after refreshing it.
    I guess that this problem is caused by missing something to install.
    Can anyone give me any suggestion about how to solve that?
    Very appreciate for any comments.

    Hi Tim
    I Meant to say say that doing of inbound interface for apps with xml related data
    raghu

  • How to Configure the Buttons on the QAF for Mobile UI Screens...

    Hi Experts,
    I am in a serious need of help from the experts who already designed the Mobile UI screens.
    I have built a add-on where now we are looking this add-on to be available to use in mobile applications also. Now here what I did is I have developed OWL and QA floor plans which will be used for Mobile Only. This option of selecting only for mobile is available to us while we are creating screens. In this way I have designed the screens and attached them to the work center views.
    These views are attached to the work center floor plan and this is been assigned to my user. When I tried of viewing the designed screens using my android mobile I am able to see the screens owl and Qaf as of designed, but  now the problem is existing here.
    When I am trying to perform one of the custom action which i have configured on the QAF floor plan the button which is configured with this custom actions is not visible at all. Not only this the standard action button on the tool bar of the Qaf like "Save" "Close" those are also not visible. I am not at all seeing any of the button on my QAF screens. With out these button I cannot go further to complete my process and complete transaction will not be done untill unless some of the custom actions which were configured on the screen. These custom actions are the action which I have declared in the custom Bo and developed with some code over there with the help of ABSL script.
    I have followed the SAP 1402 documentation  but there it is not clear how to do it. I have done every step of the document but no use with it. Please needed any other real time expertise help who worked already on this mobile screens.
    Regards..
    Hanu K

    Sorry but your posting is pretty confused for me.
    At first you wrote:
    >I can use Play/Pause, Stop, Forward and Back in Winamp
    Later you wrote:
    >and WINAMP to the MEDIA BUTTON
    What now? Can you use media buttons with Winamp or not. As far as I know something like this is not possible because Toshiba has designed tool that controls WMP only

Maybe you are looking for

  • Document number field F4 help in transaction cv01n

    Hi, I would like to not display deleted documents in Document Number field search help in CV01n transaction only. How do I go about doing this? Regards, K

  • Index Generation Error in Explorer

    Hi Expert, I am using BO4.0 and had created a Universe(.unx), upon universe i had created Webi Report which is working fine but if i use the same universe in Explorer, its showing Error in the Index Generation. Also same sql stmt which is working fin

  • Can't move files to SD

    Sorry if this disturb you but i have trouble with my phone sony MT25i. I cant put some junks into sd card!:/ so my phone always be full of memory and i cant download anything cause the memory=.= iam feel so awful about my phone( please give me some a

  • How to describe placeholder/parameters in a SQL statement

    Hi Does anybody know how to describe the placeholder/parameters in a statement? I only find the OCI documentation talking about "Describing Select-list Items". But what if I want to retrieve the data type of a placeholder (assuming I don't know befor

  • How to export a Captivate 8 project to Power Point?

    I would like to be able to export my Captivate 8 project to PowerPoint so I can use it in a classroom training session and also be able to print out the slides to use as handouts.  Does anyone know how I can do this?