Access web app - Check if form is in edit mode

I want to hide some fields when a form is in edit mode but I can't figure out how to check that. I tried
That is not working. Is there another way to check the "state" of a form.
Thanks, Mike

Hi Mike,
Unfortunately, there is no existing method that I'm aware of to know if a view in an Access 2013 web app is currently in Edit mode or view mode. I can sympathize with you on this one since I’ve had many occasions in my apps where I wanted to use something
like this for various scenarios. I will pass along your feedback to the product team. You can set various properties on controls using macros, however, you cannot read control property values on views in Access 2013 web app views. The one exception is reading
values of data entry controls.
About the closest you can come to achieving you end goal would be to do a whole lot of extra work to control basic editing and save operations on that view. For example, you could create a new custom Action Bar button on your view with the same icon as the
existing Edit Action Bar button. Slide that one into the position you want in the Action Bar. For the On Click event of this custom one, you put the view into Edit mode, and then show the controls that you want (which are hidden by default I presume in the
On Load event of the view).
If you want to experiment with this technique, I would suggest trying it out on a copy of the view. There are a couple of caveats to this approach that I should point out. First, don’t delete the existing built in Edit and Save Action Bar buttons (or any
of the built in ones for that matter). Once deleted, you can never get them back. I am always in the habit of sliding ones I don’t want to the far right and then hiding them in the On Load event of the view. That way if I ever have a need in the future to
bring it back, the button(s) is still there for my use and all I have to do is remove the macro that is hiding it.
The second caveat is that once you put your view into Edit mode using your own custom Action Bar edit button and then click the save button to save the record changes, your hidden controls that you wanted to display on initial load will still show for the
next record. That may not be the behavior you want. In that case you would need to also create your own custom save Action Bar button too. In that On Click event, you would use the Save Record macro action and you would re-hide the controls that you want hidden
again for the next record since Access will automatically pop you back into view mode with the save operation. You’ll have to experiment with this if you want to try it. You might need to hide the controls before doing the Save Record action.
Hope that helps,
Jeff Conrad - Access Junkie - MVP Alumnus
Senior Content Developer - Modern Assistance and Support Experience - Microsoft Corporation
Author - Microsoft Access 2013 Inside Out
Author - Microsoft Access 2010 Inside Out
Co-author - Microsoft Office Access 2007 Inside Out
Access 2007/2010/2013 Info: http://www.AccessJunkie.com
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/en-us/legal/Copyright/Default.aspx

Similar Messages

  • Using MS Access Web App, can you set the tab order of the fields on a form?

    Using MS Access Web App, can you set the tab order of the fields on a form?  Doesn't appear to be a property.  I don't see a programmatic method.  I saw someone suggest using goto control on the after update event trigger but what if the person
    doesn't edit the field?  No event would be fired.
    Jim

    Hi Jim,
    >>Using MS Access Web App, can you set the tab order of the fields on a form?
    I am afraid you could not. In Web applications, the tab order is set automatically and cannot be changed.
    (From
    https://support.office.com/en-au/article/Set-the-tab-order-for-controls-3d7f749c-5a53-42b2-bb0e-2323fa044e2e)
    >> I saw someone suggest using goto control on the after update event trigger but what if the person doesn't edit the field?  No event would be fired.
    The goto method is a workaround, but it should be triggered by a specific event. What I can figure out is changing the order of the fields.
    If this is a feature you want to include in future versions of Access Web app, please submit a feedback as the picture below:
    Best Regards,
    Edward
    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.

  • Access Web App - 404 File or Directory not Found

    Trying to create a Sharepoint 2013 Access Web App, app creation completes successfully, I can check in SQL and the database for the Web App is created successfully also.  When I try to open the Access App i get a 404 - File or directory not found.
    Any ideas, I do not have an Office Web App Server setup, is this required?
    Thanks, TJ

    Been so long that I don't exactly remember.  I can't remember what I had in DNS that was causing the issue.  Currently though, I have my Sharepoint apps zone, which contains a CNAME entry with the following information:
    Alias name: *
    FQDN *.(DOMAIN).COM
    FQDN Target: SP1.(DOMAIN).COM
    Where (DOMAIN) is my domain.  Hope this helps, I will look a little more and try and remember what I did.

  • Developed Access Web app on Office 365 - cannot publish it to On Premises SharePoint 2013

    I developed an Access Web app, which works fine on Office 365.
    Now I want to deploy it to our on premises SharePoint 2013 farm
    After I upload the .app package I created from it to our app catalog it shows 'Valid App Package = no':
    In the ULS log I found the following:
    There were errors when validating the App package: There were errors when validating the App Package. Other warnings / errors associated with this exception:  The current version of SharePoint is less
    than the SharePointMinVersion specified in the app manifest. CurrentVersion='15.0.4569.1000', SharePointMinVersion='16.0.0.0'
    Is there any way that I can work around this, other then recreating the app manually on our on premises farm?

    Hi,
    Please check the SharePointMinVersion in AppManifest.xml file in your Office 365 app and modify it to "15.0.0.0", then deploy the app to SharePoint on-premise.
    Thanks,
    Dennis Guo
    TechNet Community Support
    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 Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • How do I show/refresh data from an Access Web App in an Excel spreadsheet saved in a Document Library on Sharepoint 2013 online

    I have an Access 2013 Web App in my Sharepoint 2013 online website. It contains a query to report on its data (several, actually, but let's keep it simple). I want to connect an Excel spreadsheet to the query, visualise the data in pivot tables/graphs/whatever,
    save the spreadsheet in a Document Library, and let other team site Sharepoint users open the spreadsheet (preferably in Excel online, but with Excel client if it has to be) and see/copy the data, refreshed with the latest information from the Access Web App.
    Simple, surely!
    The way I'm doing it at the moment is to create an ODC file to connect to the cloud-based Access 2013 database, save that ODC in a Data Connection Library in the SP site, and use the saved ODC file as data source in the Excel spreadsheet. This works and
    successfully keeps everything 'in the cloud' but I can't get it to refresh in Excel Online, and if I open the spreadsheet in Excel Client I have to enter the database password every time to refresh it. I don't really want to issue this password to everyone
    who might want to view the data. There must be a better way than this ODC method, I suspect.
    Googlings on this have led down various blind alleys - Excel Services, PowerPivots, Web Parts - but I'm stuck on which to follow through. Please, someone, point me to an article/book/website that explains how to do this step-by-step in simple language..
    thanks
    Jonathan

    I don't see any quick way of achieving it - at least there's no such functionality exists in SharePoint. All you can do, develop an event receiver that will update the fields in the list item once the excel file is added/updated. You can use OpenXml API
    to manipulate the excel file.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • Server communications error in Sharepoint365/Access web app

    I'm having a similar issue to this post using Office365 (academic). I have an
    Access web app that was working fine until about 1 week ago when suddenly became very slow to start on a web browser, and then any changes I make in Access 2013 and then attempt to save results in a dialog box "Please wait while we attempt to save changes"
    followed by "Please wait while we attempt to contact the server. Press Esc to quit". Finally, it sometimes fails with "An error occurred in the client while attempting to communicate with the server 'https://<url>.sharepoint.com/sites...
    Please contact your system administrator of technical support". If I wait awhile and try again, it usually succeeds. If I try too quickly, then I get the dreaded " '_AppHomeForm' cannot be saved because someone else has made changes to it."
    I end up having to discard changes and start over again.
    I've already deleted the local cache to no avail.
    Is anyone else experiencing similar problems? The other post indicated that the problem magically went away after awhile - I'm hoping for the same but it's been more than 1 week now.

    Glad to hear that. If the problem came back, please feel free to contact us. We'll be happy to help.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Data sync to external SQL from Access Web App

    Hi all
    Am I dreaming or does creating a table in an Access Web app based on an external SQL Azure database table (not the intrinsic one) end up being an import not a sync?  It doesn't even seem to update when i open the external table and refresh it?
    I am adding new records at the external SQL source and they are not updating in the table in the WebApp
    Is anyone having similar problems?
    Cheers
    Sally

    Hi Sally,
    >> I am adding new records at the external SQL source and they are not updating in the table in the WebApp
    Do you mean that you import a table from an external SQL Azure database into Access Web app, the data in Access Web app did not update after you change the an external SQL Azure database data? In my option, this is expected behavior if you are using import
    table. Importing from another database would not achieve that, and it only achieves copying data from another database. I am afraid that you could not achieve your requirement from Access Web app.
    As far as I know, the database of Access web app is Azure DB, I think you could sync the Access web app Azure DB and External Azure DB, you could refer the link below for more information.
    Reference:
    http://azure.microsoft.com/en-us/documentation/articles/sql-database-get-started-sql-data-sync/
    I am not familiar with Azure DB, and if you have issues about Azure DB, I will recommend you go to the link below for help.
    Reference:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=ssdsgetstarted
    Thanks for your understanding.
    Best Regards,
    Edward
    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.

  • Access Web App - Need some advice with query (text to number problem)

    In an Access Web App I want to create a query.
    I have two tables which are related but in a bit complicated way. For some reason I have a text field in which I save a number. This number relates to the ID of another table. When I combine these two tables in a query, it's not working because the textfield
    cannot query the (ID)number field.
    Is there a way, in this query so that I covert the text field to a number so the query will work?
    I tried to do it with the "Parse" function but no luck, so far.
    Thanks, Mike

    Hi Mike,
    Based on the description, you want to create a query by joining a text filed with number filed?
    Did I understood correctly? If so, as far as I test, it works in Access 2013 web app. Here is the screen shot for your reference:
    If I misunderstood, please feel free to let me know.
    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.

  • Accessing an SQL Server Database created by MS Access Web App

    1.I have tried to use MS Access Web App which has created an SQL Server Database. I would like to access the database using SQL Management Studio Express 2014.  In access I can see the server name on windows.net and the database name but I do not know
    how to connect to this using SSMS Express 2014. Can you please help?                                                                         
    2.I also want to view our emails on MS Exchange in real-time. In MS Access Jet I can do this by linking the folders as tables. Is there a way of doing this in SQL Server? If not can I have a separate MS Access Jet with linked tables which I can then link into
    my SQL Server as an OLEDB Linked server?                                                                                                                         
    3. If going for the Linked Table in Jet solution where can I store it so that my MS Access Web App will have access to it?

    Hi gkounis,
    I don't think it support link MS Access Jet with linked tables in SQL Server.
    Can you share some info about your MS Access Web App?
    Regards,
    Black

  • Macro Timeout Error- MS Access Web App 2013

    Hello everyone,
    I have a MS Access Web App built with a lot of different tables and everything works fine. I have this one table with a number of fields (70 different fields), and some of them are lookups to other tables or a dropdown menu. In our company
    we were using only SharePoint earlier and now we are migrating to access web app. I need to copy or import all the data that we had previously into that one table and then be able to do different types of data manipulations. 
    I have created a data macro to copy all the records even the lookups (a separate thread is available if anyone is dealing with that problem). When I try to copy say 500 records this works fine. But, when I try to copy more records it throws me a timeout
    error. It only works for 60 seconds and then it stops and throws an error. Is there a way I can increase the timeout? Or has anyone else faced the same problem?
    Please advise.
    Thanks in advance.

    The recommended way is to use an Access desktop database and connect to the Azure database behind your App. The firewall and connection information is under File> Info > Connections.
    You can then have linked tables to your SharePoint lists and to your Azure tables, and write append queries to copy the data over.
    -Tom. Microsoft Access MVP

  • Updating a SharePoint Calendar and sending email notifications based on information from an Access Web App

    Hi MSDN Forum,
    I have created an Access Web App that I am hoping to add some functionality to. I am looking to provide email notification to different users from my organization (a field within the Access Table) when the current date approaches the renewal date (another
    field within the Access Table). I would also like to display all renewal dates on a SharePoint Calendar for users to see. Any advice on how to do this would be much appreciated.
    Thanks!

    I'm not familiar with how Access Web Apps work. However, on the SharePoint side of things, it looks like a workflow will be your best bet. Are you using Visual Studio? I've created a few tutorials on sending email notifications in Visual Studio 2012. https://youtu.be/JFdiQEyDkEk

  • Integrate web part page into access web apps

    Hi All,
    Im using SharePoint 2013 online and Office 2013
    I am working on an access project which would allow the user to upload documents to the documents folder in SP from within an Iframe in an access app all in the same SP.
    The idea is that rather than having to move from one IE tab to the other the user can drag and drop the document in the iframe which will be in the pop up. then have a SP document list displaying bellow this iframe to confirm that the file has been
    indeed uploaded. When I load the app I get a "This content cannot be displayed in a frame" my idea is based in a book "Professinal Access 2013 Programming" chapter 10 Inlining a web app in access web app. I have also read that I can have
    a website viewer which can display a website, folder or file but its asking me for the path which I don't know and it doesn't take URLs.
    I have googled and searched this forum but cant seem to get the documents forlder to display in the iframe.
    I hope im clear and you guys can help me resolve this task.
    Thanks

    Hi,
    You may use powershell script in order to copy et move your page to another location.
    Have a look at this :
    https://gallery.technet.microsoft.com/office/Copy-all-SharePoint-Files-0999c53f
    Best regards.

  • How do i add my access web app into a iframe on a "site page"?

    I just created a MS Access "custom web app", and published it on my site.
    Then i can open the Access form when i click on the link in the menu at my site. The problem is just that it removes my site logo and all the menu's. Well, its like fullscreen.
    What i really want is to show the form in the first page of my site, "Home".
    I have tested insert -> "Embed code", and then enter the following code: 
    <iframe src="https://xxxxxx.sharepoint.com/sites/xxx/xxx/databaselist></iframe>
    It just shows this warning: "This content cannot be displayed in a frame"
    Then i found this site: http://blogs.msdn.com/b/officeapps/archive/2012/12/12/iframing-sharepoint-hosted-pages-in-apps.aspx
    Quote: 
    SharePoint page developers can opt-out of clickjacking protection by adding the AllowFraming control to their .aspx pages:
    <WebPartPages:AllowFraming runat="server" />
    Well, does anyone here know how to do this with a access form?

    Screenshot of how it looks when i try to show a ms access form inside a iframe:
    http://oi58.tinypic.com/2vj4ish.jpg

  • MS Access Web App: corrupted table, cannot open in Access anymore

    **tldr: How can I delete a corrupted table that prevents me from opening my Web App in Access?**
    I used the Access desktop client to create a new table with approx 20 lookup fields. When I tried saving the table, I received an error message about too many indices. So I set the index option to "no" for all the lookup fields and tried to close
    the "edit table view". However, I was not able to close the edit table view anymore. After trying for a while, I used the task manager to terminate Access.
    Now, when I try to open my app in Access by clicking the "customize in Access" button on the web, I receive several error messages:
     1. Operation failed: the table xxx contains too many indices. Delete some indices and try again. (this error message appears about 5 times)
     2. Microsoft Access can not create the table
     3. A problem occurred when trying to access a property or method of the OLE object.
    Next, I'm at the Access start screen. My application does not open.
    So, is there any other way I can delete the corrupted table without opening it through the Access client? Maybe directly accessing the SQL server? The database is configured to allow read/write connections, becasue I connected to the tables from an Access Desktop
    Database, but I'm not sure if I can delete a table or fields that way. Any help is greatly appreciated!
    [I translated the error messages from German, so they might be slightly different in the English version]

    **tldr: How can I delete a corrupted table that prevents me from opening my Web App in Access?**
    I used the Access desktop client to create a new table with approx 20 lookup fields. When I tried saving the table, I received an error message about too many indices. So I set the index option to "no" for all the lookup fields and tried to close
    the "edit table view". However, I was not able to close the edit table view anymore. After trying for a while, I used the task manager to terminate Access.
    Now, when I try to open my app in Access by clicking the "customize in Access" button on the web, I receive several error messages:
     1. Operation failed: the table xxx contains too many indices. Delete some indices and try again. (this error message appears about 5 times)
     2. Microsoft Access can not create the table
     3. A problem occurred when trying to access a property or method of the OLE object.
    Next, I'm at the Access start screen. My application does not open.
    So, is there any other way I can delete the corrupted table without opening it through the Access client? Maybe directly accessing the SQL server? The database is configured to allow read/write connections, becasue I connected to the tables from an Access Desktop
    Database, but I'm not sure if I can delete a table or fields that way. Any help is greatly appreciated!
    [I translated the error messages from German, so they might be slightly different in the English version]
    Not sure, but you may have to many indexes created, see below article:
    Indexes on a Table
    Hope its not corrupted though. If so, I hope you have a backup in place.
    Try to Compact & Repair and also check below article: 
    Recovering from Corruption
    Hope this helps,
    Daniel van den Berg | Washington, USA | "Anticipate the difficult by managing the easy"
    Please vote an answer helpful if they helped. Please mark an answer(s) as an answer when your question is being answered.

  • Error 404--Not Found while accessing web app through Weblogic 6.1

    Hi everybody,
              I am new to Weblogic and recently installed Weblogic6.1
              on my machine and I am trying to access my application using weblogic
              and it gives
              Error 404--Not Found
              From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              10.4.5 404 Not Found
              I have uploaded the WAR file of my application using the Admin
              console. The WAR file is place under
              \bea\wlserver6.1\config\mydomain\applications\screen.war.
              What am I doing wrong ?
              Thanks is advance.
              PS: I am also including my web.xml file
              <?xml version="1.0" encoding="ISO-8859-1"?>
              <!DOCTYPE web-app
              PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
              "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
              <web-app>
              <session-config>
              <session-timeout>-1</session-timeout>
              </session-config>
              <!-- Action Servlet Configuration -->
              <servlet>
              <servlet-name>action</servlet-name>
              <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
              <init-param>
              <param-name>application</param-name>
              <param-value>resources.nmr.ApplicationResources</param-value>
              </init-param>
              <init-param>
              <param-name>config</param-name>
              <param-value>/WEB-INF/struts-config.xml</param-value>
              </init-param>
              <init-param>
              <param-name>debug</param-name>
              <param-value>2</param-value>
              </init-param>
              <init-param>
              <param-name>detail</param-name>
              <param-value>2</param-value>
              </init-param>
              <init-param>
              <param-name>validate</param-name>
              <param-value>true</param-value>
              </init-param>
              <load-on-startup>2</load-on-startup>
              </servlet>
              <!-- Action Servlet Mapping -->
              <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>
              </servlet-mapping>
              <!-- PDF servlet configuration -->
              <servlet>
              <servlet-name>pdf</servlet-name>
              <servlet-class>com.abbott.gprd.servlets.PdfServlet</servlet-class>
              </servlet>
              <!-- PDF servlet Mapping -->
              <servlet-mapping>
              <servlet-name>pdf</servlet-name>
              <url-pattern>/pdf</url-pattern>
              </servlet-mapping>
              <!-- MIME Mapping -->
              <mime-mapping>
              <extension>mol</extension>
              <mime-type>chemical/x-mdl-molfile</mime-type>
              </mime-mapping>
              <!-- The Welcome File List -->
              <welcome-file-list>
              <welcome-file>index.jsp</welcome-file>
              </welcome-file-list>
              <!-- Application Tag Library Descriptor -->
              <taglib>
              <taglib-uri>/WEB-INF/app.tld</taglib-uri>
              <taglib-location>/WEB-INF/app.tld</taglib-location>
              </taglib>
              <!-- Struts Tag Library Descriptors -->
              <taglib>
              <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
              <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
              <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
              <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
              </taglib>
              <taglib>
              <taglib-uri>/WEB-INF/nmr.tld</taglib-uri>
              <taglib-location>/WEB-INF/nmr.tld</taglib-location>
              </taglib>
              </web-app>
              

    hmm
              it all looks ok to me
              what happens if you try to access an image or something in your war (ie
              something not java related)
              also - i have seen on some machines that localhost doesnt work but 127.0.0.1
              does work
              your app should be trying to access index.jsp which should be in the root
              directory of your war
              does index.jsp exist and is it in the root directory of your war?
              lastly - i noticed you have a startup servlet. Put a system.out in the init
              method of the servlet. If the servlet is being deployed OK then you should
              see some output in the console
              "Ravi" <[email protected]> wrote in message
              news:[email protected]...
              > I am specifying the same http://localhost:7001/screen and it still
              > gives the same error.
              >
              > Following is part of my cofig.xml where myapp is specified.
              >
              > <CustomRealm
              >
              ConfigurationData="user.filter=(&(cn=%u)(objectclass=person));user.dn=ou
              =people,
              > o=example.com;server.principal=cn=admin,
              >
              o=example.com;membership.filter=(&(member=%M)(objectclass=groupofuniquen
              ames));group.filter=(&(cn=%g)(objectclass=groupofuniquenames));server.ho
              st=ldapserver.example.com;server.ssl=true;group.dn=ou=groups,
              > o=example.com"
              > Name="defaultLDAPRealmForNovellDirectoryServices"
              > Notes="This is provided as an example. Before enabling this
              > Realm, you must edit the configuration parameters as appropriate for
              > your environment."
              > Password="{3DES}/4XkW5rmVvBHzFtI9SRK/g=="
              > RealmClassName="weblogic.security.ldaprealmv2.LDAPRealm"/>
              > <Server ListenPort="7001" Name="myserver" NativeIOEnabled="true"
              > TransactionLogFilePrefix="config/mydomain/logs/">
              > <Log FileName="config/mydomain/logs/weblogic.log"
              > Name="myserver"/>
              > <SSL Enabled="true" ListenPort="7002" Name="myserver"
              > ServerCertificateChainFileName="config/mydomain/ca.pem"
              > ServerCertificateFileName="config/mydomain/democert.pem"
              > ServerKeyFileName="config/mydomain/demokey.pem"/>
              > <WebServer DefaultWebApp="DefaultWebApp"
              > LogFileName="./config/mydomain/logs/access.log"
              > LoggingEnabled="true" Name="myserver"/>
              > <ServerDebug Name="myserver"/>
              > <ExecuteQueue Name="default"/>
              > <KernelDebug Name="myserver"/>
              > <ServerStart Name="myserver"/>
              > </Server>
              > <Application Deployed="true" Name="screen"
              > Path=".\config\mydomain\applications">
              > <WebAppComponent Name="screen" Targets="myserver"
              > URI="screen.war"/>
              > </Application>
              > <SNMPAgent Name="mydomain"/>
              > <Realm FileRealm="wl_default_file_realm" Name="wl_default_realm"/>
              > <ApplicationManager Name="mydomain"/>
              > <JTA Name="mydomain"/>
              >
              > Thanks in advance.
              > Ravi.
              >
              >
              > "Matt Krevs" <[email protected]> wrote in message
              news:<[email protected]>...
              > > what url are you specifying?
              > >
              > > i would guess that http://localhost/screen-web would work. Hard to say
              > > without also seeing your config.xml
              > >
              > > The critical item in config.xml is the value of URI in the
              webappcomponent
              > > element for your application
              > >
              > > eg if it was
              > >
              > > <WebAppComponent Name="myapp-web" Targets="myerver" URI="myapp-web"/>
              > >
              > > then the url you would call is http://localhost/myapp-web
              > >
              > > "Ravi" <[email protected]> wrote in message
              > > news:[email protected]...
              > > > Hi everybody,
              > > > I am new to Weblogic and recently installed Weblogic6.1
              > > > on my machine and I am trying to access my application using weblogic
              > > > and it gives
              > > >
              > > > Error 404--Not Found
              > > > From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
              > > > 10.4.5 404 Not Found
              > > >
              > > > I have uploaded the WAR file of my application using the Admin
              > > > console. The WAR file is place under
              > > > \bea\wlserver6.1\config\mydomain\applications\screen.war.
              > > >
              > > > What am I doing wrong ?
              > > >
              > > > Thanks is advance.
              > > >
              > > > PS: I am also including my web.xml file
              > > >
              > > > <?xml version="1.0" encoding="ISO-8859-1"?>
              > > >
              > > > <!DOCTYPE web-app
              > > > PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
              > > > "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
              > > >
              > > > <web-app>
              > > >
              > > > <session-config>
              > > > <session-timeout>-1</session-timeout>
              > > > </session-config>
              > > >
              > > > <!-- Action Servlet Configuration -->
              > > > <servlet>
              > > > <servlet-name>action</servlet-name>
              > > >
              <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
              > > > <init-param>
              > > > <param-name>application</param-name>
              > > > <param-value>resources.nmr.ApplicationResources</param-value>
              > > > </init-param>
              > > > <init-param>
              > > > <param-name>config</param-name>
              > > > <param-value>/WEB-INF/struts-config.xml</param-value>
              > > > </init-param>
              > > > <init-param>
              > > > <param-name>debug</param-name>
              > > > <param-value>2</param-value>
              > > > </init-param>
              > > > <init-param>
              > > > <param-name>detail</param-name>
              > > > <param-value>2</param-value>
              > > > </init-param>
              > > > <init-param>
              > > > <param-name>validate</param-name>
              > > > <param-value>true</param-value>
              > > > </init-param>
              > > > <load-on-startup>2</load-on-startup>
              > > >
              > > > </servlet>
              > > >
              > > > <!-- Action Servlet Mapping -->
              > > > <servlet-mapping>
              > > > <servlet-name>action</servlet-name>
              > > > <url-pattern>*.do</url-pattern>
              > > > </servlet-mapping>
              > > >
              > > > <!-- PDF servlet configuration -->
              > > > <servlet>
              > > > <servlet-name>pdf</servlet-name>
              > > >
              <servlet-class>com.abbott.gprd.servlets.PdfServlet</servlet-class>
              > > > </servlet>
              > > >
              > > >
              > > > <!-- PDF servlet Mapping -->
              > > > <servlet-mapping>
              > > > <servlet-name>pdf</servlet-name>
              > > > <url-pattern>/pdf</url-pattern>
              > > > </servlet-mapping>
              > > >
              > > > <!-- MIME Mapping -->
              > > > <mime-mapping>
              > > > <extension>mol</extension>
              > > > <mime-type>chemical/x-mdl-molfile</mime-type>
              > > > </mime-mapping>
              > > >
              > > >
              > > > <!-- The Welcome File List -->
              > > > <welcome-file-list>
              > > > <welcome-file>index.jsp</welcome-file>
              > > > </welcome-file-list>
              > > >
              > > > <!-- Application Tag Library Descriptor -->
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/app.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/app.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > <!-- Struts Tag Library Descriptors -->
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > <taglib>
              > > > <taglib-uri>/WEB-INF/nmr.tld</taglib-uri>
              > > > <taglib-location>/WEB-INF/nmr.tld</taglib-location>
              > > > </taglib>
              > > >
              > > > </web-app>
              

Maybe you are looking for

  • List of Values using page item variable

    I know there has to be a simple solution to my problem but I cannot figure it out. Any assistance would be greatly appreciated. I have a Shared list of values that I want to reuse on several of my pages. I have tried (I thought) all the variable poss

  • How to Convert to Black & White?

    I am currently using Adobe Acrobat 9 Standard Edition. I have a .pdf document that contains colored font. I want all the font to be black but nothing is working. I have tried to "print" to Adobe, selecting the Black & White option, but the color will

  • Problem in download ALV output

    Hi experts,      When I try to download my ALV report output, its giving dump  'Field symbol has not yet been assigned.      In my ALV output, I have 46 fields/columns. When I have 18 fields/columns or less, I able to download, but if it is more than

  • What are easy ways to create these effects or graphics?

    Hello, I am trying to create a logo for a new business whose product is electronic cleaning cloths for iPads, computer monitors, or most things digital. Therefore, I am trying to find out ways of creating motifs or design elements, parts of which I m

  • Latest version of Safari

    My online bank says my version of Safari, 2.0.4 (419.3), is old and needs updating inorder to use their banking services adequately. Unfortunately when I go to Apple's Downloads area, I do not see a newer version of Safari. Does anyone know what the