Upgrading from Xamarin to MAUI - References like System.Web.Services or Mono.Data.Sqlite not working anymore?

Christoph Jarisch 0 Reputation points
2024-10-11T08:34:13.0066667+00:00

Hello, I'm trying to migrate a project from Xamarin.Forms to .Net MAUI.

With Xamarin.Forms I had some references inside the iOS and Android projects:

System.Data

System.Web.Services

Mono.Data.Sqlite

After migration I can find these under Dependencies – Assemblies with warning symbols.

Defining the namespaces is not working.

MAUI_Assemblies

Can I no longer use these references under .NET MAUI?

I want to consume ASMX (SOAP) web services and use its CookieContainer property.

I would also like to access the local Sqlite DB with commands, data readers, etc.

Maybe someone can help me. Thank you!

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,624 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Christoph Jarisch 0 Reputation points
    2024-10-14T17:34:22.96+00:00

    Apparently these references are no longer supported!?

    Mono.Data.Sqlite can be replaced by NuGet package Microsoft.Data.Sqlite

    ASMX (SOAP) web services client can be created as a WCF service reference.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.