Deployed the EAR Application, but unable to access the Application's JSP's

I installed SAP Netweaver 2004s and tried to create a Web application and an ear file.
I followed all the steps. The deployment from the Developer Studio showed success. When I try to access the application using the url
http://server:port/WebModuleProject/test_jsp.jsp
I get the following error. I am not sure why it is looking at com.sap.engine.docs.examples for the file.
The requested resource /WebModuleProject/test_jsp.jsp is not available
  Details:   File [WebModuleProject/test_jsp.jsp] not found in application root of alias [/] of J2EE application [sap.com/com.sap.engine.docs.examples].
Please let me know what I am possibly doing wrong here. Any help is very much appreciated.

Hi Pankaj,
You need to define an application alias for your application before you publish your custom made application.
Check this link:
http://help.sap.com/saphelp_nw70/helpdata/en/96/910fcdfe1c384f8e17cf86947794cf/frameset.htm
For activating the alias check this link:
http://help.sap.com/saphelp_nw70/helpdata/en/66/23c11f7547824990467a2dac1a7308/frameset.htm
Regards,
Siddhesh

Similar Messages

  • TS1398 When my iphone connects to wifi, everything else in my house will not connect to the internet. They all show 3 to 4 bars on connection strength, but unable to access the internet.  The second I turn off the wifi on my iphone, everything runs perfec

    When my iphone connects to wifi, everything else in my house will not connect to the internet. They all show 3 to 4 bars on connection strength, but unable to access the internet.  The second I turn off the wifi on my iphone, everything in my house runs fine. What is going on?

    Had a similar problem a number of years ago with a laptop my daughter had. The probelm turned out to be the router. What kind of router do you have? Have you checked for firmware updates, or at least tried re-booting it?

  • My iphone 5 is in disabled status but when going through the recovery process it asks for the SIM pin but I cannot access the screen as the phone wont connect to the activation server not the screen to unlock the SIM. What do I do?

    My iphone 5 is in disabled status but when going through the recovery process it asks for the SIM pin but I cannot access the screen as the phone wont connect to the activation server not the screen to unlock the SIM. What do I do?

    That's usually a symptom of a phone that was hacked or jailbroken to unlock it.

  • Connected to Wi-Fi network, but unable to access the Internet ipad 2

    Hello,
    i baught a new ipad 2 32 gb , 3g.... 4.3.5os
    i am having an annoying issue regarding the internet connection..
    where i am living i cannot connect a router so my laptop has a cable connected to it to access internet ... i had to create an ad-hoc ( to make my laptop work as a router)
    ( windows 7 btw)
    now my iphone connect fine and i can browse internet, but when it comes to my ipad it only connects to the wi-fi but when i open the safari , a message pops up saying no internet connection eventhough as i said it's connected to WIFI with full signal !!
    this is really frustrating and i've read many many blogs about this issue but none of them solved my problem and this was my last option is to send u guys askin for help...
    p.s: i tried to click on renew lease but nothing is changed
    ip adress : 169.254.90.xxx
    subnet mask:255.255.0.0
    router : blank
    dns:blank

    Try using an explict DNS server, such as
    208.67.222.222 (OpenDNS server)
    8.8.8.8 (Google DNS server)
    System Preferences -> Network -> Advanced -> DNS -> [+]
    The first entry you add (at the top of the list) will be the primary DNS server.

  • Time Capsule has green light, but unable to access the internet

    My Time Capsule has a green light, but all devices (wired and wireless) are not allowed out to the internet.
    When I connect my iMac directly to my internet router, I am able to access the internet, so I have isolated the issue to the Time Capsule.
    The Time Capsule receives an IP address from my internet router via DHCP and I can see this address in the Time Capsule config, but for some reason the Time Capsule is not allowing internet access to both wired and wireless clients.
    Thank you.
    --SN124B

    Verify that you have a working Ethernet cable.
    Then verify that the Ethernet cable is connected from one of the LAN <-> ports on your main router to the WAN "O" port on the Time Capsule.
    Check again to make sure that the Time Capsule is configured in Bridge Mode
    Power cycle the entire network as follows:
    Power off all devices in any order you want
    Wait a few minutes
    Start the modem or modem/router first and let it run a full minute by itself
    Start the main router next the same way
    Start the Time Capsule the same way
    Continue starting devices one at a time until everything is powered back up
    Check the network

  • I  have  purchased   british library  apps.  but  unable  to  access   the  collection   even  i  bought one month  subscription.   done  all  possible   way .  .

    i  am  facing  a  real trouble  to use   British Library apps ,  i have  done   all possible  ways  to    rectify  but invain.  i  bought   one  month subscription as well.

    Well I got something going on here.   I opened Parallels > Windows 7.  Turned on and registered iTunes in Windows.  It asked for an Airplay pin number.   I put one in and I was able to pull up my iTunes library.   But the one in Windows was empty, so I dragged about a dozen movies over from my iMac iTunes into the movie library of the Windows iTunes.  And then I could watch the movies on my TV using ATV from Windows.   For the next couple of hours I kept messing with both iTunes, loosing Apple TV connection to my computer a couple of times.   Now, in order to see my IMac iTunes library, I have to open my iMac iTunes program, then open Parallels>Windows7>iTunes in order to view the videos in my iMac iTunes folder. What is this all about?  Pretty convoluted way to see a movie.
    Also, I cannot figure out how to see my iMac desktop (or drives) on Parallels, so I really don't understand the connection with the two iTune libraries.  Both Libraries do show up on my TV under Apple TV> Computers.
    When I open the Windows iTunes windows, a SHARED section opens  up in my Imac iTunes, on the sidebar.  When I close the Windows iTunes Window, it goes away.  How can I get it to stay on, without using the Windows partition?
    Why didn't the iMac iTunes ask for an Airplay pin?  What is that? 
    Didn't remember seeing anything like this in the Apple Support Communities.

  • Created a user with permissions to one table, but unable to access the table

    I've tried to create a Login that will have access to a single table from a few different databases.
    When I try and query the table, using the created Login I get the following error:
    "The server principal "log_Reader" is not able to access the database "MyDB" under the current security context."
    Here's the SQL I used to create the Login/User:
    USE MASTER
    GO
    CREATE LOGIN log_Reader
    WITH PASSWORD = '<password>'
    GO
    USE DB1
    GO
    CREATE USER log_Reader FOR LOGIN log_Reader
    GRANT SELECT ON dbo.logtable TO log_Reader
    USE DB2
    GO
    CREATE USER log_Reader FOR LOGIN log_Reader
    GRANT SELECT ON dbo.logtable TO log_Reader
    USE DB3
    GO
    CREATE USER log_Reader FOR LOGIN log_Reader
    GRANT SELECT ON dbo.logtable TO log_Reader
    USE DB4
    GO
    CREATE USER log_Reader FOR LOGIN log_Reader
    GRANT SELECT ON dbo.logtable TO log_Reader
    Does anyone have any ideas what I've missed ?
    Thanks, Jason
    MCITP BI Developer - MCTS SQL Server (http://bichopsuey.wordpress.com/)

    I cannot reproduce the error, can you run my script?
    USE [master]
    GO
    CREATE LOGIN [test1] WITH PASSWORD=N'test',
     DEFAULT_DATABASE=[master], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF
    GO
    USE [B]
    GO
    CREATE TABLE [dbo].[t1](
    [c] [int] NULL,
    [c2] [char](1) NULL
    ) ON [PRIMARY]
    CREATE USER [test1] FOR LOGIN [test1] WITH DEFAULT_SCHEMA=[dbo]
    GO
    GRANT SELECT ON [t1] TO [test1]
    EXECUTE AS USER = 'test1';
    --Use B database
    SELECT * FROM [t1] ---works
    REVERT
    USE master
    GO
    EXECUTE AS USER = 'test1';
    SELECT * FROM B.dbo.[t1] ---works
    REVERT
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • With certain apps the speaker is not working (you tube, videos, music, etc)  I need to use the ear plugs. but w/ other apps the speakers work fine. it eass not like that a day ago. before speakers worked fine w/ you tube, videos and music. what can I do?

    the speaker of my iphone sometimes works and sometimes it doesn't. it happens w/some APPS. I can hear a phone call wisth the speakers but not a video of you tube, itunes, etc. Does anyone know how can this be fixed?

    likkuid wrote:
    Staff, please reply :\
    I really don't know what to tell you. I'm not using Vista, nor have I heard of anyone else with that problem, or any solution to it. The staff on this forum aren't really here for support anyways, as noted in the Disclaimer. Sorry, but you'll just have to wait until someone else on the forum has a solution.
    Good luck,
    Dale

  • Users unable to access the internet sites

    Hi Everyone,
    We have users who are able to get the IP address but unable to access any internet sites.
    I check the trap logs on the WLC
    RADIUS server 192.168.50.1:1812 failed to respond to request (ID 16) for client 88:53:2e:99:24:b5 / user 'unknown'
    RADIUS server 192.168.50.1:1812 activated on WLAN 1
    RADIUS server 192.168.60.1:1812 deactivated on WLAN 1
    RADIUS server 192.168.60.1:1812 failed to respond to request (ID 200) for client 88:53:2e:99:24:b5 / user 'unknown'
    RADIUS server 192.168.60.1:1812 activated on WLAN 1
    RADIUS server 192.168.50.1:1812 deactivated on WLAN 1
    RADIUS server 192.168.50.1:1812 failed to respond to request (ID 15) for client 88:53:2e:99:24:b5 / user 'unknown'
    RADIUS server 192.168.50.1:1812 activated on WLAN 1
    RADIUS server 192.168.50.1:1812 failed to respond to request (ID 16) for client 88:53:2e:99:24:b5 / user 'unknown'
    RADIUS server 192.168.50.1:1812 activated on WLAN 1
    RADIUS server 192.168.60.1:1812 deactivated on WLAN 1
    RADIUS server 192.168.60.1:1812 failed to respond to request (ID 200) for client 88:53:2e:99:24:b5 / user 'unknown'
    RADIUS server 192.168.60.1:1812 activated on WLAN 1
    RADIUS server 192.168.50.1:1812 deactivated on WLAN 1
    RADIUS server 192.168.50.1:1812 failed to respond to request (ID 15) for client 88:53:2e:99:24:b5 / user 'unknown'
    RADIUS server 192.168.50.1:1812 activated on WLAN 1
    Need to know  how can i troubleshoot this further?
    Regards
    Mahesh

    I would do the troubleshooting in  following sequence.
    1. Put a wired PC on to the vlan allocated for WLAN1
    2. Check whether wired PC gets an IP & can browse internet
    3. If that works, then we know no issue of DHCP & not issue with L3/NAT routing to access internet
    4. If step2, does not work then your issue is not within wireless, you have to change the focus of your troubleshoot.
    5. If step2 works, then test a wireless client with OPEN Authentication (No ACS involvment).If this does not work,then it means wireless client does not get proper IP connectivity. Check dynamic interface configuration for this WLAN & make sure gateway addresses correctly configured. Also VLANs are trunk across to WLC from switch.
    6. If step5 works, then try your client with ACS & see the client get successfully authenticated. If not it may be WLC to ACS issue. Troubleshoot that in that case.
    Do some troubleshooting like this & let us know the outcome. I am sure you will abe to find out the issue easily in this way.
    HTH
    Rasika

  • I have mac 10.6.8 and safari 5.1.10. on checking help website i am told latest flash player 16.0.0.305 is already installed BUT is not listed in my applications and unable to access sites requiring flash player. can anyone help?

    i have mac 10.6.8 and safari 5.1.10. on checking help website i am told latest flash player 16.0.0.305 is already installed BUT does not appear on my list of applications and am unable to access websites requiring it. have also downloaded flash player installer app but unable to download the flash player itself. can anyone help? thank you!

    Hi Anne,
    Your version of Safari is still supported.  Please see Adobe Flash Player | Tech specs for supported OS and browsers.
    If the Flash Player plugin is in the Plug-ins (disabled) folder it's because it's an older version that Apple has disabled in Safari.  This has nothing to do with whether or not Flash Player supports the browser.
    I'm not sure what you mean by "when i click on flash player itself i am told there is no application to open it."  Flash Player.plugin only works in the browser to view Flash content in the browser.  The plugin does not open files outside of the browser.  If you have SWF files you'd like to view outside of the browser, then you'll need the Flash Player projector. However, based on your previous comments this doesn't appear to be what you are trying to do.
    Google Chrome does embed Flash Player in it, while Firefox does not.   Mozilla has also recently started blocking older versions of Flash Player in Firefox similar to what Apple is doing in Safari.
    Following the 'clean install' instructions should result in you having the latest version of Flash Player installed that will not be blocked by the browser.
    Maria

  • I have been using pse11 on wondows vista and it has certainly started freezing on starting and I am unable to access the organizer, the editor is ok. Have removed and reinstalled but is the same have changed the files as suggested. Have been unable to ope

    I am using pse 11 0n windows vista for years and it has suddenly started freezing on starting, I am now unable to access the organizer it freezes on the blue screen, the editor can be opened. Have removed and reinstalled but is still occurring. Have changed the files as suggested, am unable to open as administrator

    'The installer has insufficient privileges to modify this file C:\Program Files (x86)\Common Files\Apple\Apple Application Support\Web kit.resources\inspector\Images\Spinner Inactive Selected.gif.'
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Vista instructions in the following document: Check your hard disk for errors
    Windows 7 instructions in the following document: How to use CHKDSK (Check Disk)
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • I recently upgraded to iWork v9.0.3, but when I access each applications the versions are different (i.e. Pages V.4.1, Numbers V2.6, Keynote V5.1.1) with a install date of 3/18/09 -- which is not the current install date of 2 weeks ago. Why?

    I recently upgraded to iWork v9.0.3, but when I access each applications the versions are different (i.e. Pages V.4.1, Numbers V2.6, Keynote V5.1.1) with a install date of 3/18/09 -- which is not the current install date of 2 weeks ago. Shouldn't Pages, Numbers, and Keynote show version 9.?? My MAC confirned installation of v9.0.3 and even accepted the software code. With this discrepancy, how can I determine if the latest was installed and operational? I even downloading v9.0.4, 9.0.5, and 9.1. When I tried installing these downloads it popped up note stating that a later version of Keynote was already installed.

    You used the data.  Verizon can not see what it was sued for.  However your phone can see whats apps used the data.  go to settings-data usage- there will be a place that says data usage cycle.  line the dates up with your cycle.  then there will be a bar graph below that   extend bother white bars one all the way to the left and one all the way to the right.  after those are extended below that will be a list of apps,  there should be one that used over 2 gb and that will show you what app used that data in her purse

  • I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data.

    I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data and it does not show on the desktop when connected.

    Ok if disk utility was able to verify the drive I doubt there is any problem.. are you trying to open a TM backup??
    You need to mount the sparsebundle then check the actual info inside the bundle.
    Don't use disk warrior.. if the disk has verified then unless you deliberately deleted files there is nothing that is going to do.
    Pondini has a lot of stuff about getting access to the sparsebundle.
    http://pondini.org/TM/17.html
    But if you have copied info to the TC that is now gone.. and the disk is ok.. I am not sure.. the TC will not have deleted the files itself.

  • After updating Firefox yesterday I have been unable to access the internet. I have tried the Norton 360 fix several times, but it still doesn't work. How can I get Firefox working again?

    After updating Firefox yesterday I have been unable to access the internet. I have tried the Norton 360 fix several times, but it still doesn't work.

    After updating Firefox yesterday I have been unable to access the internet. I have tried the Norton 360 fix several times, but it still doesn't work.

Maybe you are looking for

  • How do I find the age of my macbook pro?

    I want to update from snow leopard 10.6.8 but the app store won't let me purchase mountain lion.  I'm not sure how old my macbook pro is, how do I find out?  Would there be any other reason why the app store is telling me my computer is not compatibl

  • Unable to create the new application

    HI i am trying to create a new application ,database connections are ok data source is ok .essbase connection is ok.when i described currency period plan 1 and no of years and then click finish i am getting this messege An error occurred while proces

  • Read IDOC segment with qualifier

    Hi, I need to read data into a workArea from a IDOC segment which has Qualifiers for it. The IDOC or BASIC type is   DELVRY03. Segment                                E1EDT13. Qualifier                                 006 Thx in advance Mac

  • Itext and CFMX7

    We developed a cfc in order to use itext and generate pdf forms on the fly on a CF6.1. We have now setup a new server with CFMX7 and promoted our applications on CF7.0 The cfc no longer seems to work under CF7. Are there any known issues with regard

  • Grab images using IMAQ without sending frame request

    Hello, When a camera is externally triggered, is it possible to design a *.vi that makes use of IMAQ and grabs images via Camera Link frame grabber without sending frame request signals AND without knowing the external trigger? Just to grab images wh