Jun 13, 2011

Skype has stopped working on windows 7

Had this once with the current version, 5.3.011.

I think that they already know about this issue and working to solve it.

I thought it's something with the firewall but it doesn't looks like.

My solution that worked for me, founded among many forums is:
Start -> Run -> write '%appdata%\Skype' in this directory, delete a file named 'shared.xml'
Restart skype.

But i know it doesn't solve the problem for all cases, meaning you may have like me windows 7 64bit, do the same solution but it won't work, why ? Don't really know.

Dor

May 31, 2011

The SCM for this project has blocked this attempt to wipe out the project's workspace.

Hi,

It happen when i tried to wipe out the Hudson workspace. I have noticed also that this issue already open on Hudson Jira.

Solution: To wait for Hudson team or to do it manually.


Dor

May 16, 2011

Problems encountered while moving resources

Hi,

It appears that changing a capital letter package name like:
MONITOR into monitor
Is impossible in eclipse helios version. This happen to me on Windows 7 64bit.

Solution: Change this "MONITOR" into something like this "MONITORa" as a temporary name.
Then change the temporary name to "monitor" this should work.

In case you are using svn or subclipse plugin for eclipse, i thinks that you will need to do commit between changes.

Hoped i helped,
Dor

Mar 23, 2011

chrome wsdl

If you wondered why chrome unlike FF for example doesn't display WSDL, i have checked this issue, it's an open bug 434, and it will be fixed in the next chrome release.
So till then CTRL+U to view source solve this issue.


Dor

Jan 20, 2011

Invalid row number (100039) outside allowable range (0..65535)

Lately i got this error while using apache poi version 3.2 but it's still exists in 3.7:
"the poi 3.2 or 3.7 version support till 65535 max rows not more"

Actually, excel 2003 maximum rows in a sheet is 65535, but since than in version like in excel 2007 and excel 2010
the maximum rows per sheet is around 1m. But apache poi still doesn't support this amount of rows.

Meaning, that you need to split into several sheets
Something like this:

if (i>65535){ // or some other number or condirion
    // create a new sheet
    sheet = workBook.createSheet();
   i = 1;
}

Hoped that it helps,


Dor

Jan 6, 2011

java.lang.ClassNotFoundException: javassist.util.proxy.MethodFilter

I got this error while using maven, jetty, wicket, spring and hibernate all with annotations.
Found two solutions
1) Get the java assist jar using maven, but them i got into some other problems.

2) Use this :

 <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-jaxrs</artifactId>
  </dependency>
It seems that it solved the issue since the jaxrs contains this method filter.

If you know other or better solution, i am here to listen.

Hoped it helped,
Dor