Deploying Error in 10G...See Error

Hi
I have created an EAR file in JDeveloper 9I and am deploying this
in 10G.
On deploying this,I get the flwg error:
500 Internal Server Error
javax.servlet.jsp.JspException: Cannot find message resources under key org.apache.struts.action.MESSAGE
     at org.apache.struts.util.RequestUtils.message(RequestUtils.java:819)
     at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:295)
     at _login._jspService(_login.java:69)
     [SRC:/login.jsp:26]
     at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
       at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)I downloaded the Jakarta Struts source and there is a file called 'installation-oas.xml'
which states:
Versions of Orion up to at least 1.0.3 have a bug related to ServletContext.getResource()
    calls that prevent the Struts example application from working out of the
    box. This manifests itself as a JSP error when you try to access the example
    application, with the following message:<br/>
    <code>javax.servlet.jsp.JspException: Missing resources attributeorg.apache.struts.action.MESSAGE</code><br/>
    followed by an error traceback. There will also be an initialization error
    message in the <code>ORION_HOME/log/global-application.log</code> log file.
    To work around this problem, you can take the following steps:
  <ul>
    <li>Go to the <code>$STRUTS_HOME/webapps</code> directory, where you will
      note that Orion has automatically expanded each web application into an
      unpacked directory structure.</li>Has anyone encountered this before?

URL :
http://naran.lhr.systemsltd.com:7779/pls/int_applink/w
l_common.menu_page?p_major=wl_major_menu.exists_user&p
minor=wlminor_menu.no_menu&p_entnameshort='LizLink'&
p_request_id=137
PARAMETERS :
===========
p_major:
wl_major_menu.exists_user
p_minor:
wl_minor_menu.no_menu
p_entnameshort:
'LizLink'
p_request_id:
137are you sure this url worked before? You pass 'LizLink', but I do not think that quotes ( ' ) are supported in url's. There should be no need for it anyway.

Similar Messages

  • When I try to launch Adobe Photoshop, an error occurs that says, Error: 1

    When I try to launch Adobe Photoshop an error occurs that says:  Contact Adobe Support - Error: 1

    Elaine1984 for information on how to resolve Download Error 205 please see Error downloading Creative Cloud applications - http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html.

  • Deployment error: null. See ide log for details

    When i succesfully compiled an application which has a conver in it, the Deployment progress monitor gives the error:
    Deployment error: null. See ide log for details
    And doesn't display my app.
    Does anyone knows what this means?

    The ide log file (C:\Documents and Settings\<username>\.Creator\EA\system\ide.log) is located here: "Help" menu -> "Java Studio Creator Log file"
    Don't hesitate pasting it into this forum topic.
    -Alexis

  • Error 500--Internal Server Error  - when deploying strust application

    Hello everyone,
    We have a large strust-based web application. The application is being deployed as an EAR file.
    We are getting a NullPointerException when we deploy the application on Weblogic 8.1 in production mode. The exception
    occurs when we access the application for the first time after redeployment.
    When we restart the server entirely we do not get the exception anymore.
    This exception does occur only rarely in development mode.
    In production mode it occurrs every time.
    Has anyone experienced similar issues?
    Regards,
    Oliver Enseling
    Error 500--Internal Server Error
    java.lang.NullPointerException
         at org.apache.struts.action.RequestProcessor.getServletContext(RequestProcessor.java:1136)
         at org.apache.struts.tiles.TilesRequestProcessor.processTilesDefinition(TilesRequestProcessor.java:180)
         at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:309)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1480)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:506)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:996)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:419)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at com.gelco.tmg.planning.web.core.action.URLSecurityFilter.doFilter(URLSecurityFilter.java:69)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6458)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3661)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2630)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

    <[email protected]> wrote in message news:41c49d78$1@mail...
    The problem seems to occur due to servlet reloading.... There seems to be
    a bug that reloads the ActionServlet even without any changes made to the
    code base... The reload fails for the ActionServlet making it null
    Turn off servlet reloading in your weblogic.xml using
    <container-descriptor>
    <servlet-reload-check-secs>-1</servlet-reload-check-secs>
    </container-descriptor>
    Let me know if this helps ...The default is to check for every one sec... I am not sure whether these
    kind of defaults make sense once a application is moved into production
    mode...
    If the issue gets resolved with the above suggested workaround .... let me
    know... since the issue is spurious and I am trying to reach a higher
    confidence level in the solution proposed by me.....
    Thanks
    Kumaraguruparan Karuppasamy
    >
    >
    >
    "Bill Turchin" <[email protected]> wrote in message
    news:25319409.1102534305264.JavaMail.root@jserv5...
    I am now also seeing that error having recently upgraded to WL 8.1. Has
    anyone found the solution?

  • Cannot run PAPI in Weblogic Server 10g - Error 500--Internal Server Error

    I use Jdev 11g to create an ADF (PAPI) and deploy it to Weblogic 10g.
    The code is copied from Jdev 10g. The PAPI works fine in when running in Jdev 10g
    However, after I deploy the ADF (PAPI) created using Jdev 11g to the Weblogic server. The following error appears.
    How to modify the code? Should I add the fuego lib to the weblogic domain?
    I try to add the fuegopapi-client.jar to Weblogic Server. But it shows error: Unable to access the selected application. java.lang.NullPointerException
    BPM is running in BPM standalone. I do not use PAPI webservice
    Sincerely
    Error 500--Internal Server Error
    javax.faces.el.EvaluationException: fuego.directory.exception.DirectoryNotAvailableException: Unable to connect to the Directory Service. If the problem persists, contact your system administrator.
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:51)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:458)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:763)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:640)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:275)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:175)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:61)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:279)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:239)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:196)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:139)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: fuego.directory.exception.DirectoryNotAvailableException: Unable to connect to the Directory Service. If the problem persists, contact your system administrator.
         at fuego.directory.exception.DirectoryNotAvailableException.wrapDNAException(DirectoryNotAvailableException.java:33)
         at fuego.directory.jdbc.JDBCConnectionProvider.getEntry(JDBCConnectionProvider.java:81)
         at fuego.directory.jdbc.JDBCConnectionProvider.getEntry(JDBCConnectionProvider.java:34)
         at fuego.directory.provider.jdbc.JDBCPersistenceManager.getConnection(JDBCPersistenceManager.java:437)
         at fuego.directory.provider.jdbc.JDBCPersistenceManager.checkConnectivity(JDBCPersistenceManager.java:91)
         at fuego.directory.provider.DirectorySessionImpl.connect(DirectorySessionImpl.java:242)
         at fuego.directory.provider.Factory.startSession(Factory.java:405)
         at fuego.directory.Directory.startAnonymousSession(Directory.java:214)
         at fuego.papi.impl.ProcessServiceFactoryImpl.obtainSchemaId(ProcessServiceFactoryImpl.java:193)
         at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:75)
         at fuego.papi.impl.ProcessServiceFactoryImpl.create(ProcessServiceFactoryImpl.java:63)
         at fuego.papi.ProcessService.create(ProcessService.java:335)
         at hypapai2.view.backing.P1.commandButton1_action(P1.java:54)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
         ... 32 more
    Caused by: fuego.connector.ConnectorException: External resource [fuego] of type [SQL] is not initialized.
    Detail:External resource [fuego] cannot be used because it failed to initialize correctly at service startup.
    That failure generated a warning in the server log.
    Check the logs for the details on the failure.
         at fuego.connector.ConnectorException.connectorNotInitialized(ConnectorException.java:60)
         at fuego.connector.ConnectorService.getConnectorInterface(ConnectorService.java:527)
         at fuego.connector.CompositeConnectorService.getDirectoryConnectorInterface(CompositeConnectorService.java:446)
         at fuego.connector.CompositeConnectorService.getConnectorInterface(CompositeConnectorService.java:293)
         at fuego.connector.ConnectorTransaction.registerConnectorInterfaceCoordinator(ConnectorTransaction.java:656)
         at fuego.connector.ConnectorTransaction.getResource(ConnectorTransaction.java:315)
         at fuego.directory.jdbc.JDBCConnectionProvider.getEntry(JDBCConnectionProvider.java:68)
         ... 50 more

    While still using PAPI, try also adding b1oracle.jar, b1base.jar and b1util.jar to your ADF project.
    These jars could be found from your BPM Studio installation.
    HTH

  • WL 10.3.5 and ADF 10g - JSP Error

    I'm deploying a ADF 10g (10.1.3.5) app, into a WebLogic 11g (10.3.5), but on test all the jsp throw the same exception:
    <Jun 28, 2012 5:51:34 PM BRT> <Error> <HTTP> <BEA-101017> <[ServletContext@542462705[app:wl module:/siep_wl path:/wl spec-version:2.5]] Root cause of ServletException.
    com.sun.faces.el.impl.ElException: Encountered "? \", expected one of ["}", ".", ">", "gt", "<", "lt", "==", "eq", "<=", "le", ">=", "ge", "!=", "ne", "[", "+", "-", "*", "/", "div", "%", "mod", "and", "&&", "or", "||", "?", "not", "?", "!", "?", "-", "?", "empty", "?", "true", "?", "false", "?", <INTEGER_LITERAL>, "?", <FLOATING_POINT_LITERAL>, "?", <STRING_LITERAL>, "?", "null", "?", "(", "?", <IDENTIFIER>]
    at com.sun.faces.el.impl.ExpressionEvaluatorImpl.parseExpressionString(ExpressionEvaluatorImpl.java:309)
    at com.sun.faces.el.impl.ExpressionEvaluatorImpl.parseExpression(ExpressionEvaluatorImpl.java:219)
    at com.sun.faces.application.ApplicationImpl.checkSyntax(ApplicationImpl.java:805)
    at com.sun.faces.application.ApplicationImpl.createValueBinding(ApplicationImpl.java:312)
    at oracle.adf.view.faces.webapp.UIXComponentTag.createValueBinding(UIXComponentTag.java:358)
    at oracle.adf.view.faces.webapp.UIXComponentTag.setProperty(UIXComponentTag.java:139)
    at oracle.adfinternal.view.faces.taglib.core.data.CoreTableTag.setProperties(CoreTableTag.java:183)
    at oracle.adf.view.faces.webapp.UIXComponentTag.setProperties(UIXComponentTag.java:127)
    at javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1027)
    at javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1046)
    at javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:761)
    at javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:451)
    at oracle.adf.view.faces.webapp.UIXComponentTag.doStartTag(UIXComponentTag.java:89)
    Anyone could help?

    Just a thought; have you installed the Server Extension: 'Oracle ADF runtime' (particular version no.) to the WLS server where you are trying to deploy the ADF apps?
    Thanks...

  • Unable to deploy from from J Developer Error at finding soa-infra

    Hi All,
    Can anyone help me to solve my problem.
    I am working on " Exalogic " servers and weblogic 10.3, SOA and AIA is 11.1.1.5.
    SOA server have SSL enabled after enable i am getting error when i am trying to deploy my application or project at finding SOA server look-up time i am getting error its not showing soa-infra it giving error.i have my custom certificates and i import this certificate in my JDeveloper "DemoTrust.JKS" fle. this is working in windows system but in " exadata and exalogic systems" not working giving below error. From JDeveloper
    ======================================================
    Error finding SOA configuration servers to Depoly archive.Deployment can not continue.
    java.lang.RuntimeException: javax.naming.CommunicationException [Root exception is weblogic.socket.UnrecoverableConnectException: [Login failed for an unknown reason: HTTP/1.1 404 Not Found]]
         at oracle.tip.tools.ide.fabric.asbrowser.WeblogicSOAServer.initPartitions(WeblogicSOAServer.java:89)
         at oracle.tip.tools.ide.fabric.asbrowser.WeblogicSOAServer.<init>(WeblogicSOAServer.java:68)
         at oracle.tip.tools.ide.fabric.asbrowser.ASBrowserHelper.listWeblogicSOAServers(ASBrowserHelper.java:266)
         at oracle.tip.tools.ide.fabric.asbrowser.ASBrowserHelper.listSOAServers(ASBrowserHelper.java:199)
         at oracle.tip.tools.ide.fabric.asbrowser.ASBrowserHelper$RunnableListSOAServers.run(ASBrowserHelper.java:324)
         at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:655)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: javax.naming.CommunicationException [Root exception is weblogic.socket.UnrecoverableConnectException: [Login failed for an unknown reason: HTTP/1.1 404 Not Found]]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:40)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:788)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:368)
         at weblogic.jndi.Environment.getContext(Environment.java:315)
         at weblogic.jndi.Environment.getContext(Environment.java:285)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:117)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at oracle.soa.management.internal.facade.ServerManagerImpl.<init>(ServerManagerImpl.java:76)
         at oracle.soa.management.internal.facade.ServerManagerFactoryImpl.createServerManager(ServerManagerFactoryImpl.java:28)
         at oracle.tip.tools.ide.fabric.asbrowser.WeblogicSOAServer.initPartitions(WeblogicSOAServer.java:85)
         ... 6 more
    Caused by: weblogic.socket.UnrecoverableConnectException: [Login failed for an unknown reason: HTTP/1.1 404 Not Found]
         at weblogic.socket.Login.checkLoginSuccess(Login.java:131)
         at weblogic.rjvm.t3.MuxableSocketT3.connect(MuxableSocketT3.java:410)
         at weblogic.rjvm.t3.ConnectionFactoryT3S.createConnection(ConnectionFactoryT3S.java:44)
         at weblogic.rjvm.ConnectionManager.createConnection(ConnectionManager.java:1784)
         at weblogic.rjvm.ConnectionManager.findOrCreateConnection(ConnectionManager.java:1424)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:443)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:321)
         at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:254)
         at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:197)
         at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:238)
         at weblogic.rjvm.RJVMFinder.findOrCreateInternal(RJVMFinder.java:200)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:170)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:353)
         ... 16 more
    =======================================================
    SSL ports are working if i open soa-infra with https its opening
    " https://IpAddress:7012/soa-infra/ "

    Hi,
    In JDev go to the Resource Pallete under IDE Connections and get the properties for your connection.
    On the tab Configuration see if you have your SSL Port configured, also check Always use SSL.
    Go to the tab Test and test it again to see if everything is alright.
    Cheers,
    Vlad
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts).
    https://forums.oracle.com/forums/ann.jspa?annID=893

  • Deploying application in domain failed; Error expanding archive

    Hi iam getting the following error while deploying an application to sun application server:
    Deploying application in domain failed; Error expanding archive /opt/SUNWappserver/domains/domain1/applications/j2ee-apps/dukesbank/dukesbank-appclient.jar; please see the server log file for more information

    -Kayaman- wrote:
    Please see the server log for more information.Wow you're a real genius. That's the error message that is in the server log.

  • Error in Report: Next to amount field i could see 'ERROR' word in report

    Guys,
    Problem in Report: Next to amount field i could see 'ERROR' word in report
    Eg: Invoice Amount  : "1200ERROR"  it should be like "$1200".
    Pls help where do i need to check.
    Thanks

    Ajeet wrote :
    Hi,
    It can heppens if all the records getting aggregated in the report are of different currencies and not belonging to one currency.
    Do a currency conversion for the key figures and make them all with same currency.
    See if the records in the cube for the selection which you have given in the report gives you records with different currency and if it is true then as above said.
    Thanks
    AJeet
    Are you sure ???
    The mixed unit values will be displayed as * (by default unless its changed).
    ERR comes if unit is not maintained.

  • ICal error - can't see the calendars on opening...

    iCal error - can't see the calendars on opening... unless i change the view - but then still the portlet in the top left hand corner remains blank.
    Re-installed the whole OSx system from original disks and still the same problem.
    cleared out the cache files, including trying to delete the metadata files... taken to my local Apple Centre (Academy) but no sucess so far.
    Any ideas? Is it because i have around 8 calendars? Is that too many?
    Could it be 'cos I sync with Missing Sync for my Palm TX?
    H E L P !!
    Powerbook G4   Mac OS X (10.4.7)  

    When a user launches iCal, they may have one of the following symptoms:
    * When iCal is launched the calendar is blank -- no calendars are listed on the left and no events appear in the day/week/month views
    * Switching views allows all events to appear but the calendars on the left are still missing
    * User can create a new event and designate a calendar but when the event is saved it cannot be seen
    * Clicking in the blank space where the calendars are supposed to be has no effect.
    This issue is a Sync Services issue and not directly related to The Missing Sync. Mark/Space has identified a couple of solutions to this problem that others have reported. For more information, see: http://www.macfixit.com/article.php?story=20060207074628694
    1) Quit iCal
    2) Locate the folder, User/Library/Application Support/iCal/Sources/ and delete the contents
    3) After deleting the files from this folder, lock the "Sources" folder. Do this by navigating up one level and selecting the "Sources" folder. Perform a "Get Info" (either through the "File" menu or by pressing Command-I with the "Sources" folder selected) then click the lock icon.
    4) Launch iCal and your calendars should reappear. Note that the relaunch of iCal will create a default 'Home' and 'Work' calendar, so make sure none of your calendars have the same names as the default .
    Do some backups first
    Follow those simple steps
    5) Go to Address Book, click on 'File' menu and choose 'Back up Address Book'. Go to iCal, click on 'File' menu and choose 'Back up database'.
    6) Go to Missing Sync and double click on the Backup Conduit and set it to backup all databases. Then run the sync with just that Backup conduit selected, disable all other conduits.
    7) Go to: /Users/<user name>/Documents/Palm/Users/<hotsync name>/ now hold the 'ctrl' key and click on the /Backups/ folder. Choose the option to 'Create Archive of "Backups"'. This is to safeguard your backed up data in case anything goes wrong.
    Now 'Reset Sync History' using the iSync preferences option. The first sync will likely be slower.
    8) Launch iSync
    9) Click on the iSync menu
    10) Choose Preferences (make sure the "Enable syncing on this computer" is checked)
    11) Click the 'Reset Sync History' button. Read and follow the onscreen directions.
    12) This may launch iCal. Also the status of the reset is showing in the iSync display. When the reset is complete quit both iSync and iCal.
    Launch Missing Sync and enable the Mark/Space Events and Tasks conduits and set them to Desktop overwrite Handheld. Disable all other conduits.
    Then sync, when you do, you will get a dialog box with an orange iSync icon on it. Check the box to erase the device, then click the 'Allow' button. It will overwrite your device. You will get one for events, one for tasks, and one for contacts. The next time you sync .mac or other devices that sync with iSync like an iPod, you will get these same dialog boxes for their databases and you should check the box and click 'Allow' in those cases as well.
    If you press the don't allow button you will need to reboot your computer.

  • I am trying to run gta iv on my mac.. but i am seeing error messages as soon as it begins.

    i am trying to run gta iv on my mac.. but i am seeing error messages as soon as it begins.

    It must be a poorly ported Mac Version . . . From Rockstar (the ones who ported the program over)
    Question: What are the system requirements for the Mac versions of GTA III, Vice City, and San Andreas?
    Answer: The following list details the minimum requirements and supported specs for GTAIII, Vice City, or San Andreas on the Mac.
    Supported Operating Systems: Mac OS X 10.5.8, Mac OS X 10.6.2 Snow Leopard
    Supported Processors: Intel Core 2 Duo Processor or higher. This game will NOT run on PowerPC (G3/G4/G5) based Mac systems (PowerMac)
    Memory: 1GB RAM
    Hard drive: At least 9GB of free Hard Disk space
    Graphics: ATI X1600, NVIDIA 7300 GT or Intel X3100 integrated graphics chip
    Input: Keyboard and mouse
    Filesizes:
    GTA III: 731.9MB
    Vice City: 1.3GB
    San Andreas: 3.9GB
    The following are known issues and details about unsupported Mac hardware:
    Mac mini: Some Mac Minis have the Intel GMA950 graphics chipset which is NOT supported for select game titles.
    Macbook: Some MacBooks use an Intel X3100 graphics chipset which may require a game to be run under low graphics settings or may prevent the game from running at all. MacBooks with an Intel GMA950 graphics chipset are NOT supported for select game titles.
    Macbook Air: Some MacBooks use an Intel X3100 graphics chipset which may require a game to be run under low graphics settings or may prevent the game from running at all.
    Macbook Pro: No known issues
    iMac: Information coming soon
    Mac Pro: No known issues

  • When trying to create connection using Contribute 6.5, get error message "Unknown error.  Please see the log for detail."  The log says "Network connection timed out."  What do I do now?

    Have been using Contribute 6.5, and earlier versions, for years with Hostway without any problems.  All of a sudden I cannot create a connection to our website.  Tried to chat with Adobe a twice now and got no help.  Yesterday they started a chat with me, then ended the session without any communication!  My problem has been going on for several weeks now.  I uninstalled Contribute, downloaded and installed again, but it did not help.  Hostway had me connect with Zilla and everything worked fine.  So, they say the problem is with Adobe.    The last attempt ended with "Unknown error. Please see the log for detail."  The log says "Network operation timed out."  Does anyone have any suggestions?

    Hi There,
    Can you please try using any other Internet connection outside your company's network and see if it is working? Alternatively, Can you please try the below settings from the Advanced... Menu while creating the connection using FTP details and try to create the connection again:
    Regards,
    Mayank

  • Error in 10g but not in 9i

    Hi
    i have configured modplsql and used DADs to execute some packages from my database to run my web application. When i create DADs on Application server 9i release 1, it works fine but on 10g(9.0.4) it is giving my following error
    I really cant understand, whether its a PL/SQL error or its error because of Application server. Dafinately this error is because assigning NULL to a NOT NULL variable or assigning charachter to a numeric variable but why its running successfully on 9iAS but giving following error on 10g
    Sat, 11 Feb 2006 07:51:58 GMT
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 10
    DAD name: int_applink
    PROCEDURE : wl_common.menu_page
    URL : http://naran.lhr.systemsltd.com:7779/pls/int_applink/wl_common.menu_page?p_major=wl_major_menu.exists_user&p_minor=wl_minor_menu.no_menu&p_entnameshort='LizLink'&p_request_id=137
    PARAMETERS :
    ===========
    p_major:
    wl_major_menu.exists_user
    p_minor:
    wl_minor_menu.no_menu
    p_entnameshort:
    'LizLink'
    p_request_id:
    137
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle-Application-Server-10g/9.0.4.0.0 Oracle-HTTP-Server
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=7779
    SERVER_NAME=naran.lhr.systemsltd.com
    REQUEST_METHOD=GET
    QUERY_STRING=p_major=wl_major_menu.exists_user&p_minor=wl_minor_menu.no_menu&p_entnameshort='LizLink'&p_request_id=137
    PATH_INFO=/wl_common.menu_page
    SCRIPT_NAME=/pls/int_applink
    REMOTE_HOST=
    REMOTE_ADDR=192.168.0.136
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=weblogin
    ORACLE_SSO_USER=
    HTTP_CONTENT_LENGTH=
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)
    HTTP_HOST=naran:7779
    HTTP_ACCEPT=image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
    HTTP_ACCEPT_ENCODING=gzip, deflate
    HTTP_ACCEPT_LANGUAGE=en-us
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=liz_request=1716357630
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=http://naran:7779/pls/int_applink/wl_selection.goto_exists_user?p_entnameshort='LizLink'
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=1139644318:192.168.0.24:28792:0:824,0
    HTTP_ORACLE_CACHE_VERSION=
    HTTP_AUTHORIZATION=
    WEB_AUTHENT_PREFIX=
    DAD_NAME=int_applink
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wpg_document
    PATH_ALIAS=
    REQUEST_CHARSET=WE8ISO8859P1
    REQUEST_IANA_CHARSET=ISO-8859-1
    SCRIPT_PREFIX=/pls
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=
    ****************************************************************

    URL :
    http://naran.lhr.systemsltd.com:7779/pls/int_applink/w
    l_common.menu_page?p_major=wl_major_menu.exists_user&p
    minor=wlminor_menu.no_menu&p_entnameshort='LizLink'&
    p_request_id=137
    PARAMETERS :
    ===========
    p_major:
    wl_major_menu.exists_user
    p_minor:
    wl_minor_menu.no_menu
    p_entnameshort:
    'LizLink'
    p_request_id:
    137are you sure this url worked before? You pass 'LizLink', but I do not think that quotes ( ' ) are supported in url's. There should be no need for it anyway.

  • Error on executing See Also search - no authorization for resource

    Hi there,
    i have installed TREX 6.1 SP 13.
    It searching fine but only two bugs - 1)when i'm clicking on "See also" link in search result page - i'm getting error:
    "Search Failure
    Error on executing See Also search - no authorization for resource
    An unexpected severe error occurred during the search call.  If the situation persists, inform your system administrator."
    2) when i'm clicking on "HTML version" - sometimes i'm getting "No valid content found in store" error message, but it depends on index.
    Any ideas?

    Hello Kwong,
    thanks for responce. Only that i have in log is:
    #1.5#000F20F6A8BD006D000000060000253400040016981EA972#1125996948354#com.sapporta
    ls.wcm.control.util.search.SearchSessionBuilder#sap.com/irj#com.sapportals.wcm.c
    ontrol.util.search.SearchSessionBuilder#Administrator#41230####04c0c6201eb411dab
    6f0000f20f6a8bd#SAPEngine_Application_Thread[impl:3]_0##0#0#Error##Plain###Error
    on executing See Also search - no authorization for resource#
    Moreover, i'm working under administartor with all rights.

  • After effects has crashed see error repor 1.   :41

    hi okay on one of my computers i go to open after effects and it says after effects has crashed please see error report error 1 then later :41 then i go to uninstal it and it loads and stops it wont uninstal. please help.

    how you doing guys, i hope you have solved your problem,if not this is how i solve it most of the time...
    we all like fonts... alot.. sometimes we like it so much that we install every font we find kool, but after effects has a little bit of problem
    caching most of those kool fonts ( i have 3,037 ).
    what i did was booting my pc using HIREN'S BOOT CD in mini windows xp, download or if you have a backup of the basic xp fonts ( like me )
    go to your windows folder in c: and cut and move the font folder to other drive and replace it with the basic one, reboot and voila! it worked
    hope it helps. ;-)

Maybe you are looking for