Awesome presentation on Scalability, Availability & Stability Patterns by Jonas Bonér.
Scalability, Availability & Stability Patterns
by Ola Herrdahl on 23. Aug, 2010 in Software Development
The call to method ‘Deserialize’ needs to be dynamically dispatched, but cannot be because it is part of a base access expression
by Ola Herrdahl on 05. Aug, 2010 in Error of the Day
Error 66 The call to method ‘Deserialize’ needs to be dynamically dispatched, but cannot be because it is part of a base access expression. Consider casting the dynamic arguments or eliminating the base access.
Spring javamailSenderImpl bean configuration for Gmail
by Ola Herrdahl on 18. May, 2010 in Tips & Tricks
<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"> <property name="defaultEncoding" value="UTF-8"/> <property name="host" value="smtp.gmail.com"/> <property name="port" value="465"/> <property name="username" value="…"/> <!– e.g. username@gmail.com –> <property name="password" value="…"/> <property name="javaMailProperties"> <value> mail.debug=true mail.smtp.auth=true mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory mail.smtp.socketFactory.fallback=false </value> </property> </bean>
Invalid argument in JDBC call: parameter index out of range
by Ola Herrdahl on 11. May, 2010 in Error of the Day
16:45:04,220 WARN JDBCExceptionReporter:100 - SQL Error: -62, SQLState: SOO10 16:45:04,221 ERROR JDBCExceptionReporter:101 - Invalid argument in JDBC call: parameter index out of range: 7
ASP.NET: System.IO.IOException: The file or directory is corrupted and unreadable.
by Ola Herrdahl on 25. Apr, 2010 in Error of the Day
Exception Details: System.IO.IOException: The file or directory is corrupted and unreadable.
IntelliJ cannot create new class
by Ola Herrdahl on 21. Apr, 2010 in Error of the Day
NHibernate.HibernateException: instance not of expected entity type
by Ola Herrdahl on 08. Apr, 2010 in Error of the Day
Given:
[ActiveRecord(DiscriminatorValue = "OnState")]
class OnState: UnitState {
//…
}
I got
NHibernate.TransactionException: An error occured when trying to dispose the transaction —> NHibernate.HibernateException: instance not of expected entity type: Model.OnState is not a: Model.UnitState
Hmmm?
Strangest cannot resolve symbol error ever
by Ola Herrdahl on 19. Mar, 2010 in Error of the Day
This is a not so uncommon error: But when I switched to PooledHttpClient.java I got a bit confused: Seriously wtf happened here? Has my RAID controller gone berserk on the poor file? A couple of weeks ago I saw something similary happend on a production server (VPS). Suddenly one of my static HTML-files contained fragments of [...]
Column ‘ReservedWord’ does not belong to table ReservedWords.
by Ola Herrdahl on 05. Feb, 2010 in Error of the Day
System.ArgumentException: Column ‘ReservedWord’ does not belong to table ReservedWords.
I just can’t code without ReSharper
by Ola Herrdahl on 24. Jan, 2010 in Software Development
ReSharper from JetBrains is one of tools I can’t code without and here is why. I just created a new sample project in Visual Studio 2010 (without ReSharper installed) and started writing my first controller. Pretty soon I ran into my compile error. The type or namespace name ‘LayoutAttribute’ could not be found (are you [...]
Ola Herrdahl
Professional interwebs backbone developer. Currently learning embedded systems development the hard way.
- Importing and exporting using Mercurial 12. Nov, 2009
- adb install, -r …apk Failure 29. Dec, 2009
-
Strangest cannot resolve symbol error ever
19. Mar, 2010
-
IntelliJ cannot create new class
21. Apr, 2010
-
xUnit.net QuickStart
12. Nov, 2009
- Scalability, Availability & Stability Patterns 23. Aug, 2010
- The call to method ‘Deserialize’ needs to be dynamically dispatched, but cannot be because it is part of a base access expression 05. Aug, 2010
- Spring javamailSenderImpl bean configuration for Gmail 18. May, 2010
- Invalid argument in JDBC call: parameter index out of range 11. May, 2010
- ASP.NET: System.IO.IOException: The file or directory is corrupted and unreadable. 25. Apr, 2010
Categories
- Error of the Day (10)
- Hailstorm (2)
- Software Development (2)
- Tips & Tricks (2)

Recent Comments