EncodingStyle attr not properly ns qualified in SOAP response (7.0 beta)

It appears that BEA does not properly qualify the
encodingStyle attribute in its SOAP response message.
Although the document does specify an encodingStyle, the
attribute does not come from the SOAP envelope namespace.
In the captured response message below, encodingStyle
should be env:encodingStyle to be correct.
HTTP/1.0 200 OK
Date: Thu, 28 Mar 2002 21:13:25 GMT
Server: WebLogic WebLogic Server 7.0 beta Fri Feb 22 10:33:57 PST 2002 166852
Content-Length: 387
Content-Type: text/xml
Connection: Close
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header>
</env:Header>
<env:Body>
<m:buyResponse xmlns:m="http://www.bea.com/examples/Trader"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<result>
<stockSymbol>BEAS</stockSymbol>
<numberTraded>10</numberTraded>
</result>
</m:buyResponse>
</env:Body>
</env:Envelope>

Hi M,
First, I see your point (and agree), from a "pristine" point of view ;-)
But the SOAP spec (or Note, or Comment, or whatever) actually allows this :-)
Here's the exact paragraph:
"A SOAP application SHOULD include the proper SOAP namespace on all elements and
attributes defined by SOAP in messages that it generates. A SOAP application MUST
be able to process SOAP namespaces in messages that it receives. It MUST discard
messages that have incorrect namespaces (see section 4.4) and it MAY process SOAP
messages without SOAP namespaces as though they had the correct SOAP namespaces."
Kind of "Clintonian", if you know what I mean, but it is there. If your SOAP processor
were to discard this message, one would have to assume that MAY is synonymous with
MAY NOT :-)
Is the glass HALF-FULL, or HALF-EMPTY?
Anyway, I agree that the env namespace prefix OUGHT TO BE (like that, lol) added
to the encodingStyle attribute here :-)
Regards,
Mike Wooten
"M Shue" <[email protected]> wrote:
>
It appears that BEA does not properly qualify the
encodingStyle attribute in its SOAP response message.
Although the document does specify an encodingStyle, the
attribute does not come from the SOAP envelope namespace.
In the captured response message below, encodingStyle
should be env:encodingStyle to be correct.
HTTP/1.0 200 OK
Date: Thu, 28 Mar 2002 21:13:25 GMT
Server: WebLogic WebLogic Server 7.0 beta Fri Feb 22 10:33:57 PST 2002 166852
Content-Length: 387
Connection: Close
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header>
</env:Header>
<env:Body>
<m:buyResponse xmlns:m="http://www.bea.com/examples/Trader"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<result>
<stockSymbol>BEAS</stockSymbol>
<numberTraded>10</numberTraded>
</result>
</m:buyResponse>
</env:Body>
</env:Envelope>

Similar Messages

  • How do i return a CDATA section in a SOAP response?

    hi,
    i am relatively new to SOAP/web services. but i know what i want ;-). i naively thought that i could simply send a CDATA wrapped string in a SOAP response by simply doing SOAPElement.addTextNode("<![CDATA[..."). of course, WLS 8.1's javax.xml.soap implementation escapes the <pre>"<" & ">"</pre> as <pre>"<" and ">"</pre> in the response.
    IF i could use the saaj 1.2 implementation, i would do something along the lines of the following to return a CDATA section in a SOAP response :
    <pre>  
       org.w3c.dom.CDATASection myCDATASection ...;
       SOAPBodyElement myBodyElement ...;
       myBodyElement.appendChild(myCDATASection);
    </pre>
    or maybe even something like:
    <pre>
       String myCDATAString = "<![CDATA[...]]>";
    javax.xml.soap.SOAPBody soapBody = ...;
    javax.xml.parsers.DocumentBuilder builder = ...;
    org.xml.sax.InputSource.InputSource inputSource = ...;
    org.w3c.dom.Document document = builder.parse(inputSource);
    soapBody.addDocument(document);
    </pre>          
    but that is a BIG IF! of course, as i have learned after a lengthy trawl through this ng, WLS 8.1 uses its own implementation of the javax.xml.soap.* classes. in particular, weblogic's SOAPBody implementation is devoid of an addDocument(org.w3c.dom.Document) method. and SOAPBodyElement does not have an appendChild(org.w3c.dom.Node)
    please, can anybody fill me in on how to go about doing what i am trying to do using WLS 8.1's javax.xml.soap classes?
    many thanks

    if anybody else out there is also trying to do what i have described (return xml text in a soap response), the solution (told to me by my company's BEA rep) is to just add the raw xml text to the SOAPElement.addTextNode() and weblogic will do the right thing (namely, escape whatever needs to be escaped).
    i had been lead to believe that you couldn't send entity refs (<pre>< and ></pre>) in a soap response. i was told i needed to wrap my raw xml in a CDATA section. but actually i don't need a CDATA section after all for the response i need to return (xml text). contrary to what i was lead to believe by another developer, entity refs are not a problem in a soap response (according to BEA, anyway).

  • EncodingStyle error in JWSDP 1.1 generated SOAP XML?

    Hi,
    I ran wscompile to generate some stubs for a simple "fortune cookie" web service. I know this service works fine because I have tested it with clients using other toolkits. So the stubs are generated, I use them to call the service and it fails. I trapped the XML being sent to the service, it is included below. An "encodingStyle" is being inserted into one of my parameter elements, but it is not being given a value so it is invalid. Can anyone tell me whether this is a bug in JWSDP or how to fix it so that this value is set correctly or is not set at all and defaults to the parent's encodingStyle?
    <?xml version="1.0" encoding="UTF-8"?>..
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:enc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:ns0="tallan.com/FortuneCookieRequest"
    env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <env:Body>
    <ns0:fortuneRequest env:encodingStyle="">
    <ns0:minLines>1</ns0:minLines>
    <ns0:maxLines>1</ns0:maxLines>
    </ns0:fortuneRequest>
    </env:Body>
    </env:Envelope>..

    For a SOAP response to be deserialize, com.sun.xml.rpc.encoding.SOAPDeserializationContext.verifyEncodingStyle() will be called, but SOAPDeserializationContext only pushed an empty string in the encodingStyleContext stack. It assumes the SOAP response received will tell it about encoding styles in the response; but for some SOAP implementations (such as Delphi, and maybe .NET?), this is not true.
    A workaround is to open your SOAP client stub source file (generated by wscompile, you have to keep it), finding the below text:
    protected void _readFirstBodyElement
    Insert the following statement below it:
    deserializationContext.pushEncodingStyle(SOAPConstants.NS_SOAP_ENCODING);
    Then Delphi/.NET web services work happily with JWSDP generated clients.

  • Error:CW_FILES_RESOURCE_TYPE not properly installed on creating workspaces

    Hi
    We are on OCS 10.1.2 on Windows 2003. When creating a new workspace using the Basic Template, we get the error:
    The resource CW_FILES_RESOURCE_TYPE is not properly installed.
    From log in apps\j2ee\OC4J_OCSClient\application-deployments\workspaces\OC4J_OCSClient_default_island_1:
    06/11/11 18:18:42 workspaces: caller [brian.yen] 6755350 warn BaseAction: oracle.workspaces.ui.actions.CwHomeAction: Handling Event : goHomeAll
    06/11/11 18:18:42 workspaces: caller [brian.yen] 6755350 warn BaseAction: oracle.workspaces.ui.actions.CwHomeAction: Handling Event <goHomeAll> for user <brian.yen> DONE within <15> milliSeconds. Forwarding to ForwardConfig[name=cwHomeAllLink,path=/cwHomeAll.uix,redirect=false,contextRelative=false]
    06/11/11 18:18:44 workspaces: caller [brian.yen] 6755350 warn BaseAction: oracle.workspaces.ui.actions.TemplatesAction: Handling Event : createWorkspaceForm
    06/11/11 18:18:44 workspaces: caller [brian.yen] 6755350 warn BaseAction: oracle.workspaces.ui.actions.TemplatesAction: Handling Event <createWorkspaceForm> for user <brian.yen> DONE within <47> milliSeconds. Forwarding to ForwardConfig[name=showTemplatesForCreateWspcLink,path=/showTemplatesForWorkspaceCreation.uix,redirect=false,contextRelative=false]
    06/11/11 18:18:46 workspaces: caller [brian.yen] 6755350 warn BaseAction: oracle.workspaces.ui.actions.TemplatesAction: Handling Event : createUsingTemplateFormWz
    06/11/11 18:18:46 workspaces: caller [brian.yen] 6755350 warn CwPrivilegeManager: workspace creation mode = Public
    06/11/11 18:18:46 workspaces: caller [brian.yen] 6755350 warn BaseAction: oracle.workspaces.ui.actions.TemplatesAction: Handling Event <createUsingTemplateFormWz> for user <brian.yen> DONE within <141> milliSeconds. Forwarding to ForwardConfig[name=createWorkspaceUsingTemplateLink,path=/createWorkspaceUsingTemplateForm.uix,redirect=false,contextRelative=false]
    06/11/11 18:20:19 workspaces: caller [brian.yen] 6755350 warn BaseAction: oracle.workspaces.ui.actions.TemplatesAction: Handling Event : createUsingTemplate
    06/11/11 18:20:19 workspaces: caller [brian.yen] 6755350 warn CwPrivilegeManager: workspace creation mode = Public
    06/11/11 18:20:20 workspaces: caller [brian.yen] 6755350 warn CwPrivilegeManager: workspace creation mode = Public
    06/11/11 18:20:20 workspaces: caller [brian.yen] 6755350 error CwWorkspaceResourceMgr: Could not find resource of type CW_EMAIL_RESOURCE_TYPE in workspace with Uid 8B1B40DF017844978E4EE65D8194DABB
    06/11/11 18:20:20 workspaces: caller [brian.yen] 6755350 warn CwDiscussionAccess: About to getAdminTdStore...
    06/11/11 18:20:20 workspaces: caller [brian.yen] 6755350 warn CwDiscussionAccess: About to getAdminTdStore...
    06/11/11 18:20:21 workspaces: caller [brian.yen] 6755350 warn CwWorkspaceUtil: SKIPPING RESOURCE FOR PARTIAL SUCCESS
    oracle.workspaces.CwConfigurationException: The resource CW_FILES_RESOURCE_TYPE is not properly installed.
    at oracle.workspaces.resource.CwAbstractResourceManager.verifyInitialized(CwAbstractResourceManager.java:647)
    at oracle.workspaces.resource.CwAbstractResourceManager.ping(CwAbstractResourceManager.java:800)
    at oracle.workspaces.container.CwWorkspaceResourceMgr.checkRsrcMgrNotNullAndAvailable(CwWorkspaceResourceMgr.java:1263)
    at oracle.workspaces.container.CwWorkspaceUtil.addResourcesFromTemplate(CwWorkspaceUtil.java:253)
    at oracle.workspaces.container.CwWorkspaceManager.createWorkspaceInternal(CwWorkspaceManager.java:1316)
    at oracle.workspaces.container.CwWorkspaceManager.createWorkspace(CwWorkspaceManager.java:397)
    at oracle.workspaces.session.CwSession.createWorkspace(CwSession.java:401)
    at oracle.workspaces.ui.handler.CwHomeActionHandler.onCreateWorkspace(CwHomeActionHandler.java:613)
    at oracle.workspaces.ui.handler.TemplatesActionHandler.onCreateWorkspaceUsingTemplate(TemplatesActionHandler.java:233)
    at oracle.workspaces.ui.actions.TemplatesAction.executeInternalBase(TemplatesAction.java:235)
    at oracle.workspaces.ui.actions.BaseAction.execute(BaseAction.java:351)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: oracle.workspaces.resource.CwResourceTypeUnavailableException: The library resource is currently unavailable; please try again later or contact an administrator for assistance.
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:697)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind.server.Application.getHttpApplication(Application.java:890)
    at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    ... 1 more
    Caused by:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    ... 27 more
    BEGIN nested exception
    oracle.workspaces.resource.CwResourceTypeUnavailableException: The library resource is currently unavailable; please try again later or contact an administrator for assistance.
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:697)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind.server.Application.getHttpApplication(Application.java:890)
    at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    Caused by:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    ... 27 more
    BEGIN nested exception
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
    faultSubcode:
    faultString:
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}exceptionName:oracle.ifs.fdk.FdkException
    {http://xml.apache.org/axis/}stackTrace:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind.server.Application.getHttpApplication(Application.java:890)
    at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    {http://xml.apache.org/axis/}hostname:ocs
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind.server.Application.getHttpApplication(Application.java:890)
    at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    END nested exception
    END nested exception
    oracle.workspaces.CwConfigurationException: The resource CW_FILES_RESOURCE_TYPE is not properly installed.
    at oracle.workspaces.resource.CwAbstractResourceManager.verifyInitialized(CwAbstractResourceManager.java:647)
    at oracle.workspaces.resource.CwAbstractResourceManager.ping(CwAbstractResourceManager.java:800)
    at oracle.workspaces.container.CwWorkspaceResourceMgr.checkRsrcMgrNotNullAndAvailable(CwWorkspaceResourceMgr.java:1263)
    at oracle.workspaces.container.CwWorkspaceUtil.addResourcesFromTemplate(CwWorkspaceUtil.java:253)
    at oracle.workspaces.container.CwWorkspaceManager.createWorkspaceInternal(CwWorkspaceManager.java:1316)
    at oracle.workspaces.container.CwWorkspaceManager.createWorkspace(CwWorkspaceManager.java:397)
    at oracle.workspaces.session.CwSession.createWorkspace(CwSession.java:401)
    at oracle.workspaces.ui.handler.CwHomeActionHandler.onCreateWorkspace(CwHomeActionHandler.java:613)
    at oracle.workspaces.ui.handler.TemplatesActionHandler.onCreateWorkspaceUsingTemplate(TemplatesActionHandler.java:233)
    at oracle.workspaces.ui.actions.TemplatesAction.executeInternalBase(TemplatesAction.java:235)
    at oracle.workspaces.ui.actions.BaseAction.execute(BaseAction.java:351)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    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.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    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)
    Caused by: oracle.workspaces.resource.CwResourceTypeUnavailableException: The library resource is currently unavailable; please try again later or contact an administrator for assistance.
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:697)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.Application.getHttpApplication(Application.java:890)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    ... 1 more
    Caused by:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    ... 27 more
    BEGIN nested exception
    oracle.workspaces.resource.CwResourceTypeUnavailableException: The library resource is currently unavailable; please try again later or contact an administrator for assistance.
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:697)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.Application.getHttpApplication(Application.java:890)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    Caused by:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    ... 27 more
    BEGIN nested exception
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
    faultSubcode:
    faultString:
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}exceptionName:oracle.ifs.fdk.FdkException
    {http://xml.apache.org/axis/}stackTrace:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.Application.getHttpApplication(Application.java:890)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    {http://xml.apache.org/axis/}hostname:ocs
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.Application.getHttpApplication(Application.java:890)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    END nested exception
    END nested exception
    06/11/11 18:20:21 workspaces: caller [brian.yen] 6755350 warn CwDiscussionAccess: About to getAdminTdStore...
    06/11/11 18:20:21 workspaces: caller [brian.yen] 6755350 warn CwDiscussionAccess: About to getAdminTdStore...
    06/11/11 18:20:21 workspaces: caller [brian.yen] 6755350 warn CwDiscussionAccess: About to getAdminTdStore...
    06/11/11 18:20:21 workspaces: caller [brian.yen] 6755350 error CwWorkspaceResourceMgr: Could not find resource of type CW_FILES_RESOURCE_TYPE in workspace with Uid 8B1B40DF017844978E4EE65D8194DABB
    06/11/11 18:20:21 workspaces: caller [brian.yen] 6755350 warn CwHomeActionHandler: Caught partial success exception during workspace creation. msg = Workspace creation was partially successful - the list of additional exceptions contains the exceptions encountered.
    06/11/11 18:20:21 workspaces: caller [brian.yen] 6755350 warn CwHomeActionHandler: Addition Exception [0]:
    oracle.workspaces.CwConfigurationException: The resource CW_FILES_RESOURCE_TYPE is not properly installed.
    at oracle.workspaces.resource.CwAbstractResourceManager.verifyInitialized(CwAbstractResourceManager.java:647)
    at oracle.workspaces.resource.CwAbstractResourceManager.ping(CwAbstractResourceManager.java:800)
    at oracle.workspaces.container.CwWorkspaceResourceMgr.checkRsrcMgrNotNullAndAvailable(CwWorkspaceResourceMgr.java:1263)
    at oracle.workspaces.container.CwWorkspaceUtil.addResourcesFromTemplate(CwWorkspaceUtil.java:253)
    at oracle.workspaces.container.CwWorkspaceManager.createWorkspaceInternal(CwWorkspaceManager.java:1316)
    at oracle.workspaces.container.CwWorkspaceManager.createWorkspace(CwWorkspaceManager.java:397)
    at oracle.workspaces.session.CwSession.createWorkspace(CwSession.java:401)
    at oracle.workspaces.ui.handler.CwHomeActionHandler.onCreateWorkspace(CwHomeActionHandler.java:613)
    at oracle.workspaces.ui.handler.TemplatesActionHandler.onCreateWorkspaceUsingTemplate(TemplatesActionHandler.java:233)
    at oracle.workspaces.ui.actions.TemplatesAction.executeInternalBase(TemplatesAction.java:235)
    at oracle.workspaces.ui.actions.BaseAction.execute(BaseAction.java:351)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: oracle.workspaces.resource.CwResourceTypeUnavailableException: The library resource is currently unavailable; please try again later or contact an administrator for assistance.
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:697)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind.server.Application.getHttpApplication(Application.java:890)
    at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    ... 1 more
    Caused by:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    ... 27 more
    BEGIN nested exception
    oracle.workspaces.resource.CwResourceTypeUnavailableException: The library resource is currently unavailable; please try again later or contact an administrator for assistance.
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:697)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind.server.Application.getHttpApplication(Application.java:890)
    at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    Caused by:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    ... 27 more
    BEGIN nested exception
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
    faultSubcode:
    faultString:
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}exceptionName:oracle.ifs.fdk.FdkException
    {http://xml.apache.org/axis/}stackTrace:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind.server.Application.getHttpApplication(Application.java:890)
    at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    {http://xml.apache.org/axis/}hostname:ocs
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind.server.Application.getHttpApplication(Application.java:890)
    at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    END nested exception
    END nested exception
    oracle.workspaces.CwConfigurationException: The resource CW_FILES_RESOURCE_TYPE is not properly installed.
    at oracle.workspaces.resource.CwAbstractResourceManager.verifyInitialized(CwAbstractResourceManager.java:647)
    at oracle.workspaces.resource.CwAbstractResourceManager.ping(CwAbstractResourceManager.java:800)
    at oracle.workspaces.container.CwWorkspaceResourceMgr.checkRsrcMgrNotNullAndAvailable(CwWorkspaceResourceMgr.java:1263)
    at oracle.workspaces.container.CwWorkspaceUtil.addResourcesFromTemplate(CwWorkspaceUtil.java:253)
    at oracle.workspaces.container.CwWorkspaceManager.createWorkspaceInternal(CwWorkspaceManager.java:1316)
    at oracle.workspaces.container.CwWorkspaceManager.createWorkspace(CwWorkspaceManager.java:397)
    at oracle.workspaces.session.CwSession.createWorkspace(CwSession.java:401)
    at oracle.workspaces.ui.handler.CwHomeActionHandler.onCreateWorkspace(CwHomeActionHandler.java:613)
    at oracle.workspaces.ui.handler.TemplatesActionHandler.onCreateWorkspaceUsingTemplate(TemplatesActionHandler.java:233)
    at oracle.workspaces.ui.actions.TemplatesAction.executeInternalBase(TemplatesAction.java:235)
    at oracle.workspaces.ui.actions.BaseAction.execute(BaseAction.java:351)
    at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    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.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
    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)
    Caused by: oracle.workspaces.resource.CwResourceTypeUnavailableException: The library resource is currently unavailable; please try again later or contact an administrator for assistance.
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:697)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.Application.getHttpApplication(Application.java:890)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    ... 1 more
    Caused by:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    ... 27 more
    BEGIN nested exception
    oracle.workspaces.resource.CwResourceTypeUnavailableException: The library resource is currently unavailable; please try again later or contact an administrator for assistance.
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:697)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.Application.getHttpApplication(Application.java:890)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    Caused by:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    ... 27 more
    BEGIN nested exception
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
    faultSubcode:
    faultString:
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}exceptionName:oracle.ifs.fdk.FdkException
    {http://xml.apache.org/axis/}stackTrace:
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.Application.getHttpApplication(Application.java:890)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.initApplications(HttpSite.java:625)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpSite.setConfig(HttpSite.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setSites(HttpServer.java:278)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.setConfig(HttpServer.java:179)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.initializeHttp(ApplicationServer.java:2394)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServer.setConfig(ApplicationServer.java:1551)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:92)
    at java.lang.Thread.run(Thread.java:534)
    {http://xml.apache.org/axis/}hostname:ocs
    at oracle.ifs.fdk.client.ServiceToServiceAuthentication.getSessionCookies(ServiceToServiceAuthentication.java:136)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.login(CwFilesSessionEcm.java:682)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.initializeManagers(CwFilesSessionEcm.java:474)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openInternal(CwFilesSessionEcm.java:282)
    at oracle.workspaces.resource.CwAbstractResourceSession.reopen(CwAbstractResourceSession.java:191)
    at oracle.workspaces.resource.CwAbstractResourceSession.open(CwAbstractResourceSession.java:145)
    at oracle.workspaces.resource.files.CwFilesSessionEcm.openFilesSessionAsUser(CwFilesSessionEcm.java:319)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.openAdminFilesSession(CwFilesAccessEcm.java:6272)
    at oracle.workspaces.resource.files.CwFilesAccessEcm.checkImplSpecificInit(CwFilesAccessEcm.java:609)
    at oracle.workspaces.resource.files.CwFilesResourceManager.initResource(CwFilesResourceManager.java:377)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:145)
    at oracle.workspaces.resource.CwAbstractResourceManager.init(CwAbstractResourceManager.java:116)
    at oracle.workspaces.CwRuntime.initAndSetResourceManager(CwRuntime.java:514)
    at oracle.workspaces.CwRuntime.initResourceManagers(CwRuntime.java:400)
    at oracle.workspaces.CwRuntime.init(CwRuntime.java:253)
    at oracle.workspaces.CwService.init(CwService.java:102)
    at oracle.workspaces.ws.util.WSLifeCycleListener.contextInitialized(WSLifeCycleListener.java:68)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.initDynamic(HttpApplication.java:1009)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpApplication.<init>(HttpApplication.java:549)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.Application.getHttpApplication(Application.java:890)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpServer.getHttpApplication(HttpServer.java:707)
    at com.evermind[Oracle Application Server Containers f

    Verify that the newly-installed service is up and running, an Application Administrator can access the Administration tab, then the Services subtab, and “Reinitialize” only the newly-installed service. Reinitializing the service will establish or re-establish a connection with the service so that it can be used by Workspaces. The workspaces server remains up and functional throughout this process.
    OR
    An alternative to reinitializing the newly installed service is to take down the OC4J Container which contains the Workspaces application and then bring it back up. The same initialization steps occur that take place when reinitializing the service.

  • JWSDP 1.6 xws-security Simple fails with "block not properly padded"

    Environment:
    - Windows 2000
    - Tomcat50-jwsdp
    - JAVA_HOME=C:/Progra~1/Java/jdk1.5.0_05
    - Security environment handler: SecurityEnvironmentHandler.java supplied with JWSDP 1.6 (Hello, Ron!)
    I get the following in the Tomcat Window:
    ==== Received Message End ====
    Nov 13, 2005 10:38:56 AM com.sun.org.apache.xml.internal.security.encryption.XMLCipher decryptKey
    INFO: Decryption of key type http://www.w3.org/2001/04/xmlenc#tripledes-cbc OK
    Nov 13, 2005 10:38:56 AM com.sun.xml.wss.impl.apachecrypto.DecryptionProcessor decryptElementWithCipher
    SEVERE: WSS_ENC0004: Exception [ Given final block not properly padded ] while trying to decrypt message
    Nov 13, 2005 10:38:56 AM com.sun.xml.wss.impl.filter.DumpFilter process
    INFO: ==== Sending Message Start ====
    <?xml version="1.0" encoding="UTF-8"?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:enc="http://schemas.xmlsoap.org/soap/enco
    ding/" xmlns:ns0="http://xmlsoap.org/Ping" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.or
    g/2001/XMLSchema-instance">
    <env:Body>
    <env:Fault>
    <faultcode xmlns:ans1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">ans1:Fail
    edCheck</faultcode>
    <faultstring>Unable to decrypt message</faultstring>
    </env:Fault>
    </env:Body>
    </env:Envelope>
    ==== Sending Message End ====
    Please help!
    George

    Hi, I got the xws-security/samples/simple application
    working successfully with my own keystores. I have 2
    questions regarding this sample application.
    1) When running the application with the
    encrypt-server.xml and encrypt-client.xml
    configuration, why is it necessary to import the
    client's certificate into the server's truststore and
    the server's certificate into client's truststore when
    their certificates have already been signed by a
    trusted root CA (e.g. Verisign), whose certificate is
    in both truststores? Shouldn't their certificates
    containing their public keys get automatically
    exchanged during the connection request? It's a pain
    to publish a web service and expect a manual public
    certificate import for each client wanting to use the
    service.Certificates are sent only when the keyReferenceType is "Direct" which is the default. It's possible that our code is checking the certificate sent with one found in the KeyStore, but a quick scan of the code doesn't show it. If that's what's happening it's a bug. All of the other key reference strategies send only a referece to the sender's certificate in which case the reciever must have a copy of that certificate in its keystore.
    2) I use Tomcat to run the sample application and did
    set up the SSL connector to point to the keystores.
    When the client connects to the server, it uses a
    http endpoint not https. I'm aware that htpps is
    needed for SSL support but not clear on where does
    https come into play during the client's
    request/server's response process.We share the SSL keystore so that certificates don't have to be stored in more than one place. The functionality of XWS-Security and SSL is logically the same so it make sense to use the same keystore. XWS-Security operates completely separately from the transport and never knows whether HTTPS is in use or not.
    Phil Goodwin
    Technical Lead
    XWS-Security

  • Exchange 2013 wildcard certificate - problem IMAP POP Because the matter is not a fully qualified domain name

    Hi all, I have an Exchange 2013 SP1, I have installed a third-party SSL certificate and correctly on the server, but when I assign the POP and IMAP services, I see this error
    The certificate with thumbprint XXXXXXXXX and subject '*. Xxxx.yyy' can not be used for POP SSL / TLS connections because the matter is not a fully qualified domain name (FQDN). Use the Set-POPSettings X509CertificateName command to set the FQDN of the service.
    I tried to run this command and restart the POP and IMAP services
    ImapSettings set-ca-server-1-X509CertificateName mail.xxxxx.yyy
    POPSettings set-ca-server-1-X509CertificateName mail.xxxxx.yyy
    But the POP and IMAP services, the certificate is not assigned.
    You know as you can solve
    regards
    Microsoft Certified IT Professional Server Administrator

    Hi,
    Before we go further, I’d like to confirm if you can use POP and IMAP properly.
    If everything goes well, we can safely ignore it:
    http://www.hsuconsulting.com/wildcard-ssl-certificate-exchange-2013-imap-and-pop-error/
    If not, we can try the following commands :
    Set-POPSettings -ExternalConnectionSetting {mail.domain.com:995:SSL}
    Set-ImapSettings -ExternalConnectionSetting {mail.domain.com:993:SSL}
    http://careexchange.in/how-to-enable-and-configure-pop-imap-in-exchange-2013/
    Note: Microsoft is providing the above information as convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information
    found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Can not properly view cover flow in full screen in external display

    My mac is the new Mac book pro 15.4 inch screen and I connect my mac pro to external display e.g. Samsung LCD monitor 24 inches.
    The bug is that I can not PROPERLY view full screen (in external display) for some application e.g. iTunes, and Front Row.
    - When I use iTunes, I can not properly view Cover Flow view in full screen (in the external display screen) except the case of mirror display.
    - For Front Row, I can not view full screen in external display but only my mac display.
    However, for other DVD or VDO players, I can view movie on external display in full screen and I still be able to do other works on my mac screen.
    Please let me know how to solve it.

    found the likely issue!  are you participating in youtube's html5 trial?  go here and it will tell you if you are:
    http://www.youtube.com/html5
    exit the trial and it should fix the issue.  it worked for me!

  • XSD OTD compilefailure String literal not properly closed by double-quote

    Java CAPS 5.1.3
    I have created a XSD to describe a simple XML file. After this I created an OTD from the exported XSD file.
    This OTD is being used in a JCD. During the build of the Deployment Profile I get the error: :Compile failed: xsd.XSD_MB235401907.X_all_B: Line 69: String literal is not properly closed by a double-quote
    All steps have been preferformed within the same eDesigner and the same repository.
    I have verified the XSD file with netbeans and can not see a problem with the file itself.
    Any ideas to resolve this compile failure?
    The XSD is:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:tns="http://ams1saa011:12000/repository/repository/Recieve/MessageBroker/WISE_WTE/repository1423024:117d46f486a:-8000/XSDDefinition1" targetNamespace="http://ams1saa011:12000/repository/repository/Recieve/MessageBroker/WISE_WTE/repository1423024:117d46f486a:-8000/XSDDefinition1">
        <xsd:element name="MessageBroker">
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="IN" maxOccurs="unbounded">
                        <xsd:complexType>
                            <xsd:all>
                                <xsd:element name="MSGFN" type="xsd:string" default="IN"/>
                                <xsd:element name="DIR" type="xsd:string" default="\"/>
                                <xsd:element name="FILEMASK"
                                    type="xsd:string" default="*.DAT"/>
                                <xsd:element name="MAPID" type="xsd:string" default="MS000"/>
                                <xsd:element name="RCVPRN" type="xsd:string"/>
                                <xsd:element name="RCVPRT" type="xsd:string"/>
                                <xsd:element name="RCVPFC" type="xsd:string"/>
                                <xsd:element name="SNDPRN" type="xsd:string"/>
                                <xsd:element name="SNDPRT" type="xsd:string"/>
                                <xsd:element name="MESTYP" type="xsd:string"/>
                                <xsd:element name="MESCOD" type="xsd:string"/>
                                <xsd:element name="MESFCT" type="xsd:string"/>
                                <xsd:element name="TEST" type="xsd:boolean" nillable="true"/>
                            </xsd:all>
                        </xsd:complexType>
                    </xsd:element>
                </xsd:sequence>
                <xsd:attribute name="dateTime" type="xsd:dateTime"/>
            </xsd:complexType>
        </xsd:element>
    </xsd:schema>The complete error stack trace is:
    com.stc.codegen.framework.model.CodeGenException: error generating otd for CMap1_jcdMB_Recieve_SAP_Inbound1:Compile failed: xsd.XSD_MB235401907.X_all_B: Line 69: String literal is not properly closed by a double-quote
         at com.stc.codegen.OTDImpl.model.OTDCodeletFactory$OTDCodelet.postFileGeneration(OTDCodeletFactory.java:767)
         at com.stc.codegen.frameworkImpl.model.CodeGenFrameworkImpl.processCodelets(CodeGenFrameworkImpl.java:653)
         at com.stc.codegen.frameworkImpl.model.CodeGenFrameworkImpl.process(CodeGenFrameworkImpl.java:1544)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:405)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.process(DeploymentVisitorImpl.java:308)
         at com.stc.codegen.frameworkImpl.model.DeploymentVisitorImpl.traverseDeployment(DeploymentVisitorImpl.java:268)
         at com.stc.codegen.driver.module.DeploymentBuildAction.loadCodeGen(DeploymentBuildAction.java:923)
         at com.stc.codegen.driver.module.DeploymentBuildAction.access$1000(DeploymentBuildAction.java:174)
         at com.stc.codegen.driver.module.DeploymentBuildAction$1.run(DeploymentBuildAction.java:599)
         at org.openide.util.Task.run(Task.java:136)
         at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:599)
    Caused by: java.lang.RuntimeException: Compile failed: xsd.XSD_MB235401907.X_all_B: Line 69: String literal is not properly closed by a double-quote
         at com.stc.javac.Javac.compile(Javac.java:227)
         at com.stc.otd.codegen.BaseXsdDtdGenerator.compileFromJarfile(BaseXsdDtdGenerator.java:254)
         at com.stc.otd.codegen.BaseXsdDtdGenerator.compile(BaseXsdDtdGenerator.java:52)
         at com.stc.otd.xsd.codegen.XsdParserGenerator.compile(XsdParserGenerator.java:182)
         at com.stc.otd.codegen.BaseXsdDtdGenerator.generate(BaseXsdDtdGenerator.java:166)
         at com.stc.otd.codegen.BaseXsdDtdGenerator.generate(BaseXsdDtdGenerator.java:90)
         at com.stc.codegen.OTDImpl.model.CollabOTDGenerator.generateCollabOTDJavaFiles(CollabOTDGenerator.java:233)
         at com.stc.codegen.OTDImpl.model.OTDCodeletFactory$OTDCodelet.processOTDJars(OTDCodeletFactory.java:861)
         at com.stc.codegen.OTDImpl.model.OTDCodeletFactory$OTDCodelet.postFileGeneration(OTDCodeletFactory.java:666)
         ... 10 more

    You may need to escape the default slash "\\".
    I'd suggest importing the xsd into the jcaps xml schema editor and verifying that way and then creating the otd by node export.
    Regards,
    Rupert

  • String literal is not properly closed by a double-quote

    Hi,
    In my Java Class, this message appears:
    String literal is not properly closed by a double-quote
    LINE: The red part of the statement.
    Please help! Thanks!
    package demo;
    import javax.persistence.EntityManager;
    import javax.persistence.EntityManagerFactory;
    import javax.persistence.Persistence;
    public class Flights {
         private EntityManagerFactory emf;
        private EntityManager getEntityManager() {
            if (emf == null) {
                emf = Persistence.createEntityManagerFactory("Flights");
            return emf.createEntityManager();
        public Flights[] getFlights() {
            EntityManager em = getEntityManager();
            try {
                javax.persistence.Query q = em.createQuery("SELECT /*+ INDEX(lh_master_q lh_master_pk)*/ DISTINCT to_char(FD.FLIGHT_DATE, 'DY')||'.'|| FD.FLIGHT_DATE AS DATE_HEADER,
      FD.FLIGHT_DATE AS TRAVEL_DATE,
      B.CITY                       AS LEAVING,
      LM.STD                       AS DEPART,
      C.CITY                       AS ARRIVING,
      LM.STA                       AS ARR,
      LM.FNR                       AS FLIGHT,
      E.CARRIER                    AS AIRLINE,
      LM.ACTYPE                    AS AIRCRAFT,
      LM.ACTYPEFULLNAME            AS EQUIP,
      LM.STD ||' '|| LM.DEP ||' - '|| LM.STA ||' '|| LM.ARR AS SCHEDULE,
      B.CITY ||' - '|| C.CITY AS ROUTE
      MAX(CASE WHEN FA.BOOKING_CLASS = 'S' AND p_num_adt > 1 THEN (ROUND(FA.LH_FARE_EUR, 2)* p_num_adt) END) AS ECONOMY_SAVER,
      MAX(CASE WHEN FA.BOOKING_CLASS = 'H' AND p_num_adt > 1 THEN (ROUND(FA.LH_FARE_EUR, 2)* p_num_adt) END) AS ECONOMY,
      MAX(CASE WHEN FA.BOOKING_CLASS = 'B' AND p_num_adt > 1 THEN (ROUND(FA.LH_FARE_EUR, 2)* p_num_adt) END) AS ECONOMY_FLEXIBLE,
      MAX(CASE WHEN FA.BOOKING_CLASS = 'Z' AND p_num_adt > 1 THEN (ROUND(FA.LH_FARE_EUR, 2)* p_num_adt) END) AS BUSINESS,
      MAX(CASE WHEN FA.BOOKING_CLASS = 'D' AND p_num_adt > 1 THEN (ROUND(FA.LH_FARE_EUR, 2)* p_num_adt) END) AS BUSINESS_FLEXIBLE,
      MAX(CASE WHEN FA.BOOKING_CLASS = 'F' AND p_num_adt > 1 THEN (ROUND(FA.LH_FARE_EUR, 2)* p_num_adt) END) AS FIRST_CLASS
    FROM LH_MASTER_Q LM, LH_FLIGHT_DATE FD, AIRPORTS_LOOKUP B, AIRPORTS_LOOKUP C, CARRIERS E, LH_FARES FA, LH_SERVICE_CLASS SC, LH_CABIN_CLASS CC
    WHERE LM.ROWNR = FD.FLIGHT_LEG_ID
       AND LM.DEP = FA.FROM_AP
       AND LM.ARR = FA.TO_AP
       AND LM.DEP = B.IATA_CODE
       AND LM.ARR = C.IATA_CODE
       AND LM.AL = E.CARRIER_CODE
       AND FA.BOOKING_CLASS = SC.BKG_CLASS_ID
       AND SC.CABIN_CLASS_ID = CC.CABIN_CLASS_ID
       AND LM.ACTYPE = FD.AIRCRAFT_TYPE
       AND B.CITY_CODE = :p_leaving
       AND C.CITY_CODE = :p_arriving
       AND CC.CABIN_CLASS_NAME = :p_class
       AND E.CARRIER = :p_airline
       AND FD.FLIGHT_DATE = :p_outbound
    GROUP BY FD.FLIGHT_DATE,
             to_char(FD.FLIGHT_DATE, 'DY')||'.'|| FD.FLIGHT_DATE,
             B.CITY,
             LM.STD,
             C.CITY,
             LM.STA,
             LM.FNR,
             E.CARRIER,
             LM.ACTYPE,
             LM.ACTYPEFULLNAME,
             LM.STD ||' '|| LM.DEP ||' - '|| LM.STA ||' '|| LM.ARR,
             B.CITY ||' - '|| C.CITY,
             to_char(FD.FLIGHT_DATE, 'DY')
    ORDER BY Depart;");
                return (Flights[]) q.getResultList().toArray(new Flights[0]);
            } finally {
                em.close();
    }

    From the Java specification (http://docs.oracle.com/javase/specs/jls/se5.0/html/lexical.html#3.10.5):
    It is a compile-time error for a line terminator to appear after the opening " and before the closing matching ".
    In other words, string literals cannot span lines.
    You can use the concatenation operator ( + ) to fix this:
    String myLiteral = "A long line " +
    "Another long line " +
    "Another long line, etc.";
    If you're going to ever print out that string literal (like for debugging purposes), it would probably be better to have a return at the end of each line (\n):
    String myLiteral = "A long line\n" +
    "Another long line\n" +
    "Another long line, etc.";
    Edited by: user739461 on Mar 5, 2012 8:10 AM

  • How can I activate an iTunes gift card that says it's not properly activated?

    I'm trying to download an iTunes gift card and it says that I cannot activate it's because it's not properly activated. I really want to download it so I can buy some more songs. Please help me "activate" my iTunes card.

    iTunes gift cards must be redeemed before using.
    Help here > iTunes Store: How to redeem a code
    You can check the balance anytime here >  Account Home - Apple Store

  • Error: the serial number is not for a qualifying product

    I own design standard creative suite 5 , and recently bought CS6 design standard.  I get an error when I try to activate the software that I do not have a qualifying product.  How can that be? I am using the correct serial number.
    Thanks,  (I downloaded from web and had the box sent to me.. and trying to activate the downloaded version)

    Simply run the installer that comes with the box. If it still doesn't work, get in touch with support.
    Mylenium

  • ORA-00933: SQL command not properly ended

    I am attempting to create a view in oracle 8.0.6 but get the error message ORA-00933 SQL command not properly ended, can anyone help?:
    SQL> create view AJT_SCHEDULES01 as
    2 select SCHDL_REFNO, STRAN_REFNO from SCHEDULES order by STRAN_REFNO desc;
    select SCHDL_REFNO, STRAN_REFNO from SCHEDULES order by STRAN_REFNO desc
    ERROR at line 2:
    ORA-00933: SQL command not properly ended

    ORDER BY cannot be used to create an ordered view or to insert in a certain order.
    Please refer to Section ORA-00933: SQL command not properly ended at : http://otn.oracle.com/doc/server.805/a58312/newch220.htm
    For further assistance, please post in the forum at : PL/SQL
    Hope this helps
    Regards
    Pushkala

  • Error:SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: Server was unable to read request. --- There is an error in XML document (1, 447). --- Input string was not in a correct format.

    Hi All,
        We have a scenario of FTP-->PI---> Webservice.  While triggering the data in the FTP, it is failing in the PI with the below error
    SOAP: response message contains an error XIAdapter/PARSING/ADAPTER.SOAP_EXCEPTION - soap fault: Server was unable to read request. ---> There is an error in XML document (1, 447). ---> Input string was not in a correct format.
    Can you please help?

    Hi Raja- It seems to be a data quality issue.
    Check for the value @ 1447 position in the xml message that you are trying to send to web service..
    may be a date filed/decimal value which is not in expected format.

  • IPod Classic will not properly sync

    Hey everybody. I'm really hoping that somebody could help me out with this, as I am getting rather frustrated with it.
    My iPod Classic 120GB will not properly sync with iTunes on Windows 7. When I plug my iPod into my computer, I get the typical "Scan & Fix" message from Windows, and I generally just close the window without selecting an option (to Scan & Fix or Ignore), as neither option has ever seemed to change anything.
    I used to have over 100GB of music on my iPod, collected from various sources over the past 5 years or so, but a few months ago I plugged my iPod in to add new music to it, and iTunes did not recognize any of the files on my iPod. When I ejected it, there was no music on my iPod, but it still had 100GB of space filled. I decided to just bite the bullet and reformat my iPod, even though I would be losing most of my music, in hopes that I could make it work correctly.
    However, after I reformatted it, I have continued to have problems. I have reformatted using both iTunes and the Windows reformatting tool. Every time I plug my iPod in to add new music, the same things happen. I'm not automatically syncing iTunes to my iPod, because I like to be able to manage my music manually. I can add some music to it, but certain files will not copy and then nothing alphabetically after those files will copy either. I eject my iPod and use it normally throughout the day, but then when I plug it back into my computer again to try to add the rest of my music, iTunes says that my iPod has no music on it (even though space is being used). When this happens, I just restore the iPod and try again, and this is getting extremely aggravating.
    My music is all in MP3 format, and I am not trying to add movies, pictures, or any other files to my iPod (other than cover art). I have run anti-virus checks and stuff on all of my music files, and everything has come up clean. Should I try converting all of my music to AAC, or will this just take forever and not actually fix anything? I have already tried downgrading to an older version of iTunes, and I have still been having the same issues. I don't know what else I could do, and I really don't have the money to buy a new iPod.
    Thanks in advance for any help or advice!

    There may be some hardware fault on the iPod's hard drive, which is causing this problem.  Your use of manual loading may be agravating the problem, because you are making the iPod apply many small incremental disk access updates.  If you used automatic syncing, iTunes makes all changes at once, with one disk access, then dismounts the iPod's disk and spins down until the next sync, when it again makes all updates at once.
    I understand why you want to use the manual method, but here's a way to "replicate" what you do manually using automatic syncing.
    Create a new playlist in iTunes.  Load this playlist with ALL the songs you want on the iPod. 
    Select the iPod in iTunes.  There is a row of "tabs" (starting with Summary).  Click on Music there.  On the Music tab, set it to Sync music using Selected playlists, artists, albums, and genres.  Below that, keep it simple by checkmarking ONLY that new playlist with the songs you want on the iPod.  When you click Apply, the songs on that playlist sync to the iPod.
    Going forward, to update the iPod's songs, just update that playlist (add and remove songs).  Basically, instead of manually updating the iPod, you are manually updating the playlist.  It's the same work, but with several key advantages:
    - The iPod does not need to be connected to make updates, increasing flexibility and reducing wear-and-tear on iPod.  Just connect the iPod once after you are done making all changes to the playlist.
    - Updates to a playlist are instantaneous.  Updates made directly to an iPod (especially one with a hard drive that may need to spin up) takes a few seconds to a few minutes, depending on data size.  You're just waiting.
    - Many small updates to the iPod's hard drive is more wear-and-tear, compared to iTunes applying all of your changes with one consolidated disk access.
    - iTunes keeps the iPod's "disk" NOT mounted, except when syncing.  This reduces wear-and-tear, and the chance of data corruption occuring.  The manual method requires the iPod's disk to be mounted at all times (until ejected).
    - Because the iPod's disk is not mounted most of the time, you don't need to eject before disconnecting.
    - You have a backup of all of your iPod songs on the computer's hard drive.
    - If you do a Restore, or if you get a new iPod, all you do is go to the Music tab and select that one playlist again, and click Apply.  Everything back to the way it was before, with a few mouse clicks (and 20-30 minutes or so of syncing).
    If you want multiple playlists on the iPod, just create those playlists in the iTunes library.  Name them so that they all appear grouped together in the iTunes sidebar.  Checkmark those playlists on the Music tab.  Do your "song maintenance" in iTunes using those playlists, and let iTunes automatically sync all changes at once the next time you connect the iPod (or click the Sync button).
    Try setting it up to use automatic syncing, to see if there is any improvement.

  • Error message "disk was not properly ejected" while syncing to iPod Classic

    Hello,
    I am having a terrible problem with my iPod Classic. All was fine until this morning. For some reason now when I try to sync iPod I receive several error messages. The iPod will start syncing slowly then I receive "Disk was not properly ejected". At this point the iPod disappears from left side of iTunes. The iPod still says "connected". After I click "ok" on error another error message appears saying "iPod cannot be synced, disk could not be read from or written to".
    Please help, my music is all I have as I am wheelchair bound.

    To be clear, I'm unsure whether or not iOS 6.0 is the latest iPod Touch software but I did get this error message when I attempted to update:
    I hope this helps. Thank you!

Maybe you are looking for