Skip to content
Merged
25 changes: 25 additions & 0 deletions Document-Processing-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -3643,6 +3643,11 @@
<li><a href="/document-processing/word/word-processor/angular/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/word/word-processor/angular/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/angular/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down Expand Up @@ -3853,6 +3858,11 @@
<li><a href="/document-processing/word/word-processor/react/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/word/word-processor/react/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/react/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down Expand Up @@ -3991,6 +4001,11 @@
<li><a href="/document-processing/word/word-processor/vue/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/word/word-processor/vue/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/vue/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down Expand Up @@ -4128,6 +4143,11 @@
<li><a href="/document-processing/word/word-processor/javascript-es5/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<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>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/javascript-es5/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down Expand Up @@ -4264,6 +4284,11 @@
<li><a href="/document-processing/word/word-processor/javascript-es6/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<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>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/javascript-es6/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,12 @@
<li><a href="/document-processing/word/word-processor/angular/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a
href="/document-processing/word/word-processor/angular/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/angular/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
layout: post
title: Document loading issue in Angular DOCX editor | Syncfusion
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.
control: document loading issue with 404 error
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---

# Document loading issue with 404 error in Angular DOCX editor

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.

## Reasons

The 404 error may occur due to the following reasons:

- **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.
- **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.
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.

## Solution

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

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

> 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.

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.

---
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,11 @@
<li><a href="/document-processing/word/word-processor/javascript-es5/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<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>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/javascript-es5/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
layout: post
title: Document loading issue in JavaScript(ES5) DOCX editor | Syncfusion
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.
control: document loading issue with 404 error
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---

# Document loading issue with 404 error in JavaScript(ES5) DOCX editor

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.

## Reasons

The 404 error may occur due to the following reasons:

- **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.
- **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.
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.

## Solution

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

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

> 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.

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.

---
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,12 @@
<li><a href="/document-processing/word/word-processor/javascript-es6/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<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>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/javascript-es6/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
layout: post
title: Document loading issue in JavaScript(ES6) DOCX editor | Syncfusion
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.
control: document loading issue with 404 error
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---

# Document loading issue with 404 error in JavaScript(ES6) DOCX editor

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.

## Reasons

The 404 error may occur due to the following reasons:

- **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.
- **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.
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.

## Solution

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

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

> 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.

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.

---
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@
<li><a href="/document-processing/word/word-processor/react/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a href="/document-processing/word/word-processor/react/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/react/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
layout: post
title: Document loading issue in React DOCX editor component | Syncfusion
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.
control: document loading issue with 404 error
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---

# Document loading issue with 404 error in React DOCX editor component

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.

## Reasons

The 404 error may occur due to the following reasons:

- **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.
- **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.
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.

## Solution

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

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

> 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.

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.

---
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,12 @@
<li><a href="/document-processing/word/word-processor/vue/how-to/customize-ribbon">Customize Ribbon</a></li>
</ul>
</li>
<li>Troubleshooting
<ul>
<li><a
href="/document-processing/word/word-processor/vue/troubleshooting/document-loading-issue-with-404-error">Document loading issue with 404 error</a></li>
</ul>
</li>
<li>FAQ
<ul>
<li><a href="/document-processing/word/word-processor/vue/faq/unsupported-file-format">Unsupported Warning Message When Opening a Document</a></li>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
layout: post
title: Document loading issue in Vue DOCX editor | Syncfusion
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.
control: document loading issue with 404 error
platform: document-processing
documentation: ug
domainurl: ##DomainURL##
---

# Document loading issue with 404 error in Vue DOCX editor

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.

## Reasons

The 404 error may occur due to the following reasons:

- **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.
- **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.
- **The application is using an old or discontinued Document Editor service URL** – When using an old Document Editor service URL which no longer valid.

## Solution

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

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

> 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.

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.

---