jcr-xpath 'Unknown Query Language'

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2010 09:11 AM
I have a webscript that's using seach.query:
And when I run it, I get this error:
I am using Enterprise - v3.2.0 (304). Why isn't this working. The query works in the node browser when I select "selectnodes" as the language. How do I enable jcr-xpath so that I can query for attributes?
var def = { query: "*//.[@wca:parentformname='formname']", store: "avm://" + args.storeid, language: "jcr-xpath" }; var results = search.query(def);
And when I run it, I get this error:
Exception: org.alfresco.repo.search.SearcherException - Unknown query language: jcr-xpath org.alfresco.repo.search.impl.lucene.ADMLuceneSearcherImpl.query(ADMLuceneSearcherImpl.java:500)org.alfresco.repo.search.SearcherComponent.query(SearcherComponent.java:84)sun.reflect.GeneratedMethodAccessor839.invoke(Unknown Source)sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)java.lang.reflect.Method.invoke(Method.java:597)org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:304)org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)net.sf.acegisecurity.intercept.method.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:80)org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)org.alfresco.repo.security.permissions.impl.ExceptionTranslatorMethodInterceptor.invoke(ExceptionTranslatorMethodInterceptor.java:49)org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)org.alfresco.repo.audit.AuditMethodInterceptor.invoke(AuditMethodInterceptor.java:148)org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)$Proxy24.query(Unknown Source)org.alfresco.repo.jscript.Search.query(Search.java:700)
I am using Enterprise - v3.2.0 (304). Why isn't this working. The query works in the node browser when I select "selectnodes" as the language. How do I enable jcr-xpath so that I can query for attributes?
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2010 11:45 AM
Hello,
I have the same issue using Alfresco Community v3.3.0 (g 2860).
That is what I'm trying inside a web script:
That's the stack trace I get:
Is this a bug?
The feature is working in principle via Node Browser. Furthermore its described in the Wiki (http://wiki.alfresco.com/wiki/Search_Documentation#XPath_search_using_the_node_service).
I have the same issue using Alfresco Community v3.3.0 (g 2860).
That is what I'm trying inside a web script:
// xpath query examplevar searchStr3 = { query: "//*[@cm:name='sample-file-a.txt']", language: "jcr-xpath"}var xpathSearchNodes = search.query(searchStr3);logger.log("xpath query found " + xpathSearchNodes.length + " node(s)");model.xpathResult = xpathSearchNodes;
That's the stack trace I get:
Caused by: org.alfresco.error.AlfrescoRuntimeException: 07030274 Failed to execute search: //*[@cm:name='sample-file-a.txt'] at org.alfresco.repo.jscript.Search.query(Search.java:758) at org.alfresco.repo.jscript.Search.query(Search.java:628) at sun.reflect.GeneratedMethodAccessor1089.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.mozilla.javascript.MemberBox.invoke(MemberBox.java:155) at org.mozilla.javascript.NativeJavaMethod.call(NativeJavaMethod.java:243) at org.mozilla.javascript.optimizer.OptRuntime.call1(OptRuntime.java:66) at org.mozilla.javascript.gen.c98._c0(workspace://SpacesStore/Company Home/Data Dictionary/Web Scripts Extensions/search.get.js:23) at org.mozilla.javascript.gen.c98.call(workspace://SpacesStore/Company Home/Data Dictionary/Web Scripts Extensions/search.get.js) at org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:393) at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:2834) at org.mozilla.javascript.gen.c98.call(workspace://SpacesStore/Company Home/Data Dictionary/Web Scripts Extensions/search.get.js) at org.mozilla.javascript.gen.c98.exec(workspace://SpacesStore/Company Home/Data Dictionary/Web Scripts Extensions/search.get.js) at org.alfresco.repo.jscript.RhinoScriptProcessor.executeScriptImpl(RhinoScriptProcessor.java:453) at org.alfresco.repo.jscript.RhinoScriptProcessor.execute(RhinoScriptProcessor.java:179) … 25 moreCaused by: org.alfresco.repo.search.SearcherException: Unknown query language: jcr-xpath at org.alfresco.repo.search.impl.lucene.ADMLuceneSearcherImpl.query(ADMLuceneSearcherImpl.java:489) …
Is this a bug?
The feature is working in principle via Node Browser. Furthermore its described in the Wiki (http://wiki.alfresco.com/wiki/Search_Documentation#XPath_search_using_the_node_service).
