Upgrade application from version 1.x to 2.1 ?

Answered
0
0

Hello – I searched the forum but cannot find how to take a 1.x application and upgrade it to 2.1.

Can you point me to the forum post ?

 

UPDATE: Here is what I tried from piecing together what I could from forum posts:

Remove references to WiseJ.Core and WiseJ.Web

Add Reference to WiseJ.Framework

I compile successfully but my web browser opens to a blank page now ?? What am I missing ?

I could not find any migration info in the documentation – at least not in any obvious place like right under 2.x – “Migrating from a previous version” where you would expect to find it.

UPDATE 2:

Now I am getting ”

“Could not load file or assembly ‘Wisej.Core’ or one of its dependencies.”

I have no idea where it’s still referencing WiseJ.Core ?

 

Does anything have to change in my Webconfig ?

I see my target framework is still 4.5 for httpRunTime – even though I selected 4.6.1 on the project.

 

<system.web>
<httpRuntime targetFramework=”4.5″ maxRequestLength=”1048576″/>
<compilation debug=”true” targetFramework=”4.6.1″>
<assemblies>
<!–
Add additional components here:
<add assembly=”Wisej.Web.Ext.JustGage”/>
–>
</assemblies>
</compilation>
</system.web>
<system.webServer>
<modules>
<add name=”Wisej” type=”Wisej.Core.HttpModule, Wisej.Core”/>
</modules>
<handlers>
<add name=”json” verb=”*” path=”*.json” type=”System.Web.HttpForbiddenHandler”/>
<add name=”wisej” verb=”*” path=”*.wx” type=”Wisej.Core.HttpHandler, Wisej.Core”/>
</handlers>

I found it  -for anyone else looking : https://wisej.com/docs/2.0/html/UpgradeFromWisej1.htm

Its under “Concepts” section

  • You must to post comments
Best Answer
0
0

Hi Edmond,

you need to change Wisej.Core to Wisej.Framework in web.config.

Find more information here:

https://wisej.com/docs/2.1/html/UpgradeFromWisej1.htm

Best regards
Frank

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.