Welcome!

This community is for professionals and enthusiasts of the Genio platform.
Share your questions and challenges, and help your partners!

0

0
Silvestre Tivir
On 12/13/21, 1:22 PM




This is the error that shows when entering the form where the geographic coordinates field exists.



0
António M.
On 12/13/21, 1:12 PM

It will be hard for anyone to give you a solution without knowing what the problem is. Inside your GenioMVC folder there's a file named "Web.config", in that file you should have some lines of code like the ones below:

<customErrors mode="On" defaultRedirect="~/ServerError">
    <error statusCode="404" redirect="~/NotFound" />
</customErrors>

Change the mode from "On" to "Off" and publish the solution again, this will give you a more detailed error message and, hopefully, a better idea of what the problem is.

  • Flag

To solve an error in the table about geographic coordinates it was necessary to update the version of Microsoft.SqlServer.Types in my project in the Web.config file.

<runtime>

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

.

.

.

<dependentAssembly>

<assemblyIdentity name="Microsoft.SqlServer.Types" publicKeyToken="89845dcd8080cc91" culture="neutral" />

<bindingRedirect oldVersion="0.0.0.0-14.0.0.0" newVersion="14.0.0.0" />

</dependentAssembly>

.

.

.

</assemblyBinding>

</runtime>

Silvestre Tivir
on 12/14/21, 11:59 AM

Keep Informed

About the Community

This platform is for beginners and experts willing to share their Genio knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers. Read Guidelines

Question tools

44 follower(s)

Stats

Asked: 12/13/21, 7:51 AM
Seen: 1112 times
Last updated: 12/13/21, 1:22 PM