Accessing jsp deployed as a shared Library

Hi All,
I have an ear file which is deployed as a shared Library in my Portal Web Project. Now I am trying to access a login.jsp which is in the Ear file. I created a pageflow portlet, with the pageflow pointing the login.jsp, it doesnt work ( irony is that there is no exception/message being displayed on the server).
Now when I use a browser portlet with the contentURI pointing to that Login.jsp, then everything works fine. Also if I create a normal jsp, and redirect it to the Login.jsp it still works fine; but if I directly forward the request to Login.jsp, I get an IllegalStateException.
Can any one explain the reasons for these??
Any input on this would be appreciated.
Thanks,
G

OK, it probably really is a packaging problem then. Maybe your JSP pages being used by the pageflow are not in a directory structure that matches the package structure of the pageflow controller? I tried to find a reference for this requirement in the apache netui beehive docs, but couldn't find it at first glance:
http://beehive.apache.org/
I did find a mention in the Oracle WebLogic Portal docs, "The package and WebContent folders for a given page flow must always match." at:
http://edocs.bea.com/wlw/docs103/guide/webapplications/netui/tutorial/tutWebAppStep2.html#1
So... if you have a com.my.company.foo.MyController.java in your src tree then in your web root dir you would have com/my/company/foo/login.jsp, etc.

Similar Messages

  • Access to uup ejb deployed in a shared library

    Hello,
    I use WLP 10.3.2 and i have deployed an EAR shared library with an ejb uup.
    In the ear shared library, we have deploy the uup ejb, the ProfilUser.usr files and the p13n-profile-config.xml.
    Could you tell me why in the jndi-name there are the suffix /app/ejb ???!!
    p13n-profile-config.xml
    <property-adapter>
    <name>profilCdnAdapter</name>
    <description>profile adapter to use attributes stored in LDAP</description>
    <property-mapping>ProfilUser</property-mapping>
    <ejb-jndi>portail-uup-user.jar#ProfilUser</ejb-jndi>
    <adapter-property>
    <name>profilUserCacheName</name>
    <value>profilUserCache</value>
    </adapter-property>
    </property-adapter>
    Error stacktrace :
    Caused by: javax.naming.NameNotFoundException: While trying to look up /app/ejb//app/ejb/portail-uup-user.jar#ProfilUser/home in /app/ejb/p13n_ejb.jar#UserProfileManager.; remaining name '/app/ejb//app/ejb/portail-uup-user/jar#ProfilUser/home'
         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1139)
         at weblogic.jndi.internal.ApplicationNamingNode.lookup(ApplicationNamingNode.java:144)
         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:393)
         at weblogic.jndi.factories.java.ReadOnlyContextWrapper.lookup(ReadOnlyContextWrapper.java:45)
         at weblogic.jndi.internal.AbstractURLContext.lookup(AbstractURLContext.java:130)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)

    Check this is correct <ejb-jndi>portail-uup-user.jar#ProfilUser</ejb-jndi>
    In portail-uup-user.jar see if you have ejb-name as ProfilUser in ejb-jar.xml it should match.

  • Error while accessing JSP deployed on Oracle AS

    Hi,
    I have developed an application and deployed in on the oracle AS 10.1.2
    In my application i have a Jsp on which i have the following code
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <%@ page import="javax.servlet.*"%>
    <%@ page import="javax.servlet.http.*"%>
    <%@ page import="java.io.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import="java.net.*"%>
    <% String strFileName = request.getParameter("prmFileName");
    //String strFileName = "d:\\Report.xls";
    response.setContentType( "application/vnd.ms-excel; charset=ISO-8859-1");
    PrintWriter out1 = response.getWriter();
    //System.out.println(strFileName);
    FileReader fread = new FileReader (strFileName);
    BufferedReader bfd = new BufferedReader(fread);
    String inputLine;
    while ((inputLine = bfd.readLine()) != null)
    out1.println (inputLine);
    bfd.close();
    out1.close();
    %>
    When i access this jsp through the application i get this error..
    during developement i had tested this jsp by deploying it on jboss and it worked properly but now i am faced with this error
    500 Internal Server Error
    java.lang.IllegalStateException: OutputStream already retrieved     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.EvermindHttpServletResponse.getWriter(EvermindHttpServletResponse.java:1001)     at ReportXlsOpen.jspService(_ReportXlsOpen.java:57)     [SRC:/ReportXlsOpen.jsp:12]     at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)     at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:534)
    Thanks & Regards,
    Madhur

    You don't need to get the output writer "out1". you can use "out" in your scriplets the same way as "request" and "response".

  • Business Rule in shared library

    Hi,
    We have 2 portal projects. Say Project 1 and Project2. Project 1 is deployed as a shared library for project2. Project2 is deployed as an application.
    I have a business rule in a Project1's datasync project. And executing that rule from the controller of a spring portlet present in the project1's web project. This is deployed as shared library for project2. If i try to access the desktop (present in Project2), it throws follwoing error.
    com.bea.p13n.rules.manager.RuleSetNotFoundException: The rule set with URI /Rules/a.rls could not be located by the class named com.bea.p13n.rules.manager.internal.RuleSetPersistenceManager.
         at com.bea.p13n.rules.manager.internal.RuleSetPersistenceManager.getRuleSet(RuleSetPersistenceManager.java:408)
         at com.bea.p13n.rules.manager.internal.ContextPool.<init>(ContextPool.java:149)
         at com.bea.p13n.rules.manager.internal.ContextPoolFactory.getContextPool(ContextPoolFactory.java:214)
         at com.bea.p13n.rules.manager.internal.RulesManagerImpl.getContext(RulesManagerImpl.java:476)
         at com.bea.p13n.rules.manager.internal.RulesManagerImpl.evaluate(RulesManagerImpl.java:349)
         at com.bea.p13n.rules.manager.internal.RulesManagerImpl.evaluateRuleSet(RulesManagerImpl.java:122)
         at com.bea.p13n.rules.manager.internal.RulesManager_jswjkk_EOImpl.evaluateRuleSet(RulesManager_jswjkk_EOImpl.java:597)
         at com.capitalone.ecom.framework.RuleEngine.Impl.RuleExecutorImpl.evaluateRuleSet(RuleExecutorImpl.java:187)
         at com.capitalone.www.capabilities.portlet.controller.NavigationController.readBusinessRule(NavigationController.java:81)
         at com.capitalone.www.capabilities.portlet.controller.NavigationController.renderRequest(NavigationController.java:62)
         at com.capitalone.www.capabilities.portlet.controller.common.BaseController.handleRenderRequestInternal(BaseController.java:58)
         at org.springframework.web.portlet.mvc.AbstractController.handleRenderRequest(AbstractController.java:223)
         at org.springframework.web.portlet.mvc.SimpleControllerHandlerAdapter.handleRender(SimpleControllerHandlerAdapter.java:52)
    Project 2 also has a business rule in its own datasync. That rule is accessed from backing file. It executes fine.
    Any help.......

    Hi
    We are thinking of using a separate portal project with all the business rules and use a remote portlet for getting the result.
    The question is like the wsrp-producer-registry.xml has to be manually copied to the running EAR and the <wsrp-producer handle> entry has to be manually made. Is it not possible to have the <wsrp-producer handle> entry automatically.
    Also, <wsdl-url> entry currently is http://localhost:7001/xyz/producer?wsdl. But if the entries have to be made manually. do we need to repeat the process for other envirnments. i.e, the <wsdl-url> has to be changed manually in every environment and then deployed? Or is it not required to make any entries?
    Are there any other limitations, using this approach..

  • Executable and shared library portability

    Hi,
    What are things that one should keep in mind when trying to deploy executables and shared library built on one machine to another.
    Thanks

    1. Use compiler options to generate code for the most generic of the machines you intend to support. For example, if you intend to run on UltraSparc II systems, don't generate code for US III. The option -xarch=v8plus is suitable for all 32-bit Sparc systems less than 10 years old. Avoid -xchip, -xcache, and other processor-specific options.
    2. Build on the earliest version of Solaris that you intend to support. If you allow your clients to use Solaris 8 or later, you must build your libraries and applications on Solaris 8. Binaries created on later versions of Solaris cannot be expected to work on earlier versions of Solaris, but can be expected to work on later versions.
    3. Do not link system libraries statically. Always link the shared library. Static versions of system libraries can't be expected to work a a different version of Solaris, or on a different patch level of the same Solaris version.
    4. Make a note of the patch level of system libraries on your build system. For C++, check especially the patch level of SUNWlibC. Clients might need the same or later patch levels on their systems. For our products, we set up our build machines with the earliest patch levels that allow our products to work. We document those patch levels, and provide the minimum patches with the product installation. If a client system has a later patch level, the patch we supply won't be installed, and the later patch level should allow the product to work correctly.

  • Cannot deploy a shared library from jdeveloper to oracle webcenter spaces

    Hi guys,
    i used oracle jdeveloper 11.1.1.6  with extendwebcenterspaces workspace. I use WebcenterSpacesSharedLibExtension project.
    I have deployed with jdeveloper directly to webcenter by using a connection and deployed as shared library.
    Afther that i used DesignWebcenterSpaces and deployed with ant scripts: clean stage  and deploy as shared lib
    I get an error on deployment:
    Redeploying application webcenter ...
         [exec] <Sep 25, 2013 1:07:10 PM CEST> <Info> <J2EE Deployment SPI> <BEA-260121> <Initiating redeploy operation for application, webcenter#11.1.1.4.0 [archive: null], to WC_Spaces .>
         [exec] ..Failed to redeploy the application with status failed
         [exec] Current Status of your Deployment:
         [exec] Deployment command type: redeploy
         [exec] Deployment State       : failed
         [exec] Deployment Message     : weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs'
         [exec] No stack trace available.
         [exec] None
         [exec] #########################################################
         [exec] #####     ReDeploy Spaces Failed #########
         [exec] #####     Contact support with Exception Stack #########
         [exec] #########################################################
         [exec]
    Can someone help with some fix for that error?
    I want to override the login page from webcenter spaces using CustomLandingPage project
    Also, i have tried the deployment by using SampleWebcenterSpacesExtensions workspace with WebcenterSpacesSharedLibExtension project and deployed with ant scripts: clean stage  and deploy as shared lib.
    Afther that i used DesignWebcenterSpaces and deployed with ant scripts: clean stage  and deploy as shared lib
    There the deployment succeed but i get an error on browser
    The error is:
    OracleJSP error: oracle.jsp.parse.JavaCodeException: Line # 13, oracle.jsp.parse.JspParseTagScriptlet@1dbc116
    Error: Java code in jsp source files is not allowed in ojsp.next mode.
    Thank you very much for help.

    ####<Sep 27, 2013 9:44:07 AM CEST> <Error> <Deployer> <webcenter-vm> <WC_Spaces> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <11d1def534ea1be0:-3d303652:141559d6da7:-8000-000000000000112a> <1380267847678> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1380267843425' for task '20'. Error is: 'weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs''
    weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs'
        at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:395)
        at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
        at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
        at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:159)
        at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:45)
        at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
        at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
        at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
        at weblogic.deploy.internal.targetserver.operations.RedeployOperation.createAndPrepareContainer(RedeployOperation.java:104)
        at weblogic.deploy.internal.targetserver.operations.RedeployOperation.doPrepare(RedeployOperation.java:128)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:747)
        at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:46)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: weblogic.management.DeploymentException: Error: Unresolved Webapp Library references for "ServletContext@21596057[app:webcenter module:/wcsdocs path:/wcsdocs spec-version:2.5 version:11.1.1.4.0]", defined in weblogic.xml [Extension-Name: custom.webcenter.spaces, exact-match: false]
        at weblogic.servlet.internal.WebAppServletContext.processWebAppLibraries(WebAppServletContext.java:2750)
        at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:416)
        at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletContext.java:494)
        at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:418)
        at weblogic.servlet.internal.WebAppModule.registerWebApp(WebAppModule.java:976)
        at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:384)
        at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
        at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
        at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:517)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:159)
        at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:45)
        at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:648)
        at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
        at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:191)
        at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:59)
        at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:154)
        at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
        at weblogic.deploy.internal.targetserver.operations.RedeployOperation.createAndPrepareContainer(RedeployOperation.java:104)
        at weblogic.deploy.internal.targetserver.operations.RedeployOperation.doPrepare(RedeployOperation.java:128)
        at weblogic.deploy.internal.targetserver.operations.AbstractOperation.prepare(AbstractOperation.java:217)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentPrepare(DeploymentManager.java:747)
        at weblogic.deploy.internal.targetserver.DeploymentManager.prepareDeploymentList(DeploymentManager.java:1216)
        at weblogic.deploy.internal.targetserver.DeploymentManager.handlePrepare(DeploymentManager.java:250)
        at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.prepare(DeploymentServiceDispatcher.java:159)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doPrepareCallback(DeploymentReceiverCallbackDeliverer.java:171)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$000(DeploymentReceiverCallbackDeliverer.java:13)
        at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$1.run(DeploymentReceiverCallbackDeliverer.java:46)
        at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >

  • NoPermissionException when deploying a RAR inside a Shared library EAR.

    Hello,
    I have a deployment issue concerning a resource adapter in shared library.
    I have an EAR containing a RAR. and an EJB jar with a stateless session EJB in charge of invoking the Resource Adapater (by lookup).
    If I deploy this EAR as an application, it works.
    But If I deploy this EAR as shared library and I link it to another EAR deployed as an application, I have the following deployment issue:
    javax.naming.NoPermissionException: A Resource Adapter may only be accessed from within the same application from which it was deployed.
            at weblogic.connector.outbound.RAOutboundManager.getConnectionFactory(RAOutboundManager.java:765)
            at weblogic.connector.deploy.JNDIHandler.getConnectionFactory(JNDIHandler.java:1015)
            at weblogic.connector.deploy.JNDIHandler.lookupObject(JNDIHandler.java:869)
            at weblogic.connector.deploy.JNDIHandler.getObjectInstance(JNDIHandler.java:843)
            at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:304)
            at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:255)
            at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:411)
            at javax.naming.InitialContext.lookup(InitialContext.java:392)
            at com.mycompany.myEJB.initContext(myEJB.java:100)
            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.bea.core.repackaged.springframework.jee.inject.Jsr250Metadata.invokeLifecycleMethod(Jsr250Metadata.java:332)
            at com.bea.core.repackaged.springframework.jee.inject.Jsr250Metadata.invokeLifecycleMethod(Jsr250Metadata.java:326)What I don't understand is: even if my application name change (in one case, the name of the EAR containing the RAR, in the other case, the classical EAR name) my packaginig is still the same: the myEJB lookup a Resource adapter which is inside the same EAR and the same application.
    What is wrong ? Do you think it is a potential weblogic bug related to sharedlib deployment ?
    Thank you for helping,
    Best Regards,

    Hi,
    I've defined my Shared lib EAR using its MANFIEST.MF file just like that :
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.8.1
    Created-By: 1.6.0_22-b04 (Sun Microsystems Inc.)
    Implementation-Version: 1.1.3
    Implementation-Vendor: XXXXXXX Software
    Specification-Version: 1.1
    Specification-Title: xxxx
    Copyright: Copyright (c) 2012 XXXXXXX
    Weblogic-Application-Version: 1.1.3And I reference it from my plain EAR using deployment plan (for dynamic configuration of my solution)
      <variable-definition>
        <variable>
          <name>xxxxSharedLibStatus</name>
          <value>false</value>
        </variable>
      </variable-definition>
      <module-override>
        <module-name>classicalEAR.ear</module-name>
        <module-type>ear</module-type>
        <module-descriptor external="false">
          <root-element>weblogic-application</root-element>
          <uri>META-INF/weblogic-application.xml</uri>
          <variable-assignment>
            <name>xxxxSharedLibStatus</name>
            <xpath>/weblogic-application/library-ref/[library-name="xxxx.ear"]/exact-match</xpath>
          </variable-assignment>
        </module-descriptor>
      <config-root xsi:nil="true"></config-root>
    </deployment-plan>I use this mechanism for more than 20 EAR shared lib linked to my classical EAR. it works well, everything seems to be well deployed but the lookup from EAJ to Adaptor raised this permission Exception...
    Thank you if you can help.
    Best Regards,

  • ITunes can't access shared library when Vista parental controls are on

    I started a thread back on March 1 2008, but it got archived before it could be answered, see:
    http://discussions.apple.com/thread.jspa?threadID=1420673&tstart=0
    I'm using 64 bit Vista with iTunes version of 8.0.2.20, but I don't believe this issue has anything to do with the 64 bit versus 32 bit iTunes versions.
    The exact message is:
    "The shared library "libraryname" is not responding. (-39)
    Check that any firewall software running on either the shared computer or this computer has been set to allow communication on port 3689."
    But if I turn off Parental Controls, the shared library is accessible, it all works fine. This has nothing to do with the iTunes store (and potential web site blocking), I just want to allow shared library access while leaving parental controls on.
    Any ideas?

    This question has been around for almost two years now with no answer...very frustrating and disappointing that no one from Apple can step in and assist. I have set up the port number on my firewalls, both Windows and McAfee, as per the iTunes message and it still does not work...so I am now at a loss.
    Turn off parental conrols and it all works perfectly...turn it on and library is visible but not accessible...PLEASE can someone help with this!!!
    Thanks.

  • Can't access shared library to import.  Why?

    When trying to access sharing, library will not come up in iTunes so that it can be imported.  Can anyone tell me why?

    Rebel,
    iTunes has two kinds of sharing:  regular sharing, which allows listening but not copying, and Home Sharing, which does allow copying. 
    Make sure you are using Home Sharing, and that both computers are authorized to the relevant account.

  • I am getting error while deploying "shared library" to FP-2010

    i am getting error while deploying "shared library" to FP-2010
    screen shot is also attached
    regards
    mazhar
    Attachments:
    error24.JPG ‏128 KB

    Hi mazhar.ali,
    Do you explicitly reference a DLL in your code? 
    What is the size of your code?  (The FP-2010 only has 32 Mbytes of RAM, so if you're trying to deploy and run your code from RAM, this might be something to take into account.)  (How Much Memory Does My FieldPoint Controller Have?)
    Regards,
    Kevin S.
    Applications Engineer
    National Instruments

  • Can see but not access shared library

    I have a PC running Windows XPsp3 and the latest version of iTunes, and my husband is on a macbook using the latest OS and iTunes.  We both have Home Sharing enabled and he can access my library, but I can not access his.  I can see his shared library but when I click on it, it thinks for a while and kicks me back to my library.  I checked to make sure we were both using the same account info and that we both had sharing enabled.  I checked to make sure our respective firewalls where allowing iTunes through. We are using an AirPort for our router; I'm wired in and he is wireless. I've been looking in the community and can't see where anyone has successfully resolved this problem. 
    BTW, before I recently reformatted and rebuilt my PC, when I encountered this problem I would get an error stating I needed to check my firewall.  Reformatting my PC did not correct the problem, only removed the error message.
    Anyone have any other ideas?

    check out these links:
    Troubleshooting security software issues
    Troubleshooting Home Sharing
    and, last but not least, see this discussion concerning bonjour being the culprit.

  • I used to look my photos in my tv using apple tv, now i can't when i access through apple tv/ computer/ my library  photo option is not available, i check home sharing and which photos i'm sharing from my mac/itunes but i still can share photos w/apple tv

    I used to look my photos in my tv using apple tv, now i can't when i access through apple tv/ computer/ my library  photo option is not available, i check home sharing and which photos i'm sharing from my mac/itunes but i still can share photos w/apple tv

    Morning JJFH,
    Thanks for using Apple Support Communities.
    If after setting up Home Sharing, you cannot access your shared iTunes library over your home network from your Apple TV, take a look at this article:
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Best of luck,
    Mario

  • Shared library deployment error in jdev- 11.4,  PS3 release

    Hi,
    I am facing an shared library reference exception.Please help in resolving it.
    Find the below exception.
    <Mar 10, 2011 4:39:16 PM IST> <Error> <Deployer> <BEA-149265> <Failure occurred
    in the execution of deployment request with ID '1299755348296' for task '22'. Er
    ror is: 'weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs'
    weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs'
    at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:393)
    at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedM
    oduleDriver.java:176)
    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(Modu
    leListenerInvoker.java:199)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(Depl
    oymentCallbackFlow.java:517)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    Truncated. see log file for complete stacktrace
    Caused By: weblogic.management.DeploymentException: Error: Unresolved Webapp Lib
    rary references for "ServletContext@11873704[app:webcenter module:/wcsdocs path:
    /wcsdocs spec-version:2.5 version:11.1.1.4.0]", defined in weblogic.xml [Extensi
    on-Name: Resource, exact-match: false]
    at weblogic.servlet.internal.WebAppServletContext.processWebAppLibraries
    (WebAppServletContext.java:2754)
    at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletCo
    ntext.java:415)
    at weblogic.servlet.internal.WebAppServletContext.<init>(WebAppServletCo
    ntext.java:493)
    at weblogic.servlet.internal.HttpServer.loadWebApp(HttpServer.java:418)
    at weblogic.servlet.internal.WebAppModule.registerWebApp(WebAppModule.ja
    va:972)
    Truncated. see log file for complete stacktrace
    >

    <Aug 19, 2011 9:56:23 PM CDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'webcenter [Version=11.1.1.4.0]' due to error weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs'.
    weblogic.application.ModuleException: Failed to load webapp: '/wcsdocs'
    at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:393)
    at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:180)
    at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
    at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:518)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: custom.webcenter.spaces.view.SessionInvalidationServlet
    at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:297)
    at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:270)
    at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:64)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    Truncated. see log file for complete stacktrace
    >

  • Error deploy shared library from Enterprise Manager IAS10.1.3.5.0

    Hi,
    I am trying deploy one shared library in my OC4J instance (prd_oc4j) from Enterprise Manager, but when i run my application its not loading this library (error missing class), but when i put this shared library in file server.xml without Enterprise Manager my application run sucessfully.
    Help me please or this problem is a bug?
    Tks,
    Haysar Lelis

    If finally found the cause of the problem, lack of PermGen space for the home instance;
    When opening the EM Console most of the times i was able to open the login page, under stress opening this page failed most of the times.
    The ascontrol-application.log pointed me in the right direction;
    10/09/07 15:26:59.111 ascontrol: Servlet error
    java.lang.OutOfMemoryError: PermGen space
    When monitoring the PermGen of the home instance, is showed that the system was running out of PermGen space.
    Increasing the PermGen size for the home instance in opmn.xml did the trick
    <data id="java-options" value="-Xrs -server -XX:MaxPermSize=128M......"

  • Accessing an external HD as a shared library

    Here's my situation: I have a personal collection of music (about 30 GB) on my MBP hard disk, which I manage with iTunes. As a part-time job, I am also a DJ. I recently ripped all of my 3500+ CDs onto an external dive, which takes up almost 200GB. What I would like to do is to access this as a shared itunes library - as if it were on another computer. I know how to use the external drive as my only itunes folder, but that's not what I'm asking. By using it as a shared library, I can have the music that I use with me at all times without connecting the large external, and only bring that along when I have a gig.
    This will all be done under the latest version of Leopard, on the December 2008 model MBP. Thanks to anyone who can shed some light on this for me!

    So are you saying that iTunes need to be running on a computer in order to share its library?
    Yes.
    If yes, then I obviously can't do what I want.
    I can't tell really what you wan tat this opint.
    As Meg pointed out in her first post, you can create 2 ibraries. One library on the external for DJing and one on the internal for you own use.
    Does iTunes crawl all shared network directories for "iTunes Library.xml" files? I'm just trying to figure out how it searches for shared libraries!
    No.
    iTunes is running and you set it up in iTunes prefs -> Sharing to Share the library (or playlists).
    iTunes on that computer will then broadcast that info on th elocal network.
    If iTunes on another computer on that network is set up to look for Shared libraries, it will get that info and you can play songs from that Shared library.
    Creating a new library is completely different.
    Hold Option and launch iTunes.
    Select *Create library* and select somewhere to put this new library.
    It will be a complete, new iTunes folder. Any songs you add are added only to this library.
    To use a different library (not a "shared" library), hold Hold Option and launch iTunes. Select *Choose library* and select the iTunes library file in the iTunes folder of the library you want.
    This is what some people do when they want to keep a library for lossless and a library of AAC/MP3 for loading onto their iPod.

Maybe you are looking for

  • HT201303 How do you change your security question?

    How do you change your security question for iTunes?

  • Portlets Issues:-  Included resource or file  not found

    I am facing some problems in the loading of portlets with Weblogic 9.2.When I access the portal url all the portlets are displayed blank by giving the following error message on the server : <Error> <HTTP> <BEA-101214> <Included resource or file "/my

  • Cannot attach a WS-Policy to Jax-RPC Web Service

    I am having trouble trying to associate a WS-Security Policy with a BEA Jax-RPC Web Service? I am following the following procedure to try to associate a the policy: http://edocs.bea.com/wls/docs100/ConsoleHelp/taskhelp/webservices/ConfigureWSPolicyF

  • Safari is logging me out on ipad2

    I have an iPad2 and I have Mac OSX 10.7.2.  For the past week or two, every website I use in Safari will keep logging me out and I have to repeatedly log back in.  For example, Pinterest, Expedia, Gmail, etc.  can someone help me figure out what to d

  • Receiving Mail late on Apple Mail

    Hey Guys, I've recently changed from using Outlook.com on Chrome to 'Apple Mail' and whenever i receive a message it's always very late. Sometimes 20 minutes sometimes 1 hour. My account is POP3 and is hotmail.co.uk. If someone could help i'd be very