• Building Web 2.0 UIs with JSF, Realtime Updates with JSF and Ajax Push Taught at GIDS

    JavaServer Faces is a Java-based Web application framework intended developed to simplify development integration of Web-based user interfaces. It is often mentioned together with Ajax, a combination of technologies t...
    Profile Photo
    created by shaguf5575
  • Javassist Exception when I upgrade from jdk 1.5 to jdk 1.6

    Hello All,   I've started getting javassist exceptions when I upgrade the sun jdk that I use from 1.5 release 12 to any 1.6 releases (I tested it with releases 7 and 13). Please check out my post in the Javassi...
    Profile Photo
    created by megalodon
  • how to Modify j2me class file without preverification

    Hi All, I am using Javassist to modify a MIDlet class. I was successfully able to change the midlet class file and view the changes in Bytecode Viewer. But when i try to run the application with WTK emulator it give...
    Profile Photo
    created by shivkumar.ms
  • javassit can't find some compile error.how could correct it.

    hi, I use javassist make a CtMethod.The method content is : public void executor() { String result=""; result=1; } and use CtClass.make() to build this method,but the javassist cant find the syntax error.how cou...
    Profile Photo
    created by ashem
  • CannotCompileExceptio-[source error]: no such class

    Hi, I am getting 'CannotCompileExceptio-[source error]: no such class: MyAlert' error while making a reference to an static Inner class name 'MyAlert'. *********below is my code*********** public void addCodeToSta...
    Profile Photo
    created by leooon
  • Thank you and Help us learn how Feature Requests R gathered

    Thank you to everyone who completed the survey! We’re getting great feedback. If you haven’t already participated, please take a few moments to complete the survey located at the ...
    Profile Photo
    created by plaurentphd
  • help me please

    Hello everybody. I'm working with Javassist and have trouble with the directory when i try to create a class (use makeClass()). I'd like to make a class in a determine Folder(such as C:\temp\). How can i do? Thanks ev...
    Profile Photo
    created by bantumi
  • Help us learn how Feature Requests R gathered

    My name is Paula Laurent. I am a Computer Science PhD student at DePaul University conducting research on soliciting and prioritizing requirements. The goal of this research is to find out about the current requiremen...
    Profile Photo
    created by plaurentphd
  • Auto deployment of project

    I have eclipse europa with WTP plugin. My local server is jboss 4.0.3. When ever i make changes to my java files/jsp or anything else in IDE and start the local server, my changes are not deployed into local server au...
    Profile Photo
    created by jamesbilla
  • Patch process for non committers?

    I am finding a number of bugs and general enhancements that I need as I go about implementing my project on top of Javassist. At the moment I have a number of workarounds in my code base. My project however is open so...
    Profile Photo
    last modified by paulkeeble
  • Is Java 6 completely supported?

    I'm running into issues like """ Caused by: java.lang.ArrayIndexOutOfBoundsException: 5 at javassist.bytecode.StackMapTable$Walker.sameLocals(StackMapTable.java:240) at javassist.bytecode.StackMapTable$Walker.stack...
    Profile Photo
    last modified by memeplex
  • Support for Java 6 class file format

    Hi Chiba, What's the 'official' stand on support for the Java 6 class file format? I'm running into issues when instrumenting Java 6 class files (format 50), even though my code works fine when the code-to-be-instru...
    Profile Photo
    created by yanic
  • Javassist version 3.6.0.GA maven2

    Hi, Could anyone upload Javassist version 3.6.0.GA to Ibiblio so we can get it via maven? Thanks, Johan
    Profile Photo
    last modified by johanhaleby
  • Byte code limits?

    Are there limits (beyond normal VM limits) on how much code can be generated for a class? In my experiments it appears that after roughly 8,200 statements within a class, the offsets in the opcode get stored wrong to ...
    Profile Photo
    last modified by tdrums
  • javassist-3.6/jdk15/OS400 ClassFormatError 0000 6305

    On OS/400, with jdk15, when I deploy JBoss Seam, I get a ClassFormatError (see bellow). When I replace javassist by cglib, it works again. When I use JBoss Seam on my PC, everything works fine. When I create a smal...
    Profile Photo
    created by mbakkali
  • Bug version 3.6 with an addCatch

    I think it's a new bug because the version 3.4 doesn't call exception when I make an add catch. ClassPool cp = ClassPool.getDefault(); CtClass ct = cp.get(beanName); CtClass excType = cp.get("java.lang.Exception")...
    Profile Photo
    created by xmen911
  • Replacing the static method

    I am new to javassist API. I need to do some task using byte code replacement. I have 3 classes something like given below public class A { public void method() { System.out.println("Method in A"); } } public ...
    Profile Photo
    created by azeem_is
  • Loading all the hierarchical context on a toClass invocation

    Hello everybody, I use javassist to create on the fly classes, for instance, I create a class Entity, and then a class Agent extending Entity. No problem to create them but when I try to do a toClass to create a new ...
    Profile Photo
    created by mphuget
  • Javassist maven naming

    I'm working on a maven build script for Javassist, and I would like to upload the compiled jar to the maven repository, so that it can be used by other projects. The current location of javassist in the central maven ...
    Profile Photo
    created by pgier
  • FYI: Fixed the annotation equals/hashCode

    I found a bug in the annotation's equals/hashcode processing. It wasn't following the spec so you couldn't compare them with JDK annotations or use them in the same collections. I've fixed it in javassist head. Rel...
    Profile Photo
    created by adrian.brock