Skip to content

Commit 3cadb66

Browse files
committed
Updated review changes
1 parent 6532b52 commit 3cadb66

10 files changed

Lines changed: 150 additions & 12 deletions

File tree

Document-Processing-toc.html

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3643,6 +3643,11 @@
36433643
<li><a href="/document-processing/word/word-processor/angular/how-to/customize-ribbon">Customize Ribbon</a></li>
36443644
</ul>
36453645
</li>
3646+
<li>Troubleshooting
3647+
<ul>
3648+
<li><a href="/document-processing/word/word-processor/angular/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
3649+
</ul>
3650+
</li>
36463651
<li>FAQ
36473652
<ul>
36483653
<li><a href="/document-processing/word/word-processor/angular/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
@@ -3855,7 +3860,7 @@
38553860
</li>
38563861
<li>Troubleshooting
38573862
<ul>
3858-
<li><a href="/document-processing/word/word-processor/react/troubleshooting/document-loading-issue-with-404-error">Document Loading Issue with 404 Error</a></li>
3863+
<li><a href="/document-processing/word/word-processor/react/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
38593864
</ul>
38603865
</li>
38613866
<li>FAQ
@@ -3996,6 +4001,11 @@
39964001
<li><a href="/document-processing/word/word-processor/vue/how-to/customize-ribbon">Customize Ribbon</a></li>
39974002
</ul>
39984003
</li>
4004+
<li>Troubleshooting
4005+
<ul>
4006+
<li><a href="/document-processing/word/word-processor/vue/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
4007+
</ul>
4008+
</li>
39994009
<li>FAQ
40004010
<ul>
40014011
<li><a href="/document-processing/word/word-processor/vue/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
@@ -4135,7 +4145,7 @@
41354145
</li>
41364146
<li>Troubleshooting
41374147
<ul>
4138-
<li><a href="/document-processing/word/word-processor/javascript-es5/troubleshooting/document-loading-issue-with-404-error">Document Loading Issue with 404 Error</a></li>
4148+
<li><a href="/document-processing/word/word-processor/javascript-es5/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
41394149
</ul>
41404150
</li>
41414151
<li>FAQ
@@ -4274,6 +4284,11 @@
42744284
<li><a href="/document-processing/word/word-processor/javascript-es6/how-to/customize-ribbon">Customize Ribbon</a></li>
42754285
</ul>
42764286
</li>
4287+
<li>Troubleshooting
4288+
<ul>
4289+
<li><a href="/document-processing/word/word-processor/javascript-es6/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
4290+
</ul>
4291+
</li>
42774292
<li>FAQ
42784293
<ul>
42794294
<li><a href="/document-processing/word/word-processor/javascript-es6/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>

Document-Processing/Word/Word-Processor/angular/document-editor-toc.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,13 @@
125125
<li><a href="/document-processing/word/word-processor/angular/how-to/customize-ribbon">Customize Ribbon</a></li>
126126
</ul>
127127
</li>
128-
<li>FAQ
128+
<li>Troubleshooting
129+
<ul>
130+
<li><a
131+
href="/document-processing/word/word-processor/angular/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
132+
</ul>
133+
</li>
134+
<li>FAQ
129135
<ul>
130136
<li><a href="/document-processing/word/word-processor/angular/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
131137
</ul>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: post
3+
title: Document loading issue in Angular DOCX editor | Syncfusion
4+
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.
5+
control: document loading issue with 404 error
6+
platform: document-processing
7+
documentation: ug
8+
domainurl: ##DomainURL##
9+
---
10+
11+
# Document loading issue with 404 error in Angular DOCX editor
12+
13+
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.
14+
15+
## Reasons
16+
17+
The 404 error may occur due to the following reasons:
18+
19+
- **The Web Service is not running or inactive** – When hosting your own Web API, the server may be stopped or not deployed correctly, causing required endpoints such as `/Import` or `/SpellCheck` to return 404.
20+
- **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.
21+
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.
22+
23+
## Solution
24+
25+
1. Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
26+
27+
```javascript
28+
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
29+
```
30+
31+
> 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.
32+
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+
---

Document-Processing/Word/Word-Processor/javascript-es5/troubleshooting/document-loading-issue-with-404-error.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ If document loading fails and you see a 404 error in the browser console, the Do
1616

1717
The 404 error may occur due to the following reasons:
1818

19-
- **The Web Service is not running or inactive** – When hosting your own ASP.NET Core Web API, the server may be stopped or not deployed correctly, causing required endpoints such as `/Import` or `/SpellCheck` to return 404.
19+
- **The Web Service is not running or inactive** – When hosting your own Web API, the server may be stopped or not deployed correctly, causing required endpoints such as `/Import` or `/SpellCheck` to return 404.
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.
21-
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid (`https://ej2services.syncfusion.com/production/web-services/api/documenteditor/`).
21+
- **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

2323
## Solution
2424

@@ -28,8 +28,8 @@ The 404 error may occur due to the following reasons:
2828
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
2929
```
3030

31-
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.
31+
> 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-
> Note: The hosted Web API link is provided for demonstration and evaluation only. For production use, host your own web service with the required server configuration. See the GitHub Web Service example or use the Docker image for deployment guidance.
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.
3434

3535
---

Document-Processing/Word/Word-Processor/javascript-es6/ej2-typescript-document-editor-toc.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,12 @@
126126
<li><a href="/document-processing/word/word-processor/javascript-es6/how-to/customize-ribbon">Customize Ribbon</a></li>
127127
</ul>
128128
</li>
129+
<li>Troubleshooting
130+
<ul>
131+
<li><a
132+
href="/document-processing/word/word-processor/javascript-es6/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
133+
</ul>
134+
</li>
129135
<li>FAQ
130136
<ul>
131137
<li><a href="/document-processing/word/word-processor/javascript-es6/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: post
3+
title: Document loading issue in JavaScript(ES6) DOCX editor | Syncfusion
4+
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.
5+
control: document loading issue with 404 error
6+
platform: document-processing
7+
documentation: ug
8+
domainurl: ##DomainURL##
9+
---
10+
11+
# Document loading issue with 404 error in JavaScript(ES6) DOCX editor
12+
13+
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.
14+
15+
## Reasons
16+
17+
The 404 error may occur due to the following reasons:
18+
19+
- **The Web Service is not running or inactive** – When hosting your own Web API, the server may be stopped or not deployed correctly, causing required endpoints such as `/Import` or `/SpellCheck` to return 404.
20+
- **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.
21+
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.
22+
23+
## Solution
24+
25+
1. Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
26+
27+
```javascript
28+
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
29+
```
30+
31+
> 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.
32+
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+
---

Document-Processing/Word/Word-Processor/react/document-editor-toc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
</li>
129129
<li>Troubleshooting
130130
<ul>
131-
<li><a href="/document-processing/word/word-processor/react/troubleshooting/document-loading-issue-with-404-error">Document Loading Issue with 404 Error</a></li>
131+
<li><a href="/document-processing/word/word-processor/react/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
132132
</ul>
133133
</li>
134134
<li>FAQ

Document-Processing/Word/Word-Processor/react/troubleshooting/document-loading-issue-with-404-error.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ If document loading fails and you see a 404 error in the browser console, the Do
1616

1717
The 404 error may occur due to the following reasons:
1818

19-
- **The Web Service is not running or inactive** – When hosting your own ASP.NET Core Web API, the server may be stopped or not deployed correctly, causing required endpoints such as `/Import` or `/SpellCheck` to return 404.
19+
- **The Web Service is not running or inactive** – When hosting your own Web API, the server may be stopped or not deployed correctly, causing required endpoints such as `/Import` or `/SpellCheck` to return 404.
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.
21-
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid (`https://ej2services.syncfusion.com/production/web-services/api/documenteditor/`).
21+
- **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

2323
## Solution
2424

@@ -28,8 +28,8 @@ The 404 error may occur due to the following reasons:
2828
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
2929
```
3030

31-
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.
31+
> 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-
> Note: The hosted Web API link is provided for demonstration and evaluation only. For production use, host your own web service with the required server configuration. See the GitHub Web Service example or use the Docker image for deployment guidance.
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.
3434

3535
---

Document-Processing/Word/Word-Processor/vue/document-editor-toc.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,12 @@
127127
<li><a href="/document-processing/word/word-processor/vue/how-to/customize-ribbon">Customize Ribbon</a></li>
128128
</ul>
129129
</li>
130+
<li>Troubleshooting
131+
<ul>
132+
<li><a
133+
href="/document-processing/word/word-processor/vue/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
134+
</ul>
135+
</li>
130136
<li>FAQ
131137
<ul>
132138
<li><a href="/document-processing/word/word-processor/vue/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: post
3+
title: Document loading issue in Vue DOCX editor | Syncfusion
4+
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.
5+
control: document loading issue with 404 error
6+
platform: document-processing
7+
documentation: ug
8+
domainurl: ##DomainURL##
9+
---
10+
11+
# Document loading issue with 404 error in Vue DOCX editor
12+
13+
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.
14+
15+
## Reasons
16+
17+
The 404 error may occur due to the following reasons:
18+
19+
- **The Web Service is not running or inactive** – When hosting your own Web API, the server may be stopped or not deployed correctly, causing required endpoints such as `/Import` or `/SpellCheck` to return 404.
20+
- **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.
21+
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.
22+
23+
## Solution
24+
25+
1. Update the application to use the new hosted Document Editor Web Service URL introduced in v31.x.x. For example:
26+
27+
```javascript
28+
container.serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/';
29+
```
30+
31+
> 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.
32+
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+
---

0 commit comments

Comments
 (0)