Skip to content

Commit aec5fec

Browse files
committed
1015644: Updated documentation changes
1 parent 346db70 commit aec5fec

5 files changed

Lines changed: 25 additions & 33 deletions

File tree

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Document loading issue in Angular DOCX editor | Syncfusion
3+
title: Document loading issue in Angular DOCX Editor | Syncfusion
44
description: Document loading may fail with a 404 error if the Document Editor cannot reach a valid service URL, which may be due to the below reasons.
55
control: document loading issue with 404 error
66
platform: document-processing
77
documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Document loading issue with 404 error in Angular DOCX editor
11+
# Document loading issue with 404 error in Angular DOCX Editor
1212

1313
If document loading fails and you see a 404 error in the browser console, the Document Editor is unable to reach a valid Web Service endpoint.
1414

@@ -20,16 +20,14 @@ The 404 error may occur due to the following reasons:
2020
- **The configured `serviceUrl` is invalid** – Issues like a missing trailing slash (`/`), wrong port number, incorrect API route, or typos will cause the editor to call incorrect endpoints.
2121
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.
2222

23-
## Solution
23+
## Solutions
2424

25-
1. Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
25+
- Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
2626

2727
```javascript
2828
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
2929
```
3030

3131
> Note: The hosted Web API link is provided for demonstration and evaluation only. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
3232

33-
2. If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.
34-
35-
---
33+
- If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Document loading issue in JavaScript(ES5) DOCX editor | Syncfusion
3+
title: Document loading issue in JavaScript(ES5) DOCX Editor | Syncfusion
44
description: Document loading may fail with a 404 error if the Document Editor cannot reach a valid service URL, which may be due to the below reasons.
55
control: document loading issue with 404 error
66
platform: document-processing
77
documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Document loading issue with 404 error in JavaScript(ES5) DOCX editor
11+
# Document loading issue with 404 error in JavaScript(ES5) DOCX Editor
1212

1313
If document loading fails and you see a 404 error in the browser console, the Document Editor is unable to reach a valid Web Service endpoint.
1414

@@ -20,16 +20,16 @@ The 404 error may occur due to the following reasons:
2020
- **The configured `serviceUrl` is invalid** – Issues like a missing trailing slash (`/`), wrong port number, incorrect API route, or typos will cause the editor to call incorrect endpoints.
2121
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.
2222

23-
## Solution
23+
## Solutions
2424

25-
1. Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
25+
- Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
2626

2727
```javascript
2828
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
2929
```
3030

3131
> Note: The hosted Web API link is provided for demonstration and evaluation only. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
3232

33-
2. If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.
33+
- If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.
3434

3535
---
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Document loading issue in JavaScript(ES6) DOCX editor | Syncfusion
3+
title: Document loading issue in JavaScript(ES6) DOCX Editor | Syncfusion
44
description: Document loading may fail with a 404 error if the Document Editor cannot reach a valid service URL, which may be due to the below reasons.
55
control: document loading issue with 404 error
66
platform: document-processing
77
documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Document loading issue with 404 error in JavaScript(ES6) DOCX editor
11+
# Document loading issue with 404 error in JavaScript(ES6) DOCX Editor
1212

1313
If document loading fails and you see a 404 error in the browser console, the Document Editor is unable to reach a valid Web Service endpoint.
1414

@@ -20,16 +20,14 @@ The 404 error may occur due to the following reasons:
2020
- **The configured `serviceUrl` is invalid** – Issues like a missing trailing slash (`/`), wrong port number, incorrect API route, or typos will cause the editor to call incorrect endpoints.
2121
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.
2222

23-
## Solution
23+
## Solutions
2424

25-
1. Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
25+
- Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
2626

2727
```javascript
2828
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
2929
```
3030

3131
> Note: The hosted Web API link is provided for demonstration and evaluation only. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
3232

33-
2. If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.
34-
35-
---
33+
- If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Document loading issue in React DOCX editor component | Syncfusion
3+
title: Document loading issue in React DOCX Editor component | Syncfusion
44
description: Document loading may fail with a 404 error if the Document Editor cannot reach a valid service URL, which may be due to the below reasons.
55
control: document loading issue with 404 error
66
platform: document-processing
77
documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Document loading issue with 404 error in React DOCX editor component
11+
# Document loading issue with 404 error in React DOCX Editor component
1212

1313
If document loading fails and you see a 404 error in the browser console, the Document Editor is unable to reach a valid Web Service endpoint.
1414

@@ -20,16 +20,14 @@ The 404 error may occur due to the following reasons:
2020
- **The configured `serviceUrl` is invalid** – Issues like a missing trailing slash (`/`), wrong port number, incorrect API route, or typos will cause the editor to call incorrect endpoints.
2121
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.
2222

23-
## Solution
23+
## Solutions
2424

25-
1. Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
25+
- Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
2626

2727
```javascript
2828
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
2929
```
3030

3131
> Note: The hosted Web API link is provided for demonstration and evaluation only. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
3232

33-
2. If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.
34-
35-
---
33+
- If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.
Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Document loading issue in Vue DOCX editor | Syncfusion
3+
title: Document loading issue in Vue DOCX Editor | Syncfusion
44
description: Document loading may fail with a 404 error if the Document Editor cannot reach a valid service URL, which may be due to the below reasons.
55
control: document loading issue with 404 error
66
platform: document-processing
77
documentation: ug
88
domainurl: ##DomainURL##
99
---
1010

11-
# Document loading issue with 404 error in Vue DOCX editor
11+
# Document loading issue with 404 error in Vue DOCX Editor
1212

1313
If document loading fails and you see a 404 error in the browser console, the Document Editor is unable to reach a valid Web Service endpoint.
1414

@@ -20,16 +20,14 @@ The 404 error may occur due to the following reasons:
2020
- **The configured `serviceUrl` is invalid** – Issues like a missing trailing slash (`/`), wrong port number, incorrect API route, or typos will cause the editor to call incorrect endpoints.
2121
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.
2222

23-
## Solution
23+
## Solutions
2424

25-
1. Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
25+
- Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
2626

2727
```javascript
2828
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
2929
```
3030

3131
> Note: The hosted Web API link is provided for demonstration and evaluation only. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property.
3232

33-
2. If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.
34-
35-
---
33+
- If you are using your own hosted Web API, ensure that the Web Service is running, active, and the configured service URL is valid.

0 commit comments

Comments
 (0)