Hi Team:
I want to log down the user's action when user after edit the attribute in the edit dialog,how to do that?
any suggestions/pointers to solve this problem would be appreciable.
Hi Team:
I want to log down the user's action when user after edit the attribute in the edit dialog,how to do that?
any suggestions/pointers to solve this problem would be appreciable.
Hello,
according to the 'tags' widget (/libs/cq/tagging/widgets/source/widgets/TagInputField.js) documentation it should be possible to restrict the namespaces to select from usint the 'namespaces' attribute.
This works fine if I only specify the namespaces to restrict to (namespaces = [namespace1,namespace2].
But still according to the documentation, it should also be possible to restrict the number of tags that can be selected using the following format for each namespace in the 'namespaces' array:
{
name: "namespace",
maximum: 1
}
Unfortunately, that does not work. I have tried all sorts of combinations.
Anyone else stumbled into this issue?
Kind regards,
Luc
Hi All,
Can anyone please help with sharing the idea/code how to set cq:noDecoration to true so that extra div tags can be removed which gets generated by CQ dynamically?
Also, is there a way to still allow editing along with setting cq:noDecoration to true?
Any help would be much appreciated.
Thanks.
Hello all!
I've been trying to upload packages into CQ5 via Java, based on the documented curl commands at http://dev.day.com/docs/en/crx/current/how_to/package_manager.html, but I've hit a strange issue when trying to upload packages to publish instances. The reason I'm uploading to the publisher directly is because the package only contains ACL nodes, and these do not seem to replicate from author to publisher (from everything that I've read and tried).
I'm using the older /crx/packmgr/service.jsp method in my Java - I know that this is outdated, but it gives me a better debug output of what goes wrong than the /crx/packmgr/service/.json/?cmd=upload method. I get the same failures with the newer json methos as well.
When I run my code specifying "author", I get the following response, and the package has uploaded successfully:
<crx version="2.3.15" user="admin" workspace="crx.default">
<request>
<param name="file" value="author_package.zip"/>
<param name="name" value="author_packagename"/>
</request>
<response>
<data>
<package>
<group></group>
<name>author_packagename</name>
<version>0.01</version>
<downloadName>author_package.zip</downloadName>
<size>1754056</size>
<created></created>
<createdBy>admin</createdBy>
<lastModified></lastModified>
<lastModifiedBy>admin</lastModifiedBy>
<lastUnpacked></lastUnpacked>
<lastUnpackedBy>null</lastUnpackedBy>
</package>
</data>
<status code="200">ok</status>
</response>
</crx>
If I run the following curl command, I get the exact same response as my Java, so I'm happy that the Java is correct and working:
curl -u admin:admin -F file=@author_package.zip -F name=author_packagename http://127.0.0.1:4504/crx/packmgr/service.jsp
If I run my Java code specifying "publisher", I get the following response, and the package does not upload:
<crx version="2.3.15" user="anonymous" workspace="crx.default">
<request>
<param name="file" value="publisher_package.zip"/>
<param name="name" value="publisher_packagename"/>
</request>
<response>
<status code="500">javax.jcr.ItemExistsException: This node already exists: /etc/packages</status>
</response>
</crx>
Trying the equivelant curl command, I get the following response, and the package has uploaded:
curl -u admin:admin -F file=@publisher_package.zip -F name=publisher_packagename http://127.0.0.1:4505/crx/packmgr/service.jsp
<crx version="2.3.15" user="admin" workspace="crx.default">
<request>
<param name="file" value="publisher_package.zip"/>
<param name="name" value="publisher_packagename"/>
</request>
<response>
<data>
<package>
<group></group>
<name>publisher_packagename</name>
<version>0.99</version>
<downloadName>publisher_package.zip</downloadName>
<size>12890709</size>
<created></created>
<createdBy>null</createdBy>
<lastModified></lastModified>
<lastModifiedBy>null</lastModifiedBy>
<lastUnpacked></lastUnpacked>
<lastUnpackedBy>null</lastUnpackedBy>
</package>
</data>
<status code="200">ok</status>
</response>
</crx>
If I take away the -u parameter of the successful curl command, I get the following response, which is the same as my "publisher" Java response:
curl -F file=@publisher_package.zip -F name=publisher_packagename http://127.0.0.1:4505/crx/packmgr/service.jsp
<crx version="2.3.15" user="anonymous" workspace="crx.default">
<request>
<param name="file" value="publisher_package.zip"/>
<param name="name" value="publisher_packagename"/>
</request>
<response>
<status code="500">javax.jcr.ItemExistsException: This node already exists: /etc/packages</status>
</response>
</crx>
So....
Does anyone know if a publish instance deals with authentication in a different way from an author instance? The Java code does not change, but the results are different depending on the type of server I'm trying to upload to. The fact that the Java "publish" upload reports back as being an anonymous user (which I replicated with the last curl call), but uses the same code as the successful (and authorised) "author" upload besides the package details and port, leads me to believe that it's the CQ5 server that is turning this into an anonymous call.
Anyone have any thoughts on what might be happening here, and the best way to solve it?
Cheers,
K
In the table plugin in RTE, I did not find "Width" and "Height" fields in the cell properties. Is there any way to configure these fields in the table plugin. We are using CQ5.4.
Hi,
CQ doesn't seem to pick up the changes in custom nodetype definitions in nodetypes.cnd when I install the package containing the updated nodetypes.cnd using Package Manager, how do I get around this?
Steps
1) fire up a fresh installation of CQ
2) In Package Manager, upload a CQ package containing custom nodetypes.cnd
3) check that the custom nodetypes are registered in Node Type Administration console
4) change nodetypes.cnd by adding a new property in a custom nodetype inside nodetypes.cnd file
5) make a new package with updated nodetypes.cnd file
6) In Package Manager, upload the new CQ package and install
7) check that the new property has been added in Node Type Administration console <-- ***FAIL***
Thanks!
Am not able to get dispatcher working on my Ubuntu machine, following is the error that I get after apache restart
Syntax error on line 2 of /etc/apache2/conf.d/dispatcher.any:
Invalid command '/farms', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.
Am using the default dispatcher.any file without any changes.
I've enabled the dispatcher module as below:
LoadModule dispatcher_module /usr/lib/apache2/modules/dispatcher-apache2.2-4.1.4.so
<IfModule disp_apache2.c>
# location of the configuration file. eg: 'conf/dispatcher.any'
DispatcherConfig conf.d/dispatcher.any
# location of the dispatcher log file. eg: 'logs/dispatcher.log'
DispatcherLog /var/log/apache2/dispatcher.log
# log level for the dispatcher log
# 0 Errors
# 1 Warnings
# 2 Infos
# 3 Debug
DispatcherLogLevel 3
# if turned to 1, the dispatcher looks like a normal module
DispatcherNoServerHeader 0
# if turned to 1, request to / are not handled by the dispatcher
# use the mod_alias then for the correct mapping
DispatcherDeclineRoot 0
# if turned to 1, the dispatcher uses the URL already processed
# by handlers preceeding the dispatcher (i.e. mod_rewrite)
# instead of the original one passed to the web server.
DispatcherUseProcessedURL 0
# if turned to 1, the dispatcher does not spool an error
# response to the client (where the status code is greater
# or equal than 400), but passes the status code to
# Apache, which e.g. allows an ErrorDocument directive
# to process such a status code.
DispatcherPassError 0
</IfModule>
Can anyone please help me out in resolving the issue?
Thanks,
-- Pawan
Dear All,
I am getting this error when am trying to install package. The package manager is not loading and in launch pad the error is
[ERROR] Request to http://localhost:4503/crx/packmgr/service.jsp failed, respons
e=Unauthorized
When I tried to execute the command,
curl -u admin:admin -F file=@publisher_package.zip -F name=publisher_pack
agename http://localhost:4503/crx/packmgr/service.jsp
The response is:
curl: (26) failed creating formpost data.
Any help would be much appreciated.
Regards
I want to install a bundle downloaded from the maven repository but when installing,
I get a blank page and then check the error log with the error message.
It is to fix this error: Exception javax.xml.ws.WebServiceException: Provider com.sun.xml.internal.ws.spi.ProviderImpl not found
But when trying to install a bundle containing the class, it gives the error below, it is for all the bundles I have tried, and it's a lot.
Version: 5.6.0.20130129, running on a windows 7 machine in author mode.
Full error message:
13.06.2013 13:12:31.597 *WARN* [127.0.0.1 [1371121951590] POST /system/console/bundles HTTP/1.1] servletengine I/O error in execution: {} java.io.IOException: Bundle-SymbolicName header missing, cannot install bundle
at org.apache.felix.webconsole.internal.core.BundlesServlet.installBundle(BundlesServlet.jav a:1628)
at org.apache.felix.webconsole.internal.core.BundlesServlet.installBundles(BundlesServlet.ja va:1573)
at org.apache.felix.webconsole.internal.core.BundlesServlet.doPost(BundlesServlet.java:310)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at org.apache.felix.webconsole.internal.servlet.OsgiManager.service(OsgiManager.java:493)
at org.apache.felix.webconsole.internal.servlet.OsgiManager.service(OsgiManager.java:418)
at org.apache.felix.http.base.internal.handler.ServletHandler.doHandle(ServletHandler.java:9 6)
at org.apache.felix.http.base.internal.handler.ServletHandler.handle(ServletHandler.java:79)
at org.apache.felix.http.base.internal.dispatch.ServletPipeline.handle(ServletPipeline.java: 42)
at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:49)
at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
at org.apache.sling.i18n.impl.I18NFilter.doFilter(I18NFilter.java:127)
at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)
at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)
at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)
at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
at org.apache.sling.security.impl.ReferrerFilter.doFilter(ReferrerFilter.java:259)
at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)
at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)
at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)
at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
at org.apache.felix.http.sslfilter.internal.SslFilter.doFilter(SslFilter.java:55)
at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)
at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)
at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)
at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
at com.adobe.granite.license.impl.LicenseCheckFilter.doFilter(LicenseCheckFilter.java:179)
at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)
at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)
at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)
at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
at org.apache.sling.engine.impl.log.RequestLoggerFilter.doFilter(RequestLoggerFilter.java:75 )
at org.apache.felix.http.base.internal.handler.FilterHandler.doHandle(FilterHandler.java:88)
at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:76)
at org.apache.felix.http.base.internal.dispatch.InvocationFilterChain.doFilter(InvocationFil terChain.java:47)
at org.apache.felix.http.base.internal.dispatch.HttpFilterChain.doFilter(HttpFilterChain.jav a:33)
at org.apache.felix.http.base.internal.dispatch.FilterPipeline.dispatch(FilterPipeline.java: 48)
at org.apache.felix.http.base.internal.dispatch.Dispatcher.dispatch(Dispatcher.java:39)
at org.apache.felix.http.base.internal.DispatcherServlet.service(DispatcherServlet.java:67)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
at com.day.j2ee.servletengine.ServletRuntimeEnvironment.service(ServletRuntimeEnvironment.ja va:250)
at com.day.j2ee.servletengine.RequestDispatcherImpl.doFilter(RequestDispatcherImpl.java:321)
at com.day.j2ee.servletengine.RequestDispatcherImpl.service(RequestDispatcherImpl.java:340)
at com.day.j2ee.servletengine.RequestDispatcherImpl.service(RequestDispatcherImpl.java:383)
at com.day.j2ee.servletengine.ServletHandlerImpl.process(ServletHandlerImpl.java:360)
at com.day.j2ee.servletengine.HttpListener$Worker.run(HttpListener.java:644)
at java.lang.Thread.run(Unknown Source)
| I get the error: "Only a type can be imported. com.adobe.cq.TestServiceImpl resolves to a package in adobe day cq5
I have created one bundle and installed in felix console. The status of the bundle is also Active. And also it is available in both service and component console.
Here is my TestServiceImpl class in com.adobe.cq bundle package com.adobe.cq; import org.apache.felix.scr.annotations.Component; import org.apache.felix.scr.annotations.Service; import org.osgi.framework.BundleContext; import org.osgi.service.component.ComponentContext; import javax.jcr.RepositoryException; import org.apache.felix.scr.annotations.Property; import org.apache.felix.scr.annotations.Properties; //src.component //declares the class component. This will provide a wrapped ManagedService component in the OSGI container. //src.service interface="SampleService" //declares the service we are offering. Actually, the interface attribute is superflous, as by default, all implemented Interfaces are used. /** @scr.component @scr.service interface="testService" */ @Component(immediate = true, metatype = true) @Service @Properties( { @Property(name = "service.description", value = "abcd"), @Property(name = "label", value = "myLabel") }) public class TestServiceImpl implements TestService { public String sayHello() { return "Hello World!"; } } |
Here is my jsp code
<%@include file="/libs/foundation/global.jsp"%><%
%><%@include file="/apps/mine/includes/functions.jsp"%><%
%><%@ page import="com.adobe.cq.TestServiceImpl,
org.apache.sling.api.SlingHttpServletRequest,
java.util.List"%><%
%><%
SlingHttpServletRequest r = (SlingHttpServletRequest)request;
TestServiceImpl testService = sling.getService(TestServiceImpl.class);
out.println("testService:::"+testService);
%>
<div id="te-nav" style="display:block !important;">
</div>
Is it because of am using annotation in TestServiceImpl class?
Could you please tell me how to fix it?
Regards,
Anderson
Hello Everyone,
I'm trying to run CQ 5.6.1 as a service on Windows Server 2008 R2 SP1 64-bit.
I've replaced prunsrv in instsrv.bat with prunsrv_amd64.
Installing the service seems fine, as does uninstalling.
This is the kind of entry I see in my c:\CQ\5.6.1\publish\crx-quickstart\logs\commons-daemon.2013-07-11.log file after I try start the service:
[2013-07-11 15:45:10] [info] Commons Daemon procrun (1.0.8.0 64-bit) started
[2013-07-11 15:45:10] [info] Running 'cq5' Service...
[2013-07-11 15:45:10] [info] Starting service...
[2013-07-11 15:45:10] [error] Failed creating java
[2013-07-11 15:45:10] [error] Cannot create a file when that file already exists.
[2013-07-11 15:45:10] [error] ServiceStart returned 1
[2013-07-11 15:45:10] [error] Cannot create a file when that file already exists.
[2013-07-11 15:45:10] [info] Run service finished.
[2013-07-11 15:45:10] [info] Commons Daemon procrun finished
The corresponding entry in the Event Log shows the following:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
<EventID Qualifiers="49152">7024</EventID>
<Version>0</Version>
<Level>2</Level>
<Task>0</Task>
<Opcode>0</Opcode>
<Keywords>0x8080000000000000</Keywords>
<TimeCreated SystemTime="2013-07-11T19:45:10.423634500Z" />
<EventRecordID>7164</EventRecordID>
<Correlation />
<Execution ProcessID="516" ThreadID="1356" />
<Channel>System</Channel>
<Computer>cqpub-02</Computer>
<Security />
</System>
<EventData>
<Data Name="param1">cq5</Data>
<Data Name="param2">%%0</Data>
</EventData>
</Event>
This same behavior is exhibited across three separate servers each with their own installation of CQ (one as an author and two as publish).
Any ideas what could be going wrong or where I can find more detailed information about where and what is trying to create a "java" file? Is the start-service.bat used at all?
Thanks!
Garth
Just restored a backup of a CQ5.5 staging server to a new Amazon EC2 instance in order to allow some people outside of the company shared access to what we are working on. CQ5 appears to be running correctly for the author and publish instances; I can see our site.
But the dispatcher in Apache is having trouble caching files, it seems. Apache can serve the URLs requested of it, but it fails to cache any of them, so that every requested is actually being serviced by the publish instance through the dispatcher. This is the dispatcher log showing the problem:
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Found farm pmlpublic for ec2-174-129-90-184.compute-1.amazonaws.com
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] checking [/content/public/individuals-families/financial-life/planning-strategies.html]
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] no cache due to authorization header.
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] cache-action for [/content/public/individuals-families/financial-life/planning-strategies.html]: NONE
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] connected to render rend01 (localhost:4503)
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: Host
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: Cache-Control
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: User-Agent
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: Accept
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: Referer
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: Accept-Encoding
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: Accept-Language
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: Accept-Charset
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: Cookie
[Thu Oct 11 17:58:58 2012] [D] [820(139934505617152)] Spooling header: Via
[Thu Oct 11 17:58:59 2012] [D] [820(139934505617152)] Detected: chunked transfer encoding
[Thu Oct 11 17:58:59 2012] [D] [820(139934505617152)] response.status = 200
[Thu Oct 11 17:58:59 2012] [D] [820(139934505617152)] response.headers[Server] = "Day-Servlet-Engine/4.1.24 "
[Thu Oct 11 17:58:59 2012] [D] [820(139934505617152)] response.headers[Content-Type] = "text/html;charset=UTF-8"
[Thu Oct 11 17:58:59 2012] [D] [820(139934505617152)] response.headers[Date] = "Thu, 11 Oct 2012 17:58:59 GMT"
[Thu Oct 11 17:58:59 2012] [D] [820(139934505617152)] response.headers[Set-Cookie] = "JSESSIONID=e4bb6232-7726-4258-a724-f111ccf0eed9; Path=/; HttpOnly"
[Thu Oct 11 17:58:59 2012] [D] [820(139934505617152)] send http headers
[Thu Oct 11 17:58:59 2012] [D] [820(139934505617152)] Content length: -1, written: 54000
[Thu Oct 11 17:58:59 2012] [I] [820(139934505617152)] "GET /content/public/individuals-families/financial-life/planning-strategies.html" 200 53979 330ms
That "cache-action: NONE" is the issue.
I've checked permissions in the cache directory, and they match those of our staging servers - best I can tell. But nothing ever gets written to disk for caching.
I'm guessing that I am missing something obvious, and my gut tells me I've dealth with this before, but I just can't get it going. Any ideas?
We have our public website that runs on CQ5.5. We want to do Akamai integration for the published content.
1. How is Akamai integration done in CQ5.5?
2. We want to akamai both the content and dam assets. Is the akamai integration different with content versus assets?
3. With content, the content on site is frequently updated and activated. That would invalidate the dispatcher cache everytime the change happen. How does Akamai rebuild its cache everytime the dispatcher cache is invalidated?
Hello,
We would like to change the session timeout value for the Author server so that if an Author doesn't do anything for 30 minutes the CQ session expires. Seems the default is several hours.
I have implemented the steps for creating Login page and Registration page in CQ5 , same as created in geometrix website. How ever `after entering details in the registration form i am not able to see my user /details in the user group in CRX (i.e./home/user). I have defined the properties like hidden fields as in geoimetrix, but not able to login or see user details in view details page.
Please tell me if i need to configure any properties any where else.
I have reffered the follwing document:-
http://wem.help.adobe.com/enterprise/en_US/10-0/wem/administering/identity_management.html
I may be trying something incorrect in OSGi terms, so if I am, please tell me. I'm trying to create a generic "IPlugin" interface that will likely have multiple implementation classes, all as separate OSGi services. In another service, PluginManager, I want to be able to retrieve all active instances of IPlugin (regardless of implementation class) so that I can loop through and call the one method on that interface for each one. The goal is to set up a framework wherby I can just add/remove services that implement IPlugin as I see fit and as requirements evolve.
I'm struggling to figure out how to do this. Should I be using the @Reference annotation somehow? If not, should I be using the ComponentContext of PluginManager to retrieve the services manually somehow? I feel like I'm missing something here. I wondered if anyone had some advice or has implemented something like this before using Apache Felix. Thanks in advance!
P.S.
I'm not doing this on a huge scale. For the purpose of this discussion I used very generic class/interface names. This is not something I'm trying to use as some central, global plugin controller for an entire app. That would probably not be a good thing. Just thought I'd throw that in there, in case anyone considered that a concern.
Hello,
I'm trying to run the sample from the "Writing an Application Connecting to a Remote JCR"-page (see http://dev.day.com/docs/en/crx/current/developing/accessing_jcr_connectors.html#A%2520Shor t%2520introduction%2520to%2520JCR%2520development) but still fail.
The only relevant difference to the sample in this page is, that I'm using http-access insead of rmi.
I thought the page might be a good starting point to get familiar to get some knowledge to access CRX. But I'm no longer sure about this. This is the second problem with my third statement trying to connect to CQ5. I probably missed something fundamental. Can you give a hint or a curriculum how to start to get some knowledge how to access crx with java?
But anyway to go further, I need ot know whats wrong with my program:
private void connectJcrUtils2() throws Exception { System.out.println("Start"); //Create a connection to the Day CQ repository running on local host Repository repository = org.apache.jackrabbit.commons.JcrUtils.getRepository("http://localhost:4502/crx/server"); //Create a Session instance char[] password="admin".toCharArray(); Credentials cred= new SimpleCredentials("admin", password); Session session = repository.login(cred); System.out.println("Done"); System.out.println("Workspace: " + session.getWorkspace().getName() + "\n"); Node node = session.getRootNode(); // Line 50 - see error messages below listChildren( "", session.getRootNode() ); } private static void listChildren(String indent, Node node ) throws RepositoryException { System.out.println("-->" + indent + node.getName()); NodeIterator ni = node.getNodes(); while(ni.hasNext()) { listChildren(indent+" ", ni.nextNode()); }
Start
Done
Workspace: crx.default
Exception in thread "main" java.lang.AbstractMethodError: org.apache.jackrabbit.spi2davex.RepositoryServiceImpl.getItemInfos(Lorg/apache/jackrabbit /spi/SessionInfo;Lorg/apache/jackrabbit/spi/NodeId;)Ljava/util/Iterator;
at org.apache.jackrabbit.jcr2spi.state.WorkspaceItemStateFactory.createNodeState(WorkspaceIt emStateFactory.java:93)
at org.apache.jackrabbit.jcr2spi.state.TransientISFactory.createNodeState(TransientISFactory .java:97)
at org.apache.jackrabbit.jcr2spi.hierarchy.NodeEntryImpl.doResolve(NodeEntryImpl.java:990)
at org.apache.jackrabbit.jcr2spi.hierarchy.HierarchyEntryImpl.resolve(HierarchyEntryImpl.jav a:133)
at org.apache.jackrabbit.jcr2spi.hierarchy.HierarchyEntryImpl.getItemState(HierarchyEntryImp l.java:252)
at org.apache.jackrabbit.jcr2spi.hierarchy.NodeEntryImpl.getItemState(NodeEntryImpl.java:71)
at org.apache.jackrabbit.jcr2spi.ItemManagerImpl.getItem(ItemManagerImpl.java:199)
at org.apache.jackrabbit.jcr2spi.SessionImpl.getRootNode(SessionImpl.java:233)
at AccessJCR.connectJcrUtils2(AccessJCR.java:50)
at AccessJCR.main(AccessJCR.java:9)
regards,
Ulrich
Hi ,
I want to retrieve data from an external excel sheet to populate a drop down..how can i proceed?
Hi,
As described in the title I'd like to send formatted xml to given url after replication process. I see that there are 3 types of serialization by default (Default, Dispatcher Flush and Static Content Builder). How can I provide my own Serialization Type to build xml file in the requested format with requested data?
BR,
Pawos
Hi,
I am very new to CQ5 and have a query regarding it. Suppose I want to make a simple login form where I am two text fields.. I want to perform some validations on these text fields and want to redirect to some aonther jsp/html. How to achieve this small requirement in cq5.
Please explain the process in detail as I am very new to the env and doing some hands on the env.
Thanks.,