A new free online translation service based on Google AJAX Language API was launched. It supports all most popular languages: English, Arabic, Chinese, Dutch, French, German, Italian, Japanese, Russian, Spanish, Ukrainian etc.
The translator can automatically detect the source language of the text and translate it to the target language. The user interface of the service also support all Google Translate languages.
There is also virtual keyboard functionality.
Technical notes about technologies and tools for programming.
Description of common and specific issues and ways to solve them
Monday, May 25, 2009
Tuesday, May 12, 2009
How to fix Basic Authentication issue on WebLogic 9.2/10.0/10.3 when using Acegi/Spring Security
HTTP Basic Authentication on WebLogic starting from version 9.2 (previous versions were not tested) works not correctly. The problem is that if there is some request to your application with "Authorization" header the request will be intercepted by WebLogic itself and will not be passed to your application. WebLogic will try to make authentication itself.
Such problem can occur in your application if you are using HTTP Basic Authentication with Acegi/Spring Security.
The only solution I have found to resolve the issue is to add
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credentials>
into the config.xml file (before closing tag
</security-configuration>):
<security-configuration>
...
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credentials>
</security-configuration>
This configuration will resolve the issue.
Such problem can occur in your application if you are using HTTP Basic Authentication with Acegi/Spring Security.
The only solution I have found to resolve the issue is to add
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credentials>
into the config.xml file (before closing tag
</security-configuration>):
<security-configuration>
...
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credentials>
</security-configuration>
This configuration will resolve the issue.
Labels:
acegi,
authentication,
spring security,
WebLogic
Subscribe to:
Posts (Atom)