国际并购中 "the mergedthe entityy" 是什么意思

issuehub.io
Contribute to Open Source. Search issue labels to find the right project for you!
help wanted
documentation
enhancement
refactoring
translation
accessibility
good first issue
I&m trying the new Beta 12 images.
Forgive me if they are not yet ready for consumption.
After booting ubos in a container on Arch on either x86_64 PC or EspressoBIN I get an error when attempting to deploy any site with &ubos-admin createsite&. I get a long list of these errors:
cp: failed to clone &/srv/http/sites/s39babddbc2de6c5dbaf75ab08313fb/selfoss/public/win8-71-icon.png& from &/usr/share/selfoss/selfoss/public/win8-71-icon.png&: Operation not supported
ERROR: Createsite failed.`
Updated 04/11/
4 Comments
&cde:info> SW405496 &/cde:info>
Updated 25/10/
1 Comments
Questions:
/forum/#!forum/loopbackjs
https://gitter.im/strongloop/loopback
Immediate support:
/api-connect-faqs/
/node-js/subscription-plans/
Description/Steps to reproduce
Example from http://loopback.io/doc/en/lb4/Routes.html#creating-rest-routes doesn&t compile for me. I don&t know if it is my fault or example is outdated.
If feature: A description of the feature
If bug: Steps to reproduce
Link to reproduction sandbox
I use package.json and tsconfig from Getting Started page
```javascript
import {Application} from &@loopback/core&;
import {RestServer, Route} from &@loopback/rest&;
const app = new Application();
const spec = {
parameters: [{name: &name&, in: &query&, type: &string&}],
responses: {
description: &greeting text&,
schema: {type: &string&},
// greet is a basic operation
function greet(name) {
return hello ${name};
(async function start() {
const server = await app.getServer(RestServer);
const route = new Route(&get&, &/&, spec, greet);
server.route(route);
await app.start();
After running npm start (tsc && node index.js) I got this error
index.ts(22,39): error TS2345: Argument of type &{ parameters: { name: in: type: }[]; responses: { '200&: { description: s&& is not assignable to parameter of type 'OperationObject&.
Types of property &parameters& are incompatible.
Type &{ name: in: type: }[]& is not assignable to type &(ParameterObject | ReferenceObject)[]&.
Type &{ name: in: type: }& is not assignable to type &ParameterObject | ReferenceObject&.
Type &{ name: in: type: }& is not assignable to type &ReferenceObject&.
Property &$ref& is missing in type &{ name: in: type: }&.
npm ERR! Linux 3.16.0-4-amd64
npm ERR! argv &/usr/bin/nodejs& &/usr/local/bin/npm& &start&
npm ERR! node v8.4.0
npm ERR! npm
npm ERR! code ELIFECYCLE
npm ERR! getting-started@1.0.0 start: tsc && node index.js
npm ERR! Exit status 2
npm ERR! Failed at the getting-started@1.0.0 start script &tsc && node index.js&.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the getting-started package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
tsc && node index.js
npm ERR! You can get information on how to open an issue for this project with:
npm bugs getting-started
npm ERR! Or if that isn&t available, you can get their info via:
npm owner ls getting-started
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
Link to an app sandbox for reproduction
Note: Failure to provide a sandbox application for reproduction purposes will result in the issue being closed.
Expected result
Greeting text (e.g &hello loopback&)when go to the root /?name=loopback
Also include actual results if bug
Additional information
Copy+paste the output of these two commands:
node -e &console.log(process.platform, process.arch, process.versions.node)&
npm ls &prod &depth 0 | grep loopback
Updated 31/10/
3 Comments
&cde:info> SW405100 &/cde:info>
Updated 20/10/
1 Comments
Here&s the task list:
a: Using the private ssh key that goes with the test staff, ssh to the device under test as user shepherd
o: After no more than 4 minutes, successfully log into the device under test
a: On the device under test, repeatedly `systemctl is-system-running`
o: After no more than 4 minutes, reports `running`
a: On the device under test, `cat /etc/pacman.d/repositories.d/*`
o: Shows os, hl and tools with a \$channel variable pointing to depot.ubos.net
a: On the device under test, `cat /etc/pacman.conf`
o: Below the line, shows os, hl and tools with correct channel $channel
Here is what taliwodo outputs:
Using the private ssh key that goes with the test staff, ssh to the device under test as user shepherd
On the device under test, repeatedly systemctl is-system-running
On the device under test, cat /etc/pacman.d/repositories.d/*
On the device under test, cat /etc/pacman.conf
Updated 16/10/
Seems like all of the blog is being accessed at the moment when child apps are accessed. Since we are referring to MM config before sending out the response. This causes delay in response. If possible, we should remove calls to MM config.
:image_optim is deprecated. Please use `:imageoptim` instead.
== Blog Sources: posts/{year}-{month}-{day}-{title}.html (:prefix + :sources)
Puma starting in single mode...
* Version 3.10.0 (ruby 2.4.0-p0), codename: Russell's Teapot
* Min threads: 0, max threads: 16
* Environment: production
* Listening on tcp://0.0.0.0:9292
Use Ctrl-C to stop
== Blog Sources: posts/{year}-{month}-{day}-{title}.html (:prefix + :sources)
== Blog Sources: posts/{year}-{month}-{day}-{title}.html (:prefix + :sources)
Updated 14/10/
The issue which i&m facing is really weird and could not find any case for solving this. For example I have Country entity which have one-to-many relationship with City entity. And i&m creating nested resource route and controller for the Country like so
Route::resource('countries.cities', 'CountryCityController');
Controller
* Listing all cities under given country
* @param int $countryID
public function index($countryID) {
// verify the existence of the country
$country = $this-&countries-&find($countryID);
// fetch all the city under given country
$cities = $this-&cities-&scopeQuery(function ($query) use ($city) {
$query-&where('city_id', $city-&id);
})-&all();
// return final results
So while I want to search for a city in the results set the url with parameter will be
https://app.dev/api/countries/1/cities?search=a&searchFields=name:like
There will be an sql query performed like so
select * from `countries` where (`cities`.`name` like '%a%') and `countries`.`id` = '1' limit 1
But the weird here is while performing search only string typed as a is well performed but any other characters will not for example the b character
https://app.dev/api/countries/1/cities?search=b&searchFields=name:like
The sql query
select * from `countries` where (`countries`.`name` like '%b%') and `countries`.`id` = '1' limit 1
I have tried with my local development machine and the stagging server use php7.1 and mysql5.7 but it procedure
as same, so it seem there is not hardware problem
Updated 01/11/
3 Comments
Updated 14/10/
1 Comments
Apparently, the following two lines are interpreted as one action:
This is unexpected, because they are both clearly labeled as actions.
is okay to merge.
Updated 06/10/
Instead, should redirect to appending the slash.
In line 3 of htaccess.tmpl, try to append a slash to make it:
WSGIScriptAlias ${appconfig.context}/ ${package.codedir}/web/index.py
Updated 03/10/
Should be 404 instead.
Updated 03/10/
Create a workdown
Select a few Pass and Fail buttons
Hit refresh:
O: The button selections remain (Pass)
A: Close browser window
A: Go to overview page, select wodo page
O: The button selections remain (FAIL & there are none)
Updated 03/10/
1 Comments
% taligen all-release-ubos.tlt
Traceback (most recent call last):
File "/usr/bin/taligen", line 315, in &module&
File "/usr/bin/taligen", line 306, in main
script = collect_pass(args)
File "/usr/bin/taligen", line 252, in collect_pass
script["steps"] = read_through_file(".", args.tl_file, script["parameters"], {}, deque())
File "/usr/bin/taligen", line 209, in read_through_file
call_file = call_file_match.group(1) + ".tl"
AttributeError: 'NoneType' object has no attribute 'group'
Updated 07/10/
1 Comments
It should probably indicate:
has at least one task been worked on
have all tasks been worked on
is there at least one task that passed
is there at least one task that failed
Maybe some icons, or a rotated &thermometer& which shows in green the percentage of passed tasks, in red those that failed, in gray those that were marked as not done, and the rest (white) that have no status.
Updated 06/10/
I&d like a delete button next to a workdown
Updated 02/10/
&cde:info> SW401584 &/cde:info>
Updated 11/10/
1 Comments
&cde:info> SW403064 &/cde:info>
Updated 12/10/
11 Comments
TL name: release-ubos.tl
Generated:
Workdown Created:
Parameters:
Create a table
Shoud look far less prominent (smaller font, maybe font color, maybe moved to the right)
Don&t print &Parameters& if there were none
Updated 02/10/
Currently it only says &Taligen script& and that is not meaningful if you have multiple browser tabs open.
Updated 02/10/
Test files.
A: executing a
call: b( par=abc )
call: b( par=def )
A: This is b with par $par
when invoked with:
taligen a.tl
produces a JSON file that does not replace ``$par`` at all. If I invoke it like this:
taligen a.tl par=xxx
the JSON file replaces$parwithabcanddef`` as intended. But it shouldn&t need to be triggered like this.
Updated 11/09/
Make sensible filenames for the output.
Make sure all output files have proper extensions!
Updated 14/10/
1 Comments
Automatically refresh processed resources on the EMU project page.
Updated 14/10/
1 Comments
If I don&t have a blank line between subsequent actions in my .tl file, like this:
I get two actions, not three:oneandtwoget merged. Merging should only happen if the next line is a continuation (no leadinga:``, starts with leading white space)
Updated 06/10/
Deleting old unused resources. Probably a daily cron script that will delete anythin older than 24 hours that isn&t used or necessary.
Updated 14/10/
1 Comments
To reproduce:
git clone /uboslinux/ubos-tasks
cd ubos-tasks
git reset --hard 23e41b92fd715f58920fbda2bf072cdc81bc0d80
taligen create-release-ubos.tl channel=dev
Fails with:
Error: Missing value for variable product for step fetch a exec: "macrobuild fetch-$product -v" call stack is ["create-release-ubos.tl(['channel=dev'])", "./archs/createUbosReleaseFor.arch=x86_64.tl({'arch': 'x86_64'})", './archs/../lib/createUbos.channel=dev.tl({})', './archs/../lib/fetch.tl({})']
However, fetch.tl should have inherited the value for product from createUbos.channel=dev.tl.
Updated 11/09/
This .tl file fragment:
set: product=ubos
call: lib/runAutomatedTests()
call: lib/runAutomatedTests( product=app )
Both of the runAutomatedTests() produce the same .json output, replacing product with ubos. But in the second case product should be replaced with app.
Updated 07/09/
I&d like to be able to say something like:
set: channel=red
at the beginning of my script.
Updated 06/09/
If I have an action like this:
A: do-something $verbose
but I did not specify a value for $verbose, $verbose remains in the output. An error message would be better.
Updated 06/10/
2 Comments
Description/Steps to reproduce
I was updating my API from loopback 2.x to 3.x. I also updated loopback-connector-cloudant to 2.x.
After I had resolved all other issues, my last problem is that when I try to use my application, my first API query fails with:
Unhandled error for request GET /api/csp/sites?filter=%7B%22where%22:%7B%22name%22:%7B%22regexp%22:%22%2Ffoo%2Fi%22%7D%7D,%22order%22:%22name+DESC%22,%22limit%22:10%7D: Error: You must specify an index with the `use_index` parameter.
at Request._callback (D:\Src\KONE\DCT\api\node_modules\cloudant-nano\lib\nano.js:248:15)
at Request.self.callback (D:\Src\KONE\DCT\api\node_modules\request\request.js:188:22)
at emitTwo (events.js:106:13)
at Request.emit (events.js:191:7)
at Request.&anonymous& (D:\Src\KONE\DCT\api\node_modules\request\request.js:1171:10)
at emitOne (events.js:96:13)
at Request.emit (events.js:188:7)
at IncomingMessage.&anonymous& (D:\Src\KONE\DCT\api\node_modules\request\request.js:1091:12)
at IncomingMessage.g (events.js:291:16)
at emitNone (events.js:91:20)
at IncomingMessage.emit (events.js:185:7)
at endReadableNT (_stream_readable.js:974:12)
at _combinedTickCallback (internal/process/next_tick.js:80:11)
at process._tickCallback (internal/process/next_tick.js:104:9)
In my datasouce config I have:
modelIndex: 'modelIndex'
I also tried configuring indexes separately for said model, without success.
Rolling back to 1.2.5 fixed the problem.
Link to reproduction sandbox
I don&t have spare VM instances just laying around.
Note: Failure to provide a sandbox application for reproduction purposes will result in the issue being closed.
Well, that&s a bit hostile.
Expected result
Old models with old indexes continue to work.
Additional information
win32 x64 6.10.1
+-- loopback@3.11.1
+-- loopback-boot@3.0.1
+-- loopback-component-explorer@4.2.0
+-- loopback-component-passport@3.4.1
+-- loopback-connector-cloudant@2.0.2
Updated 02/10/
3 Comments
Wenn jemand stirbt spawnt kein Grabstein und die Items sind weg um Genauer gesagt
stirbt man Nichtmal offiziell sonder man ist einfach weg dadurch funktioniert Nichtmals solbound aus arsmagika2
/Edit by DerOli82 - Kommentare zusammengefasst
es handelt sich um die spieler Minion1311 CD4017BE TheSnowyChickens
Updated 26/08/
9 Comments
Right now, entity services codegen spits out UNIX-friendly text.
When you import it into a windows tool, everything is one one line, which is a little bit annoying.
Updated 26/10/
We have a Spring Batch-based data migration program that reads data from Oracle RDB and writes it to MarkLogic. We have a 3-node ML cluster that&s now on 9.0-1.1, was on 8.0-6.3 before.
We&ve been using XCC and a custom &pooling& approach where we create an XCC ContentSource for each host. Each batch of documents to be written to ML is then handed off to a ContentSource in round robin fashion. A new Session is then created from the ContentSource, and then session.insertContent is called with an array of Content objects. Very simple, nothing fancy. We use a ContentCreateOptions object for each document, but all we do is set the format to XML, set the collections and permissions, and set the repair level to FULL.
We now have DMSDK support in the migration tool, alongside the XCC support (which one is used is determined by a command line argument). Our DMSDK code is very simple too, basically this:
databaseClient = DatabaseClientFactory.newClient(host, port, user, password, DatabaseClientFactory.Authentication.BASIC);
dataMovementManager = databaseClient.newDataMovementManager();
writeBatcher = dataMovementManager.newWriteBatcher().withBatchSize(batchSize).withThreadCount(threadCount);
jobTicket = dataMovementManager.startJob(writeBatcher);
When the migration program gets a batch of documents to write, it then just calls this for each document in the batch:
writeBatcher.add(doc.getUri(), doc.getMetadata(), doc.getContent());
Once all the batches are written, we have the following cleanup code:
writeBatcher.flushAndWait();
dataMovementManager.stopJob(jobTicket);
dataMovementManager.release();
databaseClient.release();
Functionally, everything works fine, but we&re consistently getting better results with our custom XCC approach. Details on the migration that we&re testing with:
The migration inserts 2,948,131 documents
Each document is small - just 7 elements, with each element value having less than 100 characters
Details on our 3-node cluster - each node has the same specs - 48 24 X5660 cpus at 2.80 and disk storage is 500gb, with plenty of space (we&re testing against an empty database). The migration program is being run on a separate machine, with 145 24 x5675 cpus at 3.07 and 500gb storage.
Here are the 4 test runs I did, all with a thread count of 64:
Batch Size
Total Time (ms)
% of DMSDK
I&m going to do a few more runs, but these are consistent with all the other runs I&ve done.
I&ve included an export of Monitoring History during the time frame where I did the above 4 runs (they were done in that order too). Interesting notes about what&s in there:
CPU is significantly higher during the DMSDK runs - around 50% compared to 25%
There are lots of ETC hits during the DMSDK runs, but none during the XCC runs. This confuses me.
There are lots more list cache hits during the DMSDK runs, which I figure is for the same reason as the ETC hits (there are plenty of duplicate values across the 2 million plus documents).
Updated 03/11/
35 Comments
Running the test suite from the develop branch yields 5 failures/132 errors.
Many of these errors are due to the request user not having the xdmp:get-server-field privilege.
Log is attached.
Tests were run in the following environment:
ML version: 9.0-1.1
OS: MacOS.
Java version: 1.8.0_102-b14.
Client API: develop branch at /marklogic/java-client-api/commit/bdbfa6d2effb45b5b9385efabc4291c.
Maven: Apache Maven 3.5.0
This was a brand new installation of everything except Java: I had freshly installed Maven for the first time, ML was a bare install of 9.0-1.1, and I had newly cloned the develop branch.
I ran mvn test-compile, followed by mvn exec:java@test-server-init, followed by mvn test..
When I gave the rest-writer role the xdmp:get-server-field privilege, most of the errors went away and I was left with errors that Sam Mefford was also getting, plus five semantics-related errors.
Updated 17/08/
7 Comments
Need to compare both Olympus, and SDK features
Updated 26/09/
Once finished with the rest of #567 issues, take a step back and think about errors handling that you &d want to have across all screens and make sure it&s there. Have a look at time outs where we had some issues and whether they are properly handled
Updated 26/09/
Need the following plugins:
* indieweb https://wordpress.org/plugins/indieweb/
* independent-publisher (looks nicer) https://wordpress.org/themes/independent-publisher/
* sempress (more geared towards microformats) https://wordpress.org/themes/sempress/
Updated 18/10/
I tripped over this while trying to figure out if I could export an Optic plan using the Java Client API.
You get 404&d if you try to navigate to the javadoc for PlanBase and some of its sibling interfaces. These bad boys, which show up under PlanBuilder.
static interface
PlanBuilderBase.AccessPlanBase
static interface
PlanBuilderBase.ExportablePlanBase
static interface
PlanBuilderBase.ModifyPlanBase
static interface
PlanBuilderBase.PlanBase
static interface
PlanBuilderBase.PreparePlanBase
It&s not just some weirdness on
as you get the same missing page behavior with a set of static javadocs on the local filesystem.
To see this in action:
1. Navigate to the PlanBuilder javadoc: /javadoc/client/com/marklogic/client/expression/PlanBuilder.html
1. Under the Nested Class Summary, click on one of the above listed interfaces, such as PlanBase.
Updated 02/11/
9 Comments
There are those methods in laravel, is there any plan to add them to the package?
public function count() {
$this-&applyCriteria();
$this-&applyScope();
$result = $this-&model-&count();
$this-&resetModel();
$this-&resetScope();
Updated 29/10/
4 Comments
DELETE requests can now opt into a NOT FOUND error instead of idempotent silence when the document doesn&t exist by passing a check=exists uri parameter
Updated 31/08/
When putting entity instances into documents, one always chooses one to be the root, and others to embed or denormalize into the document structure.
Entity Services in MarkLogic 9 does not provide this vocabulary, but repeated use of the code generation indicates that it could be automated significantly with this extra concept.
Entry point of a module is known.
Expectations of whether a reference property contains an embedded instance or a reference to an external one.
Refinement of extraction template to require less customization.
Updated 22/08/
4 Comments
I quickly copied this from Android SDK, so many of them will have to change:
Review all aspects of the SDK and make sure it is GA quality. Some things to check:
- API is in good shape
- CI/CD facilities are complete and 100% functional from Travis CI
- UI/Integration/Unit testing are complete with 100% passing tests, also automated testing in real devices (using external service like Amazon farm) would be great.
- Interoperability testing between all SDKs would be a plus, but not sure if it can be realized yet, as the rest of the SDKs might not yet be ready.
- Documentation is up to date and with some improvements so that it is easier to read (also all documentation should reside in this repo, not Restcomm-Connect):
- Reference Documentation
- Quick start guide
- User guide for Olympus
- Olympus App and Hello World sample app both functional. Olympus should be verified by UI tests, but not sure about Hello World -maybe we could introduce a rudimentary set of UI tests for this as well.
- Libraries in RC should all be release type and as lightweight as possible
- All dependencies are stored in Sonatype and visible to public. The repository should have no local dependencies.
Also do a round of very thorough testing:
- Do some more testing on Notifications functionality + integrations with Android Contacts + Calls as they aren&t tested enough as far as I know
- Test UI/UX aspects to fix any left overs that might have slipped our attention.
- Manually test interoperability in various types of calls within Android Olympus:
- Video -> Video
- Video -> Audio
- Audio -> Video
- Audio -> Audio
- Manually test interoperability between Android, iOS and Web Olympus
Updated 26/09/
Loading document fails when used with a MetaData object with property set. If &.withProperty("docMeta-1&, &true&).withQuality(1)& is removed from DocumentMetadataHandle object, the documents are written fine.
public void addWithMetadata() throws Exception{
final String query1 = "fn:count(fn:doc())";
DocumentMetadataHandle meta6 = new DocumentMetadataHandle()
.withCollections("Sample Collection 1").withProperty("docMeta-1", "true").withQuality(1);
meta6.setFormat(Format.XML);
Assert.assertTrue(dbClient.newServerEval().xquery(query1).eval().next().getNumber().intValue() == 0);
Thread.currentThread().sleep(5000L);
DatabaseClient dbClient = DatabaseClientFactory.newClient(host, port, user, password, Authentication.DIGEST);
DataMovementManager dmManager = dbClient.newDataMovementManager();
WriteBatcher ihb2 =
dmManager.newWriteBatcher();
ihb2.withBatchSize(50).withThreadCount(1);
ihb2.onBatchSuccess(
batch -& {
.onBatchFailure(
(batch, throwable) -& {
throwable.printStackTrace();
for (int j =0 ;j & 1000; j++){
String uri ="/local/string-"+
ihb2.addAs(uri , meta6,jsonNode);
ihb2.flushAndWait();
Assert.assertTrue(dbClient.newServerEval().xquery(query1).eval().next().getNumber().intValue() == 1000);
catch(Exception e){
e.printStackTrace();
16:32:32.839 [main] DEBUG c.m.client.impl.JerseyServices - Connecting to localhost at 8000 as admin
16:32:33.535 [main] DEBUG c.m.client.impl.JerseyServices - Getting forestinfo as application/json
16:32:33.878 [main] DEBUG c.m.client.impl.JerseyServices - Posting eval
16:32:39.001 [main] DEBUG c.m.client.impl.JerseyServices - Connecting to localhost at 8000 as admin
16:32:39.251 [main] DEBUG c.m.client.impl.JerseyServices - Getting forestinfo as application/json
16:32:39.278 [main] INFO
c.m.c.d.impl.WriteBatcherImpl - (withForestConfig) Using [localhost] hosts with forests for "WriteHostBatcher"
16:32:39.283 [main] INFO
c.m.c.d.impl.WriteBatcherImpl - Adding DatabaseClient on port 8000 for host "localhost" to the rotation
16:32:39.325 [main] INFO
c.m.c.d.impl.WriteBatcherImpl - threadCount=1
16:32:39.325 [main] INFO
c.m.c.d.impl.WriteBatcherImpl - batchSize=50
16:32:39.412 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:39.413 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
16:32:39.419 [main] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:39.420 [main] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
16:32:43.731 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:43.731 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
16:32:43.733 [main] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:43.734 [main] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:184)
at com.marklogic.client.impl.DigestChallengeFilter.handle(DigestChallengeFilter.java:34)
at com.sun.jersey.api.client.filter.HTTPDigestAuthFilter.handle(HTTPDigestAuthFilter.java:493)
at com.sun.jersey.api.client.Client.handle(Client.java:648)
at com.sun.jersey.api.client.WebResource.handle(WebResource.java:680)
at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74)
at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:568)
at com.marklogic.client.impl.JerseyServices.doPost(JerseyServices.java:3940)
at com.marklogic.client.impl.JerseyServices.postResource(JerseyServices.java:3227)
at com.marklogic.client.impl.JerseyServices.postBulkDocuments(JerseyServices.java:3345)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:619)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:611)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl$BatchWriter.run(WriteBatcherImpl.java:1032)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:904)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:270)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:87)
at com.marklogic.client.io.DocumentMetadataHandle.sendPropertiesImpl(DocumentMetadataHandle.java:873)
at com.marklogic.client.io.DocumentMetadataHandle.sendMetadataImpl(DocumentMetadataHandle.java:776)
at com.marklogic.client.io.DocumentMetadataHandle.write(DocumentMetadataHandle.java:559)
at com.marklogic.client.impl.StreamingOutputImpl.write(StreamingOutputImpl.java:48)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:71)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:57)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:218)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:71)
at com.sun.jersey.api.client.RequestWriter$RequestEntityWriterImpl.writeRequestEntity(RequestWriter.java:231)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler$2.writeTo(ApacheHttpClient4Handler.java:262)
at org.apache.http.entity.HttpEntityWrapper.writeTo(HttpEntityWrapper.java:96)
at org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper.writeTo(EntityEnclosingRequestWrapper.java:108)
at org.apache.http.impl.entity.EntitySerializer.serialize(EntitySerializer.java:120)
at org.apache.http.impl.AbstractHttpClientConnection.sendRequestEntity(AbstractHttpClientConnection.java:263)
at org.apache.http.impl.conn.AbstractClientConnAdapter.sendRequestEntity(AbstractClientConnAdapter.java:227)
at org.apache.http.protocol.HttpRequestExecutor.doSendRequest(HttpRequestExecutor.java:255)
at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:123)
at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:633)
at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:454)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:776)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:170)
... 19 more
Caused by: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.ctc.wstx.sw.BaseStreamWriter.throwOutputError(BaseStreamWriter.java:1564)
at com.ctc.wstx.sw.RepairingNsStreamWriter.writeAttribute(RepairingNsStreamWriter.java:124)
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:900)
... 43 more
com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:184)
at com.marklogic.client.impl.DigestChallengeFilter.handle(DigestChallengeFilter.java:34)
at com.sun.jersey.api.client.filter.HTTPDigestAuthFilter.handle(HTTPDigestAuthFilter.java:493)
at com.sun.jersey.api.client.Client.handle(Client.java:648)
at com.sun.jersey.api.client.WebResource.handle(WebResource.java:680)
at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74)
at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:568)
at com.marklogic.client.impl.JerseyServices.doPost(JerseyServices.java:3940)
at com.marklogic.client.impl.JerseyServices.postResource(JerseyServices.java:3227)
at com.marklogic.client.impl.JerseyServices.postBulkDocuments(JerseyServices.java:3345)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:619)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:611)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl$BatchWriter.run(WriteBatcherImpl.java:1032)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:904)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:270)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:87)
at com.marklogic.client.io.DocumentMetadataHandle.sendPropertiesImpl(DocumentMetadataHandle.java:873)
at com.marklogic.client.io.DocumentMetadataHandle.sendMetadataImpl(DocumentMetadataHandle.java:776)
at com.marklogic.client.io.DocumentMetadataHandle.write(DocumentMetadataHandle.java:559)
at com.marklogic.client.impl.StreamingOutputImpl.write(StreamingOutputImpl.java:48)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:71)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:57)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:218)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:71)
at com.sun.jersey.api.client.RequestWriter$RequestEntityWriterImpl.writeRequestEntity(RequestWriter.java:231)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler$2.writeTo(ApacheHttpClient4Handler.java:262)
at org.apache.http.entity.HttpEntityWrapper.writeTo(HttpEntityWrapper.java:96)
at org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper.writeTo(EntityEnclosingRequestWrapper.java:108)
at org.apache.http.impl.entity.EntitySerializer.serialize(EntitySerializer.java:120)
at org.apache.http.impl.AbstractHttpClientConnection.sendRequestEntity(AbstractHttpClientConnection.java:263)
at org.apache.http.impl.conn.AbstractClientConnAdapter.sendRequestEntity(AbstractClientConnAdapter.java:227)
at org.apache.http.protocol.HttpRequestExecutor.doSendRequest(HttpRequestExecutor.java:255)
at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:123)
at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:633)
at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:454)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:776)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:170)
... 19 more
Caused by: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.ctc.wstx.sw.BaseStreamWriter.throwOutputError(BaseStreamWriter.java:1564)
at com.ctc.wstx.sw.RepairingNsStreamWriter.writeAttribute(RepairingNsStreamWriter.java:124)
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:900)
... 43 more
com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:184)
at com.marklogic.client.impl.DigestChallengeFilter.handle(DigestChallengeFilter.java:34)
at com.sun.jersey.api.client.filter.HTTPDigestAuthFilter.handle(HTTPDigestAuthFilter.java:493)
at com.sun.jersey.api.client.Client.handle(Client.java:648)
at com.sun.jersey.api.client.WebResource.handle(WebResource.java:680)
at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74)
at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:568)
at com.marklogic.client.impl.JerseyServices.doPost(JerseyServices.java:3940)
at com.marklogic.client.impl.JerseyServices.postResource(JerseyServices.java:3227)
at com.marklogic.client.impl.JerseyServices.postBulkDocuments(JerseyServices.java:3345)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:619)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:611)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl$BatchWriter.run(WriteBatcherImpl.java:1032)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:904)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:270)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:87)
at com.marklogic.client.io.DocumentMetadataHandle.sendPropertiesImpl(DocumentMetadataHandle.java:873)
at com.marklogic.client.io.DocumentMetadataHandle.sendMetadataImpl(DocumentMetadataHandle.java:776)
at com.marklogic.client.io.DocumentMetadataHandle.write(DocumentMetadataHandle.java:559)
at com.marklogic.client.impl.StreamingOutputImpl.write(StreamingOutputImpl.java:48)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:71)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:57)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:218)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:71)
at com.sun.jersey.api.client.RequestWriter$RequestEntityWriterImpl.writeRequestEntity(RequestWriter.java:231)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler$2.writeTo(ApacheHttpClient4Handler.java:262)
at org.apache.http.entity.HttpEntityWrapper.writeTo(HttpEntityWrapper.java:96)
at org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper.writeTo(EntityEnclosingRequestWrapper.java:108)
at org.apache.http.impl.entity.EntitySerializer.serialize(EntitySerializer.java:120)
at org.apache.http.impl.AbstractHttpClientConnection.sendRequestEntity(AbstractHttpClientConnection.java:263)
at org.apache.http.impl.conn.AbstractClientConnAdapter.sendRequestEntity(AbstractClientConnAdapter.java:227)
at org.apache.http.protocol.HttpRequestExecutor.doSendRequest(HttpRequestExecutor.java:255)
at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:123)
at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:633)
at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:454)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:776)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:170)
... 19 more
Caused by: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.ctc.wstx.sw.BaseStreamWriter.throwOutputError(BaseStreamWriter.java:1564)
at com.ctc.wstx.sw.RepairingNsStreamWriter.writeAttribute(RepairingNsStreamWriter.java:124)
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:900)
... 43 more
com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:184)
at com.marklogic.client.impl.DigestChallengeFilter.handle(DigestChallengeFilter.java:34)
at com.sun.jersey.api.client.filter.HTTPDigestAuthFilter.handle(HTTPDigestAuthFilter.java:493)
at com.sun.jersey.api.client.Client.handle(Client.java:648)
at com.sun.jersey.api.client.WebResource.handle(WebResource.java:680)
at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74)
at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:568)
at com.marklogic.client.impl.JerseyServices.doPost(JerseyServices.java:3940)
at com.marklogic.client.impl.JerseyServices.postResource(JerseyServices.java:3227)
at com.marklogic.client.impl.JerseyServices.postBulkDocuments(JerseyServices.java:3345)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:619)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:611)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl$BatchWriter.run(WriteBatcherImpl.java:1032)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:904)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:270)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:87)
at com.marklogic.client.io.DocumentMetadataHandle.sendPropertiesImpl(DocumentMetadataHandle.java:873)
at com.marklogic.client.io.DocumentMetadataHandle.sendMetadataImpl(DocumentMetadataHandle.java:776)
at com.marklogic.client.io.DocumentMetadataHandle.write(DocumentMetadataHandle.java:559)
at com.marklogic.client.impl.StreamingOutputImpl.write(StreamingOutputImpl.java:48)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:71)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:57)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:218)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:71)
at com.sun.jersey.api.client.RequestWriter$RequestEntityWriterImpl.writeRequestEntity(RequestWriter.java:231)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler$2.writeTo(ApacheHttpClient4Handler.java:262)
at org.apache.http.entity.HttpEntityWrapper.writeTo(HttpEntityWrapper.java:96)
at org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper.writeTo(EntityEnclosingRequestWrapper.java:108)
at org.apache.http.impl.entity.EntitySerializer.serialize(EntitySerializer.java:120)
at org.apache.http.impl.AbstractHttpClientConnection.sendRequestEntity(AbstractHttpClientConnection.java:263)
at org.apache.http.impl.conn.AbstractClientConnAdapter.sendRequestEntity(AbstractClientConnAdapter.java:227)
at org.apache.http.protocol.HttpRequestExecutor.doSendRequest(HttpRequestExecutor.java:255)
at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:123)
at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:633)
at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:454)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:776)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:170)
... 19 more
Caused by: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.ctc.wstx.sw.BaseStreamWriter.throwOutputError(BaseStreamWriter.java:1564)
at com.ctc.wstx.sw.RepairingNsStreamWriter.writeAttribute(RepairingNsStreamWriter.java:124)
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:900)
... 43 more
16:32:43.746 [pool-1-thread-1] WARN
c.m.c.d.impl.WriteBatcherImpl - Error writing batch: com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
16:32:43.748 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:43.748 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
16:32:43.756 [pool-1-thread-1] WARN
c.m.c.d.impl.WriteBatcherImpl - Error writing batch: com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
16:32:43.758 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:43.758 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
16:32:43.767 [pool-1-thread-1] WARN
c.m.c.d.impl.WriteBatcherImpl - Error writing batch: com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
16:32:43.769 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:43.770 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
16:32:43.783 [pool-1-thread-1] WARN
c.m.c.d.impl.WriteBatcherImpl - Error writing batch: com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
16:32:43.785 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:43.786 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
16:32:44.198 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:44.199 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
16:32:44.753 [main] WARN
c.m.c.d.impl.WriteBatcherImpl - Error writing batch: com.marklogic.client.FailedRequestException: Local message: failed to apply resource at documents: Bad Request. Server Message: XDMP-DOCSTARTTAGCHAR: xdmp:get-request-part-body("xml") -- Unexpected character "&" in start tag at
com.marklogic.client.FailedRequestException: Local message: failed to apply resource at documents: Bad Request. Server Message: XDMP-DOCSTARTTAGCHAR: xdmp:get-request-part-body("xml") -- Unexpected character "&" in start tag at
at com.marklogic.client.impl.JerseyServices.checkStatus(JerseyServices.java:4243)
at com.marklogic.client.impl.JerseyServices.postResource(JerseyServices.java:3257)
at com.marklogic.client.impl.JerseyServices.postBulkDocuments(JerseyServices.java:3345)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:619)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:611)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl$BatchWriter.run(WriteBatcherImpl.java:1032)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy.rejectedExecution(ThreadPoolExecutor.java:2022)
at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:823)
at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1369)
at java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:112)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl.add(WriteBatcherImpl.java:292)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl.addAs(WriteBatcherImpl.java:320)
at com.marklogic.client.datamovement.functionaltests.WriteHostBatcherTest.addWithMetadata(WriteHostBatcherTest.java:2458)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
16:32:44.756 [main] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:44.756 [main] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
16:32:44.768 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:44.768 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
com.marklogic.client.FailedRequestException: Local message: failed to apply resource at documents: Bad Request. Server Message: XDMP-DOCSTARTTAGCHAR: xdmp:get-request-part-body("xml") -- Unexpected character "&" in start tag at
16:32:44.852 [main] WARN
c.m.c.d.impl.WriteBatcherImpl - Error writing batch: com.marklogic.client.FailedRequestException: Local message: failed to apply resource at documents: Bad Request. Server Message: XDMP-DOCSTARTTAGCHAR: xdmp:get-request-part-body("xml") -- Unexpected character "&" in start tag at
16:32:44.854 [main] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:44.854 [main] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
at com.marklogic.client.impl.JerseyServices.checkStatus(JerseyServices.java:4243)
at com.marklogic.client.impl.JerseyServices.postResource(JerseyServices.java:3257)
at com.marklogic.client.impl.JerseyServices.postBulkDocuments(JerseyServices.java:3345)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:619)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:611)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl$BatchWriter.run(WriteBatcherImpl.java:1032)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy.rejectedExecution(ThreadPoolExecutor.java:2022)
at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:823)
at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1369)
at java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:112)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl.add(WriteBatcherImpl.java:292)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl.addAs(WriteBatcherImpl.java:320)
at com.marklogic.client.datamovement.functionaltests.WriteHostBatcherTest.addWithMetadata(WriteHostBatcherTest.java:2458)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
com.marklogic.client.FailedRequestException: Local message: failed to apply resource at documents: Bad Request. Server Message: XDMP-DOCSTARTTAGCHAR: xdmp:get-request-part-body("xml") -- Unexpected character "&" in start tag at
at com.marklogic.client.impl.JerseyServices.checkStatus(JerseyServices.java:4243)
at com.marklogic.client.impl.JerseyServices.postResource(JerseyServices.java:3257)
at com.marklogic.client.impl.JerseyServices.postBulkDocuments(JerseyServices.java:3345)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:619)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:611)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl$BatchWriter.run(WriteBatcherImpl.java:1032)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
16:32:44.859 [pool-1-thread-1] WARN
c.m.c.d.impl.WriteBatcherImpl - Error writing batch: com.marklogic.client.FailedRequestException: Local message: failed to apply resource at documents: Bad Request. Server Message: XDMP-DOCSTARTTAGCHAR: xdmp:get-request-part-body("xml") -- Unexpected character "&" in start tag at
16:32:44.860 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Posting documents
16:32:44.860 [pool-1-thread-1] DEBUG c.m.client.impl.JerseyServices - Sending multipart for /v1/documents
com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:184)
at com.marklogic.client.impl.DigestChallengeFilter.handle(DigestChallengeFilter.java:34)
at com.sun.jersey.api.client.filter.HTTPDigestAuthFilter.handle(HTTPDigestAuthFilter.java:493)
at com.sun.jersey.api.client.Client.handle(Client.java:648)
at com.sun.jersey.api.client.WebResource.handle(WebResource.java:680)
at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74)
at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:568)
at com.marklogic.client.impl.JerseyServices.doPost(JerseyServices.java:3940)
at com.marklogic.client.impl.JerseyServices.postResource(JerseyServices.java:3227)
at com.marklogic.client.impl.JerseyServices.postBulkDocuments(JerseyServices.java:3345)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:619)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:611)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl$BatchWriter.run(WriteBatcherImpl.java:1032)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
Caused by: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:904)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:270)
at com.marklogic.client.impl.ValueConverter.convertFromJava(ValueConverter.java:87)
at com.marklogic.client.io.DocumentMetadataHandle.sendPropertiesImpl(DocumentMetadataHandle.java:873)
at com.marklogic.client.io.DocumentMetadataHandle.sendMetadataImpl(DocumentMetadataHandle.java:776)
at com.marklogic.client.io.DocumentMetadataHandle.write(DocumentMetadataHandle.java:559)
at com.marklogic.client.impl.StreamingOutputImpl.write(StreamingOutputImpl.java:48)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:71)
at com.sun.jersey.core.impl.provider.entity.StreamingOutputProvider.writeTo(StreamingOutputProvider.java:57)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:218)
at com.sun.jersey.multipart.impl.MultiPartWriter.writeTo(MultiPartWriter.java:71)
at com.sun.jersey.api.client.RequestWriter$RequestEntityWriterImpl.writeRequestEntity(RequestWriter.java:231)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler$2.writeTo(ApacheHttpClient4Handler.java:262)
at org.apache.http.entity.HttpEntityWrapper.writeTo(HttpEntityWrapper.java:96)
at org.apache.http.impl.client.EntityEnclosingRequestWrapper$EntityWrapper.writeTo(EntityEnclosingRequestWrapper.java:108)
at org.apache.http.impl.entity.EntitySerializer.serialize(EntitySerializer.java:120)
at org.apache.http.impl.AbstractHttpClientConnection.sendRequestEntity(AbstractHttpClientConnection.java:263)
at org.apache.http.impl.conn.AbstractClientConnAdapter.sendRequestEntity(AbstractClientConnAdapter.java:227)
at org.apache.http.protocol.HttpRequestExecutor.doSendRequest(HttpRequestExecutor.java:255)
at org.apache.http.protocol.HttpRequestExecutor.execute(HttpRequestExecutor.java:123)
at org.apache.http.impl.client.DefaultRequestDirector.tryExecute(DefaultRequestDirector.java:633)
at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:454)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820)
at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:776)
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:170)
... 19 more
Caused by: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.ctc.wstx.sw.BaseStreamWriter.throwOutputError(BaseStreamWriter.java:1564)
at com.ctc.wstx.sw.RepairingNsStreamWriter.writeAttribute(RepairingNsStreamWriter.java:124)
at com.marklogic.client.io.DocumentMetadataHandle$ValueSerializer.process(DocumentMetadataHandle.java:900)
... 43 more
com.sun.jersey.api.client.ClientHandlerException: com.marklogic.client.MarkLogicIOException: javax.xml.stream.XMLStreamException: Trying to write an attribute when there is no open start element.
at com.sun.jersey.client.apache4.ApacheHttpClient4Handler.handle(ApacheHttpClient4Handler.java:184)
at com.marklogic.client.impl.DigestChallengeFilter.handle(DigestChallengeFilter.java:34)
at com.sun.jersey.api.client.filter.HTTPDigestAuthFilter.handle(HTTPDigestAuthFilter.java:493)
at com.sun.jersey.api.client.Client.handle(Client.java:648)
at com.sun.jersey.api.client.WebResource.handle(WebResource.java:680)
at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74)
at com.sun.jersey.api.client.WebResource$Builder.post(WebResource.java:568)
at com.marklogic.client.impl.JerseyServices.doPost(JerseyServices.java:3940)
at com.marklogic.client.impl.JerseyServices.postResource(JerseyServices.java:3227)
at com.marklogic.client.impl.JerseyServices.postBulkDocuments(JerseyServices.java:3345)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:619)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.impl.DocumentManagerImpl.write(DocumentManagerImpl.java:611)
at com.marklogic.client.impl.GenericDocumentImpl.write(GenericDocumentImpl.java:1)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl$BatchWriter.run(WriteBatcherImpl.java:1032)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy.rejectedExecution(ThreadPoolExecutor.java:2022)
at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:823)
at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1369)
at java.util.concurrent.AbstractExecutorService.submit(AbstractExecutorService.java:112)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl.add(WriteBatcherImpl.java:292)
at com.marklogic.client.datamovement.impl.WriteBatcherImpl.addAs(WriteBatcherImpl.java:320)
at com.marklogic.client.datamovement.functionaltests.WriteHostBatcherTest.addWithMetadata(WriteHostBatcherTest.java:2458)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRu

我要回帖

更多关于 鬼恋the entity在线看 的文章

 

随机推荐