MonoX support board

Start the conversation, ask questions and share tips and solutions with fellow developers.

Non-registered users can only browse through our support boards. Please register now if you want to post your questions. It takes a second and it is completely free. Alternatively, you can log in without registration using your credentials at major sites such as Google, Microsoft Live, OpenId, Facebook, LinkedIn or Yahoo.

Danish alphabet  (Mono Support )

Viewed 205057 time(s), 16 post(s) 5/9/2011 8:05:50 AMby Helene

Related topics

khorvat

khorvat

5/11/2011 1:21:18 PM
Hi,

this is minor correction that I need to make to get your site on-line

<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="MonoSoftware.UrlRewriter" publicKeyToken="d1a569f05f515132"  culture="neutral"/>
        <bindingRedirect oldVersion="0.0.0.0-4.0.2650.40" newVersion="4.0.2686.40"/>
      </dependentAssembly>
    </assemblyBinding>
</runtime>

Can you please test the issue now and get back to us ?

Regards
This content has not been rated yet. 
15993 Reputation 2214 Total posts
Helene

Helene

5/9/2011 8:07:59 AM
Hi

I have a problem if a user chooses a profilename containing the danish letters æ ø or å
(I have added an image of the letters if you can´t see them here)

The profile is created in the database (with the right letters) and an e-mail to the user, saying that the profile is created, is send .
The user accepts from the e-mail and is logged in and can write on the wall but when the user want to see "My profile" is says that the profile does not exist.

The same problem appears if the <alt> attribute is shown if an image is missing (? insted of the letter)

I have a feeling that it has something to do do with the Unicode but I don´t know much about it and where to change it.

Can you maybe help me?

Regards
This content has not been rated yet. 
315 Reputation 39 Total posts
khorvat

khorvat

5/9/2011 10:38:58 AM
Hi Helene,

we have found the source of the issue, it is most likely related to URL rewriting in a 3rd party library and we are performing some test to be sure that we get it right. In the mean while you can apply quick fix by removing the URL rewriting from the link you are using (if you are generating the link's URL). If this is MonoX built in issue we will provide you with a solution as soon as possible.

Regards
This content has not been rated yet. 
15993 Reputation 2214 Total posts
khorvat

khorvat

5/10/2011 8:14:09 AM
Hi,

while we are performing intensive testing on this issue, can you tell us are you using IIS 7 / 7.5 ?

Regards
This content has not been rated yet. 
15993 Reputation 2214 Total posts
Helene

Helene

5/10/2011 10:10:46 AM
Hi khorvat

I´m sorry it gives you so much trouble.

I´m not sure about the IIS but I have asked the support at my hosting provider but I don´t think they reply as fast as you do ;)

But I´ll tell you as soon as I know.

Regards



This content has not been rated yet. 
315 Reputation 39 Total posts
Helene

Helene

5/10/2011 10:14:20 AM
Hi again

I forgot to mention that I can´t create group categories either.

Maybe that can help!??

This content has not been rated yet. 
315 Reputation 39 Total posts
Helene

Helene

5/10/2011 10:17:08 AM
Hi again again

Okay they were fast......it is IIS 7,5

Regards
This content has not been rated yet. 
315 Reputation 39 Total posts
khorvat

khorvat

5/10/2011 11:38:48 AM
Hi,

we have fixed the issue with URL rewriting, there was a wrong encoding in 3rd party tool used for URL rewriting. The issue was solved only for IIS 7 and 7.5 while IIS6 is still causing some problems (it can handle the culture specific characters in folder names). You can find attached URL rewriter assembly for .NET 2.0/3.5 and 4.0. After you apply (copy the assembly to the bin) the fix everything should work as expected.

Note: URL rewriting assembly version is higher than your version of MonoX so you'll probably need to setup the assembly binding in the web.config (You can find more information here). This fix will be included in the next release of MonoX, so every version from 4.0.2650.35 or 4.0.2650.40 and above should have this included.

We have tried to create a MonoX group with culture specific characters and we didn't encounter any problems, so can you please open a new topic for this issue and describe the issue in more detail (Please do this after you test the above issue maybe it is related to URL rewriting).
 
Regards
This content has not been rated yet. 
15993 Reputation 2214 Total posts
Helene

Helene

5/10/2011 2:02:56 PM
Hi khorvat

Very good that you found and fixed the issue but the change in the web.config file is a bit too hardcore for me.

Can you please tell me how I setup the assembly binding?

I have copied the .dll (4.0.2686.40 is that the right one for 4.0?) to the binfolder.

Thank you very much in advance.

Regards
This content has not been rated yet. 
315 Reputation 39 Total posts
khorvat

khorvat

5/10/2011 2:23:09 PM
Hi Helene,

yes this is right version for .Net 4.0

I have copied the .dll (4.0.2686.40 is that the right one for 4.0?) to the binfolder.

To implement assembly binding you need to copy the following configuration to your web.config:

<runtime>
    ...
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="MonoSoftware.UrlRewriter" />
        <bindingRedirect oldVersion="4.0.2650.40" newVersion="4.0.2686.40"/>
      </dependentAssembly>
    </assemblyBinding>
    ...
</runtime>

Note if you have runtime section in your web.config then you should append the code above.

Regards

This content has not been rated yet. 
15993 Reputation 2214 Total posts
Helene

Helene

5/10/2011 2:55:29 PM
Hi again

Thank you very much.

One question more though

Where exactly should I place the code in the web.config?

I suppose it matters where it is placed!

Sorry but I´m not a programmer :(

Regards
This content has not been rated yet. 
315 Reputation 39 Total posts
1 2