# Remote Application

{% embed url="<https://youtu.be/CnAK-tQK0vc>" %}

{% file src="<https://1168517704-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FKLgWHTlbcMvpwVT7mLBW%2Fuploads%2FgqoBQl4Xc1GQIKEiMGMs%2FWisej.Hybrid.OnlineSample.zip?alt=media&token=4fcf87ba-593c-437d-8d68-45b91f7249fa>" %}

## Configuration

When creating a new Hybrid Client application, an online application can be specified with the **config.StartupUrl** member.

{% code title="Startup.cs" %}

```csharp
public static MauiApp Main()
{
	var builder = MauiApp.CreateBuilder();
	builder
		.UseMauiApp<App>()

		.UseWisejHybrid((config) =>
		{
			// Provide the startup URL for the Hybrid WebView.
			config.StartupUrl = "https://demo.wisej.com/Hybrid";
		});

	return builder.Build();
}
```

{% endcode %}

In the example above the client application registers an online app, hosted at **demo.wisej.com.** When the application starts up for the first time, it will navigate to this page.

&#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.wisej.com/hybrid/development/remote-application.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
