Re: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment

2015-03-26 Thread Indrajeet Verma
Hi Abhishek,

For me, I created a below role and its working without any problem.
Modified default.properties/local.properties accordingly. We used to do
daily deployment and have no issues so far. Can you try it and see if this
helps.

local.properties

app-role=XYZ-Role

ML Security

alert-user

Executive compartment,

any-collectionany-uri

xdmp:valuexdmp:with-namespaces
xdmp:invokexdmp:invoke-in
xdmp:xslt-invoke


*role name (capability)*[Keep]XYZ-Role (read)XYZ-Role (insert)XYZ-Role
(update)XYZ-Role (execute)


On Fri, Mar 27, 2015 at 6:12 AM,  wrote:

>  Hi Geert,
>
>  Its just xQuery file deployment using Roxy, Following privilege has been
> give to the role deploying xquery files [app-role in Roxy properties file]
>
>  Inherited Role:
> manage-user, rest-admin
>
>  Executive privilege:
> unprotected-uri, unprotected-collections, xdmp-invoke, xslt-eval,
> xdmp-value
>
>  Looks like update permission of the xQuery file is causing locking since
> first time insert is working fine - but not sure about that.
>
>  Thanks
> Abhishek
>
>  --
> *From:* general-boun...@developer.marklogic.com [
> general-boun...@developer.marklogic.com] on behalf of Geert Josten [
> geert.jos...@marklogic.com]
> *Sent:* Thursday, March 26, 2015 4:02 AM
> *To:* MarkLogic Developer Discussion
> *Subject:* Re: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment
>
>   Hi Abhishek,
>
>  Bootstrap uses admin: and sec: functions. Those require a whole bunch of
> privs. I am kind of guessing that you are referring to deploying modules
> and content though. That should only require the priv to run through xcc,
> and permission to insert in the given uri/collection. The XDMP-LOCKED
> surprises me a bit, since I am unaware of Roxy acquiring locks explicitly
> itself.
>
>  Can you confirm whether it concerned bootstrap of deploy modules, and
> can you also give more details about the no-admin user? Did you assign
> privs/roles?
>
>  Kind regards,
> Geert
>
>   From: "abhishek.srivas...@cognizant.com" <
> abhishek.srivas...@cognizant.com>
> Reply-To: MarkLogic Developer Discussion 
> Date: Thursday, March 26, 2015 at 1:14 AM
> To: "general@developer.marklogic.com" 
> Subject: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment
>
>   Hi All,
>
>
>
> I am doing Roxy deployment using no-admin user. First time deployment of
> XQuery files went well but next successive deployment is throwing
> XDMP-LOCKED Document or directory is locked exception.
>
>
>
> Not sure If I am missing any special privilege or permission to deployer
> role.
>
>
>
> Thanks
>
> Abhishek
>  This e-mail and any files transmitted with it are for the sole use of the
> intended recipient(s) and may contain confidential and privileged
> information. If you are not the intended recipient(s), please reply to the
> sender and destroy all copies of the original message. Any unauthorized
> review, use, disclosure, dissemination, forwarding, printing or copying of
> this email, and/or any action taken in reliance on the contents of this
> e-mail is strictly prohibited and may be unlawful. Where permitted by
> applicable law, this e-mail and other e-mail communications sent to and
> from Cognizant e-mail addresses may be monitored.
>This e-mail and any files transmitted with it are for the sole use of
> the intended recipient(s) and may contain confidential and privileged
> information. If you are not the intended recipient(s), please reply to the
> sender and destroy all copies of the original message. Any unauthorized
> review, use, disclosure, dissemination, forwarding, printing or copying of
> this email, and/or any action taken in reliance on the contents of this
> e-mail is strictly prohibited and may be unlawful. Where permitted by
> applicable law, this e-mail and other e-mail communications sent to and
> from Cognizant e-mail addresses may be monitored.
>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment

2015-03-26 Thread Christopher Hamlin
On Thu, Mar 26, 2015 at 8:42 PM,   wrote:
> Hi Geert,
>
> Its just xQuery file deployment using Roxy, Following privilege has been
> give to the role deploying xquery files [app-role in Roxy properties file]
>
> Inherited Role:
> manage-user, rest-admin
>
> Executive privilege:
> unprotected-uri, unprotected-collections, xdmp-invoke, xslt-eval, xdmp-value
>
> Looks like update permission of the xQuery file is causing locking since
> first time insert is working fine - but not sure about that.
>
>

Not sure this is an 'ordinary' lock.  See, for example, the discussion
for xdmp:lock-acquire.

Maybe you can find out more with xdmp:document-locks?

-ch
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Converting MS Office documents

2015-03-26 Thread Javier Lizarraga
Thank you.

-Original Message-
From: general-boun...@developer.marklogic.com 
[mailto:general-boun...@developer.marklogic.com] On Behalf Of Christopher Hamlin
Sent: Thursday, March 26, 2015 5:09 PM
To: MarkLogic Developer Discussion
Subject: Re: [MarkLogic Dev General] Converting MS Office documents

Hi,

If you want to work with the parts directly you can just open up the zip file 
and get the parts directly.  For example (in xquery):

let $doc := xdmp:document-get ('/Users/chamlin/Desktop/Book1.xlsx')
return xdmp:zip-manifest ($doc)

shows what is in the zip.  You can use xdmp:zip-get to get at the parts.

-ch
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment

2015-03-26 Thread Abhishek.Srivastav
Hi Geert,

Its just xQuery file deployment using Roxy, Following privilege has been give 
to the role deploying xquery files [app-role in Roxy properties file]

Inherited Role:
manage-user, rest-admin

Executive privilege:
unprotected-uri, unprotected-collections, xdmp-invoke, xslt-eval, xdmp-value

Looks like update permission of the xQuery file is causing locking since first 
time insert is working fine - but not sure about that.

Thanks
Abhishek


From: general-boun...@developer.marklogic.com 
[general-boun...@developer.marklogic.com] on behalf of Geert Josten 
[geert.jos...@marklogic.com]
Sent: Thursday, March 26, 2015 4:02 AM
To: MarkLogic Developer Discussion
Subject: Re: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment

Hi Abhishek,

Bootstrap uses admin: and sec: functions. Those require a whole bunch of privs. 
I am kind of guessing that you are referring to deploying modules and content 
though. That should only require the priv to run through xcc, and permission to 
insert in the given uri/collection. The XDMP-LOCKED surprises me a bit, since I 
am unaware of Roxy acquiring locks explicitly itself.

Can you confirm whether it concerned bootstrap of deploy modules, and can you 
also give more details about the no-admin user? Did you assign privs/roles?

Kind regards,
Geert

From: 
"abhishek.srivas...@cognizant.com" 
mailto:abhishek.srivas...@cognizant.com>>
Reply-To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Date: Thursday, March 26, 2015 at 1:14 AM
To: "general@developer.marklogic.com" 
mailto:general@developer.marklogic.com>>
Subject: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment


Hi All,



I am doing Roxy deployment using no-admin user. First time deployment of XQuery 
files went well but next successive deployment is throwing XDMP-LOCKED Document 
or directory is locked exception.



Not sure If I am missing any special privilege or permission to deployer role.



Thanks

Abhishek

This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.
This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Converting MS Office documents

2015-03-26 Thread Christopher Hamlin
Hi,

If you want to work with the parts directly you can just open up the
zip file and get the parts directly.  For example (in xquery):

let $doc := xdmp:document-get ('/Users/chamlin/Desktop/Book1.xlsx')
return xdmp:zip-manifest ($doc)

shows what is in the zip.  You can use xdmp:zip-get to get at the parts.

-ch
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


[MarkLogic Dev General] Converting MS Office documents

2015-03-26 Thread Javier Lizarraga
Hello Developers,

I want to load an MS excel file with filename.xlsx into a MarkLogic database 
(using ML8).  I want to be able to access the contents of the MS excel document.
I enabled the triggers for the database and installed  and enabled the Content 
Processing.  I followed the ML document below:
http://docs.marklogic.com/guide/cpf/default#

Loaded:
declareUpdate();
xdmp.documentLoad("C:\\Users\\jlizarraga\\Documents\\UtilizationReport.xlsx",
{
  "uri" : "/myDoc/UtilizationReport.xlsx",
  "permissions" : xdmp.defaultPermissions()
})

When I load my UtilizationReport.xlsx file I can see the associated properties 
in Query Console:

http://marklogic.com/xdmp/property";>
  http://marklogic.com/cpf";>done
  http://marklogic.com/cpf";>d41d8cd98f00b204e9800998ecf8427e
  http://marklogic.com/cpf";>2015-03-26T16:24:16-07:00
  http://marklogic.com/cpf";>http://marklogic.com/states/converted
  http://marklogic.com/cpf";>/myDoc/UtilizationReport.xlsx


It appears to me that it was successful but I do not see any other associated 
documents besides the UtilizationReport.xlsx file reference.

I was expecting to see:
UtilizationReport.xlsx  (Original Document)
UtilizationReport_xlsx.xml
UtilizationReport_xlsx.xhtml
A Directory called UtilizationReport_xlsx_Parts

I don't see any errors.  Any help would be greatly appreciated.

Thanks,

Javier
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread Dave Cassel
I'm not sure why you got an error (I'll look into that), but in the meantime 
I've manually unsubscribed you.

--
Dave Cassel
Developer Community Manager
MarkLogic Corporation
MarkLogic World - San Francisco April 13 - 
17


From: norman817 mailto:norman...@gmail.com>>
Reply-To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Date: Thursday, March 26, 2015 at 10:40 AM
To: Florent Georges mailto:li...@fgeorges.org>>, MarkLogic 
Developer Discussion 
mailto:general@developer.marklogic.com>>
Subject: Re: [MarkLogic Dev General] Additional XQuery libraries

I have followed the link the at the bottom of the email. When I click 
unsubscribe, it gives me an error. This is the thrid time I've tried to do 
this.  What do you expect  from me.


 Original message 
From: Florent Georges mailto:li...@fgeorges.org>>
Date:26/03/2015 8:56 AM (GMT-06:00)
To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>, 
norman...@gmail.com
Subject: Re: [MarkLogic Dev General] Additional XQuery libraries

Please click on the link at the bottom of every email sent to the list (like 
this one).  Follow the Mailman instructions to unsubscribe.

On 26 March 2015 at 14:27, norman817 wrote:
Stop emailing me


 Original message 
From: Alex Jouravlev 
mailto:al...@businessabstraction.com>>
Date:25/03/2015 10:11 PM (GMT-06:00)
To: MarkLogic Developer Discussion 
mailto:General@developer.marklogic.com>>
Subject: [MarkLogic Dev General] Additional XQuery libraries

Hi Everyone,

What additional XQuery libraries - other than supplied with MarkLogic - you 
found useful?

Alex Jouravlev
Director, Business Abstraction Pty Ltd
Phone:   +61-(2)-8003-4830
Mobile: +61-4-0408-3258
Web: http://www.businessabstraction.com
LinkedIn: http://au.linkedin.com/in/alexjouravlev/



___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general

--

Florent Georges
http://fgeorges.org/
http://h2oconsulting.be/

___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread Gene Thomas
Thanks Chris.
 Gene
 


 On Thursday, March 26, 2015 7:47 AM, Chris Hamlin 
 wrote:
   

 On 03-26, 10:44 , "Gene Thomas"  wrote:

Then just set your email program to automatically delete email from this 
list.Then send supp...@marklogic.com an email telling them about the error.
 Gene




Or, to the email at the bottom of the list admin page:  
general-ow...@developer.marklogic.com



  ___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread Chris Hamlin
On 03-26, 10:44 , "Gene Thomas" mailto:thomg...@att.net>> 
wrote:

Then just set your email program to automatically delete email from this list.
Then send supp...@marklogic.com an email telling 
them about the error.

Gene




Or, to the email at the bottom of the list admin page:  
general-ow...@developer.marklogic.com


___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread Florent Georges
There is an email address at the bottom of that page (after "run by"). They
will help you.
On 26 Mar 2015 15:41, "norman817"  wrote:

> I have followed the link the at the bottom of the email. When I click
> unsubscribe, it gives me an error. This is the thrid time I've tried to do
> this.  What do you expect  from me.
>
>
>  Original message 
> From: Florent Georges 
> Date:26/03/2015 8:56 AM (GMT-06:00)
> To: MarkLogic Developer Discussion ,
> norman...@gmail.com
> Subject: Re: [MarkLogic Dev General] Additional XQuery libraries
>
> Please click on the link at the bottom of every email sent to the list
> (like this one).  Follow the Mailman instructions to unsubscribe.
>
> On 26 March 2015 at 14:27, norman817 wrote:
>
>> Stop emailing me
>>
>>
>>  Original message 
>> From: Alex Jouravlev 
>> Date:25/03/2015 10:11 PM (GMT-06:00)
>> To: MarkLogic Developer Discussion 
>> Subject: [MarkLogic Dev General] Additional XQuery libraries
>>
>> Hi Everyone,
>>
>> What additional XQuery libraries - other than supplied with MarkLogic -
>> you found useful?
>>
>> Alex Jouravlev
>> Director, Business Abstraction Pty Ltd
>> Phone:   +61-(2)-8003-4830
>> Mobile: +61-4-0408-3258
>> Web: http://www.businessabstraction.com
>> LinkedIn: http://au.linkedin.com/in/alexjouravlev/
>>
>> ___
>> General mailing list
>> General@developer.marklogic.com
>> http://developer.marklogic.com/mailman/listinfo/general
>>
>> --
>> 
>> Florent Georges
>> 
>> http://fgeorges.org/
>> http://h2oconsulting.be/
>>
>>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread David Ennis
There is is a comminity driven, open mailing list that you are aparently
subscribed to..

No one ion particular  is mailing you.. NO one is trying to spam you or
keep you on the list.. Florent and others were just trying to assist you...

The link seems to work just fine..

http://developer.marklogic.com/mailman/listinfo/general






Kind Regards,
David Ennis


David Ennis
*Content Engineer*

[image: HintTech]  
Mastering the value of content
creative | technology | content

Delftechpark 37i
2628 XJ Delft
The Netherlands
T: +31 88 268 25 00
M: +31 63 091 72 80

[image: http://www.hinttech.com] 
  


On 26 March 2015 at 15:40, norman817  wrote:

> I have followed the link the at the bottom of the email. When I click
> unsubscribe, it gives me an error. This is the thrid time I've tried to do
> this.  What do you expect  from me.
>
>
>  Original message 
> From: Florent Georges 
> Date:26/03/2015 8:56 AM (GMT-06:00)
> To: MarkLogic Developer Discussion ,
> norman...@gmail.com
> Subject: Re: [MarkLogic Dev General] Additional XQuery libraries
>
> Please click on the link at the bottom of every email sent to the list
> (like this one).  Follow the Mailman instructions to unsubscribe.
>
> On 26 March 2015 at 14:27, norman817 wrote:
>
>> Stop emailing me
>>
>>
>>  Original message 
>> From: Alex Jouravlev 
>> Date:25/03/2015 10:11 PM (GMT-06:00)
>> To: MarkLogic Developer Discussion 
>> Subject: [MarkLogic Dev General] Additional XQuery libraries
>>
>> Hi Everyone,
>>
>> What additional XQuery libraries - other than supplied with MarkLogic -
>> you found useful?
>>
>> Alex Jouravlev
>> Director, Business Abstraction Pty Ltd
>> Phone:   +61-(2)-8003-4830
>> Mobile: +61-4-0408-3258
>> Web: http://www.businessabstraction.com
>> LinkedIn: http://au.linkedin.com/in/alexjouravlev/
>>
>> ___
>> General mailing list
>> General@developer.marklogic.com
>> http://developer.marklogic.com/mailman/listinfo/general
>>
>> --
>> 
>> Florent Georges
>> 
>> http://fgeorges.org/
>> http://h2oconsulting.be/
>>
>>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread Gene Thomas
Then just set your email program to automatically delete email from this 
list.Then send supp...@marklogic.com an email telling them about the error.
 Gene
 


 On Thursday, March 26, 2015 7:41 AM, norman817  wrote:
   

 I have followed the link the at the bottom of the email. When I click 
unsubscribe, it gives me an error. This is the thrid time I've tried to do 
this.  What do you expect  from me.

 Original message 
From: Florent Georges  
Date:26/03/2015 8:56 AM (GMT-06:00) 
To: MarkLogic Developer Discussion , 
norman...@gmail.com 
Subject: Re: [MarkLogic Dev General] Additional XQuery libraries 

Please click on the link at the bottom of every email sent to the list (like 
this one).  Follow the Mailman instructions to unsubscribe.

On 26 March 2015 at 14:27, norman817 wrote:

Stop emailing me 

 Original message 
From: Alex Jouravlev  
Date:25/03/2015 10:11 PM (GMT-06:00) 
To: MarkLogic Developer Discussion  
Subject: [MarkLogic Dev General] Additional XQuery libraries 

Hi Everyone,
What additional XQuery libraries - other than supplied with MarkLogic - you 
found useful?
Alex Jouravlev
Director, Business Abstraction PtyLtd 
Phone:       +61-(2)-8003-4830
Mobile:     +61-4-0408-3258
Web: http://www.businessabstraction.com
LinkedIn: http://au.linkedin.com/in/alexjouravlev/

___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general

-- 
Florent Georges
http://fgeorges.org/
http://h2oconsulting.be/



___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


  ___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread norman817
I have followed the link the at the bottom of the email. When I click 
unsubscribe, it gives me an error. This is the thrid time I've tried to do 
this.  What do you expect  from me.


 Original message 
From: Florent Georges  
Date:26/03/2015  8:56 AM  (GMT-06:00) 
To: MarkLogic Developer Discussion , 
norman...@gmail.com 
Subject: Re: [MarkLogic Dev General] Additional XQuery libraries 

Please click on the link at the bottom of every email sent to the list (like 
this one).  Follow the Mailman instructions to unsubscribe.

On 26 March 2015 at 14:27, norman817 wrote:
Stop emailing me 


 Original message 
From: Alex Jouravlev  
Date:25/03/2015 10:11 PM (GMT-06:00) 
To: MarkLogic Developer Discussion  
Subject: [MarkLogic Dev General] Additional XQuery libraries 

Hi Everyone,

What additional XQuery libraries - other than supplied with MarkLogic - you 
found useful?
Alex Jouravlev
Director, Business Abstraction Pty Ltd 
Phone:   +61-(2)-8003-4830
Mobile: +61-4-0408-3258
Web: http://www.businessabstraction.com
LinkedIn: http://au.linkedin.com/in/alexjouravlev/



___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general

-- 
Florent Georges
http://fgeorges.org/
http://h2oconsulting.be/

___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread Florent Georges
  Hi,

  In addition to what others have said, you can have a look (and contribute
yourself if you want) at http://cxan.org/.  CXAN is not MarkLogic-specific.

  If you find anything interesting which is not there, please let us know.

  Regards,

-- 
Florent Georges
http://fgeorges.org/
http://h2oconsulting.be/


On 26 March 2015 at 04:11, Alex Jouravlev wrote:

> Hi Everyone,
>
> What additional XQuery libraries - other than supplied with MarkLogic -
> you found useful?
>
> Alex Jouravlev
> Director, Business Abstraction Pty Ltd
> Phone:   +61-(2)-8003-4830
> Mobile: +61-4-0408-3258
> Web: http://www.businessabstraction.com
> LinkedIn: http://au.linkedin.com/in/alexjouravlev/
>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread Florent Georges
Please click on the link at the bottom of every email sent to the list
(like this one).  Follow the Mailman instructions to unsubscribe.

On 26 March 2015 at 14:27, norman817 wrote:

> Stop emailing me
>
>
>  Original message 
> From: Alex Jouravlev 
> Date:25/03/2015 10:11 PM (GMT-06:00)
> To: MarkLogic Developer Discussion 
> Subject: [MarkLogic Dev General] Additional XQuery libraries
>
> Hi Everyone,
>
> What additional XQuery libraries - other than supplied with MarkLogic -
> you found useful?
>
> Alex Jouravlev
> Director, Business Abstraction Pty Ltd
> Phone:   +61-(2)-8003-4830
> Mobile: +61-4-0408-3258
> Web: http://www.businessabstraction.com
> LinkedIn: http://au.linkedin.com/in/alexjouravlev/
>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
> --
> 
> Florent Georges
> 
> http://fgeorges.org/
> http://h2oconsulting.be/
>
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread norman817
Stop emailing me 


 Original message 
From: Alex Jouravlev  
Date:25/03/2015  10:11 PM  (GMT-06:00) 
To: MarkLogic Developer Discussion  
Subject: [MarkLogic Dev General] Additional XQuery libraries 

Hi Everyone,

What additional XQuery libraries - other than supplied with MarkLogic - you 
found useful?
Alex Jouravlev
Director, Business Abstraction Pty Ltd 
Phone:   +61-(2)-8003-4830
Mobile: +61-4-0408-3258
Web: http://www.businessabstraction.com
LinkedIn: http://au.linkedin.com/in/alexjouravlev/

___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread norman817
Remove me from this email list! No one cares. 


 Original message 
From: Indrajeet Verma  
Date:26/03/2015  2:36 AM  (GMT-06:00) 
To: MarkLogic Developer Discussion  
Subject: Re: [MarkLogic Dev General] Additional XQuery libraries 

Alex - See if this helps to learn,

http://www.xqueryhacker.com/2013/08/25/xquery-marklogic-learning-resources.html

http://www.xquerycoder.com/?view=sidebar


On Thu, Mar 26, 2015 at 11:13 AM, David Lee  wrote:
That's a very open ended question ... what kinds of functionality or tools are 
you looking for ?

A good start is the community page

https://developer.marklogic.com/

 

 

-

David Lee
Lead Engineer
MarkLogic Corporation
d...@marklogic.com
Phone: +1 812-482-5224

Cell:  +1 812-630-7622
www.marklogic.com

 

From: general-boun...@developer.marklogic.com 
[mailto:general-boun...@developer.marklogic.com] On Behalf Of Alex Jouravlev
Sent: Wednesday, March 25, 2015 11:11 PM
To: MarkLogic Developer Discussion
Subject: [MarkLogic Dev General] Additional XQuery libraries

 

Hi Everyone,

 

What additional XQuery libraries - other than supplied with MarkLogic - you 
found useful?

Alex Jouravlev
Director, Business Abstraction Pty Ltd 
Phone:   +61-(2)-8003-4830
Mobile: +61-4-0408-3258
Web: http://www.businessabstraction.com
LinkedIn: http://au.linkedin.com/in/alexjouravlev/




___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment

2015-03-26 Thread Geert Josten
Hi Abhishek,

Bootstrap uses admin: and sec: functions. Those require a whole bunch of privs. 
I am kind of guessing that you are referring to deploying modules and content 
though. That should only require the priv to run through xcc, and permission to 
insert in the given uri/collection. The XDMP-LOCKED surprises me a bit, since I 
am unaware of Roxy acquiring locks explicitly itself.

Can you confirm whether it concerned bootstrap of deploy modules, and can you 
also give more details about the no-admin user? Did you assign privs/roles?

Kind regards,
Geert

From: 
"abhishek.srivas...@cognizant.com" 
mailto:abhishek.srivas...@cognizant.com>>
Reply-To: MarkLogic Developer Discussion 
mailto:general@developer.marklogic.com>>
Date: Thursday, March 26, 2015 at 1:14 AM
To: "general@developer.marklogic.com" 
mailto:general@developer.marklogic.com>>
Subject: [MarkLogic Dev General] XDMP-LOCKED Roxy Deployment


Hi All,



I am doing Roxy deployment using no-admin user. First time deployment of XQuery 
files went well but next successive deployment is throwing XDMP-LOCKED Document 
or directory is locked exception.



Not sure If I am missing any special privilege or permission to deployer role.



Thanks

Abhishek

This e-mail and any files transmitted with it are for the sole use of the 
intended recipient(s) and may contain confidential and privileged information. 
If you are not the intended recipient(s), please reply to the sender and 
destroy all copies of the original message. Any unauthorized review, use, 
disclosure, dissemination, forwarding, printing or copying of this email, 
and/or any action taken in reliance on the contents of this e-mail is strictly 
prohibited and may be unlawful. Where permitted by applicable law, this e-mail 
and other e-mail communications sent to and from Cognizant e-mail addresses may 
be monitored.
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general


Re: [MarkLogic Dev General] Additional XQuery libraries

2015-03-26 Thread Indrajeet Verma
Alex - See if this helps to learn,

http://www.xqueryhacker.com/2013/08/25/xquery-marklogic-learning-resources.html

http://www.xquerycoder.com/?view=sidebar


On Thu, Mar 26, 2015 at 11:13 AM, David Lee  wrote:

>  That's a very open ended question ... what kinds of functionality or
> tools are you looking for ?
>
> A good start is the community page
>
> https://developer.marklogic.com/
>
>
>
>
>
>
> -
>
> David Lee
> Lead Engineer
> *Mark**Logic* Corporation
> d...@marklogic.com
> Phone: +1 812-482-5224
>
> Cell:  +1 812-630-7622
> www.marklogic.com
>
>
>
> *From:* general-boun...@developer.marklogic.com [mailto:
> general-boun...@developer.marklogic.com] *On Behalf Of *Alex Jouravlev
> *Sent:* Wednesday, March 25, 2015 11:11 PM
> *To:* MarkLogic Developer Discussion
> *Subject:* [MarkLogic Dev General] Additional XQuery libraries
>
>
>
> Hi Everyone,
>
>
>
> What additional XQuery libraries - other than supplied with MarkLogic -
> you found useful?
>
> Alex Jouravlev
> Director, Business Abstraction Pty Ltd
> Phone:   +61-(2)-8003-4830
> Mobile: +61-4-0408-3258
> Web: http://www.businessabstraction.com
> LinkedIn: http://au.linkedin.com/in/alexjouravlev/
>
>
> ___
> General mailing list
> General@developer.marklogic.com
> http://developer.marklogic.com/mailman/listinfo/general
>
>
___
General mailing list
General@developer.marklogic.com
http://developer.marklogic.com/mailman/listinfo/general