Compile time error

I am a newbie in XML. I am trying to compile the following code. I am getting compile time errors. I have following environment varaibles set. Any help will be really appreciated.
TIA.
set JAVA_HOME=C:\Program Files\jdk1.3.1_03
set JWSDP_HOME=C:\Program Files\jwsdp-1.1
set JAXB_HOME=%JWSDP_HOME%\jaxb-1.0
set JAXB_LIBS=%JAXB_HOME%\lib
set JAXP_LIBS=%JWSDP_HOME%\jaxp-1.2.2\lib
set JWSDP_LIBS=%JWSDP_HOME%\jwsdp-shared\lib
set PATH=%JAVA_HOME%\bin;%JAXB_HOME%\bin;%JWSDP_HOME%\jwsdp-shared\bin;%PATH%
set CLASSPATH=%JAXB_LIBS%\jaxb-api.jar;%JAXB_LIBS%\jaxb-ri.jar;%JAXB_LIBS%\jaxb-xjc.jar;%JAXB_LIBS%\jaxb-libs.jar;%JAXP_LIBS%\jaxb-api.jar;%JAXP_LIBS%\endorsed\xercesImpl.jar;%JAXP_LIBS%\endorsed\xalan.jar;%JAXP_LIBS%\endorsed\sax.jar;%JAXP_LIBS%\endorsed\dom.jar;%JWSDP_LIBS%\jax-qname.jar;%JWSDP_LIBS%namespace.jar;.
C:\Learn XML>javac -verbose CountSax.java
[parsing started CountSax.java]
[parsing completed 63ms]
CountSax.java:3: package org.xml.sax does not exist
import org.xml.sax.* ;
^
CountSax.java:4: package org.xml.sax.helpers does not exist
import org.xml.sax.helpers.* ;
^
CountSax.java:5: package javax.xml.parsers does not exist
import javax.xml.parsers.*;
^
CountSax.java:7: cannot resolve symbol
symbol : class DefaultHandler
location: class CountSax
public class CountSax extends DefaultHandler {
^
[loading C:\jdk1.3.1_02\jre\lib\rt.jar(java/lang/String.class)]
CountSax.java:22: cannot resolve symbol
symbol : class Attributes
location: class CountSax
public void startElement(String name,Attributes atts) {
import java.io.* ;
import org.xml.sax.* ;
import org.xml.sax.helpers.* ;
import javax.xml.parsers.*;
public class CountSax extends DefaultHandler {
public static void main(String args[]) {
SAXParserFactory factory = SAXParserFactory.newInstance() ;
SAXParser saxParser = factory.newSAXParser() ;
saxParser.parse(new File(args[0]),new CountSax()) ;
static private int eltCount = 0 ;
public void startDocument() {
eltCount = 0 ;
public void startElement(String name,Attributes atts) {
eltCount ++ ;
public void endDocument() {
System.out.println("Total number of elements: " + eltCount) ;
}

Here is my classpath now
set CLASSPATH=%JAVA_HOME%;%JAXB_LIBS%\jaxb-api.jar;%JAXB_LIBS%\jaxb-ri.jar;%JAXB_LIBS%\jaxb-xjc.jar;%JAXB_LIBS%\jaxb-libs.jar;%JAXP_LIBS%\jaxb-api.jar;%JAXP_LIBS%\endorsed\xercesImpl.jar;%JAXP_LIBS%\endorsed\xalan.jar;%JAXP_LIBS%\endorsed\sax.jar;%JAXP_LIBS%\endorsed\dom.jar;%JWSDP_LIBS%\jax-qname.jar;%JWSDP_LIBS%namespace.jar;.
It still doesn't work. The pakages that it is complaining about comes from sax.jar which is already in classpath. Can anybody please help.
TIA

Similar Messages

  • Getting compile time errors during gwt application compilation

    Hi,
    I am getting below compile errors while running ant script for my GWT application.
    javac:
    [javac] Compiling 32 source files to D:\Projects\workspace\MckSurvey\war\WEB-INF\classes
    [javac] D:\Projects\workspace\MckSurvey\src\com\spinsci\survey\client\model\QuestionBean.java:38: type parameters of <X>X cannot be determined; no unique maximal instance exists for type variable X with upper bounds int,java.lang.Object
    [javac]           return get("questionId");
    [javac] ^
    I am using JDK 1.6 and ANT 1.7 s/w.
    below is the target which is used in the build file:
    <javac srcdir="src" includes="**" encoding="utf-8"
    destdir="war/WEB-INF/classes"
    nowarn="true"
    debug="true" debuglevel="lines,vars,source"
         includeDestClasses="false"
         source="1.5" target="1.5"      
              >
    <classpath refid="project.class.path"/>
    <compilerarg value="-Xlint:-unchecked"/>
    </javac>
    Please suggest me accordingly to overcome this generics compile time errors.
    Regards,
    Sunder.

    dannyyates wrote:
    There are/have been numerous examples of differences in spec interpretation between Eclipse (ecj) and the Sun compiler. I generally find that Eclipse is more accurate in it's interpretation than Sun! :-)
    I would suggest raising this on an appropriate Eclipse forum. The guys there are normally very good at digging into the issue and explaining why they think they are right or else admitting that they've got it wrong.I totally agree on both accounts. I myself have seen at least two compiler bugs and asked both the Sun guys and the Eclipse guys (through their respective bug tracking systems) and both have been resolved (in both cases ecj was actually right, but I wouldn't dare drawing any conclusions from that ;-)).

  • Pls suggest a reason for a compile time error

    the following program gives a compile time error bcoz of the statement
    ((State)this).val=this.val. if u could suggest why?
    public class Mainc
    public static void main(String args[])
    State st=new State();
    System.out.println(st.getvalue());
    State.Memento mem= st.memfunc();
    st.altervalue();
    System.out.println(st.getvalue());
    mem.restore();
    System.out.println(st.getvalue());
    public static class State
    protected int val=11;
    int getvalue()
         return val;
    void altervalue()
         val=(val+7)%31;
    Memento memfunc()
         return new Memento();
    class Memento
         int val;
    Memento()
         this.val=state.this.val;
         void restore()
              ((State)this).val=this.val;
    }

    The statement :
    ((State)this).val
    tries to cast Memento into its super class State which is inorrect [former is not latter's subclass]
    restore method should be as follows:
    void restore()
    State.this.val=this.val;
    }

  • Compile time errors for large code in try-catch blocks

    Hi, Has anyone ever faced this problem of a compile time error, where the Java compiler returns with the following error that Code is too large for try block.
    I have about 5000 thousand lines in my try-catch block and am facing this problem. Please suggest possible solutions

    1) Are you sure that your try/catch blocks contain 5 million lines?! I seriously don't believe this.Sounds like generated code. The generator needs to be a bit cleverer. In particular, it seems to be generating repeated blocks of code that ought to be stuffed into methods somewhere.

  • Compile Time Error in "stdio.h" File.

    Installed SunStudio 12.1 in LinuxMint 8 and tried to run the "Welcome" Sample C++ Application, but the IDE reported compilation errors. The Error from the OUTPUT windows is thus:
    Running "/home/ufonduo/DeveloperCenter/SunStudio-12.1/sunstudio12.1/bin/dmake -f Makefile CONF=Debug" in /home/ufonduo/SunStudioProjects/Samples/Welcome
    dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    ufondu --> 1 job
    ufondu --> 2 jobs
    /home/ufonduo/DeveloperCenter/SunStudio-12.1/sunstudio12.1/bin/dmake -f nbproject/Makefile-Debug.mk SUBPROJECTS= .build-conf
    /home/ufonduo/DeveloperCenter/SunStudio-12.1/sunstudio12.1/bin/dmake -f nbproject/Makefile-Debug.mk dist/Debug/SunStudio-Linux-x86/welcome
    ufondu --> 1 job
    mkdir -p build/Debug/SunStudio-Linux-x86
    CC -c -g -o build/Debug/SunStudio-Linux-x86/welcome.o welcome.cc
    ufondu --> Job output
    mkdir -p build/Debug/SunStudio-Linux-x86
    CC -c -g -o build/Debug/SunStudio-Linux-x86/welcome.o welcome.cc
    "/usr/include/stdio.h", line 480: Error: "(" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 480: Error: "(" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 480: Error: ")" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 480: Error: ")" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 483: Error: "(" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 483: Error: "(" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 483: Error: ")" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 483: Error: ")" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 488: Error: "(" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 488: Error: "(" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 488: Error: ")" expected instead of "__attribute__".
    "/usr/include/stdio.h", line 488: Error: ")" expected instead of "__attribute__".
    12 Error(s) detected.
    *** Error code 12
    dmake: Fatal error: Command failed for target `build/Debug/SunStudio-Linux-x86/welcome.o'
    Current working directory /home/ufonduo/SunStudioProjects/Samples/Welcome
    *** Error code 1
    dmake: Fatal error: Command failed for target `.build-conf'
    Current working directory /home/ufonduo/SunStudioProjects/Samples/Welcome
    *** Error code 1
    dmake: Fatal error: Command failed for target `.build-impl'
    Build failed. Exit value 1.
    Can someone help me get the SunStudio up and running?
    Tested the C and Fortran Sample Apps and they compiled and ran perfectly.
    I appreciate your imput.
    Edited by: user9952972 on Oct 30, 2010 8:58 AM
    Edited by: user9952972 on Oct 30, 2010 9:02 AM

    The same question is asked and answered in the Studio for Linux forum.
    dynamic where-clause
    Due to the wide variation in Linux distributions, even variances across "minor" updates, Studio does not always work on unsupported systems like yours. The Release Notes for the version of Studio you have lists the supported systems.

  • A compile time error

    Hello,
    After the precompile, I obtained the following error. Who
    can tell me where I can find the library "-laio" ?
    /usr/bin/ld: cannot open -laio: No such file or directory
    Stephen Lee
    null

    Stephen Lee (guest) wrote:
    : Hello,
    : After the precompile, I obtained the following error. Who
    : can tell me where I can find the library "-laio" ?
    : /usr/bin/ld: cannot open -laio: No such file or directory
    : Stephen Lee
    You can't. Linux doesn't yet support asynchronous I/O.
    The only thing you can do is to modify your Makefile.
    null

  • Hi sunil i used this code but showing error called (startingrow)compile time sub or function are not defined please

    i wanted to update data of excelsheet to mysql database  but displaying an compile time error as sub or functions are not defined           -------------->(startingrow)     please help me out 
    Dim cn As New ADODB.Connection
    Dim number, nRows, wds_id, production_data
      cn.ConnectionString = "Provider = MSDASQL.1; Persist Security Info = False;Data Source = mysql32; User ID = root;Password = bmx1; Initial Catalog = wds"
      cn.CursorLocation = adUseClient
      cn.Open
     Dim i As Integer, QryTxt As String
     i = StartingRow(wds_id) ---------->In this line
     Do Until i = Sheet1.Rows.count
      If Sheet1.Cells(i, 1) = "" Then
       nRows = i - 1
       Exit Do
      End If
      i = i + 1
     Loop
     For i = StartingRow(wds_id) To nRows
            QryTxt = QryTxt & "update tblprod_agr_006 set wds_id1 = '" & Replace(Sheet1.Cells(i, 1), "'", "''") & "'," & vbCrLf
                               QryTxt = QryTxt & "    column2 =  '" & Replace(Sheet1.Cells(i, 3), "'", "''") & "'," & vbCrLf
                               QryTxt = QryTxt & "    column3 =  '" & Sheet1.Cells(i, 4) & "'," & vbCrLf
            QryTxt = QryTxt & "where conditioncolumn =" & "'" & Sheet1.Cells(i, 2) & "'" & "" & vbCrLf
     Next
     cn.Execute (QryTxt)

    First off, is this relating to a Microsoft SQL Server database, or a MySQL database?  I see several references to MySQL in your example.
    Your code uses a function StartingRow() which isn't a built-in T-SQL function.  So, if it is a function you've defined, you need to make sure it's properly referenced in order to use it.  (may need a 2 or 3 part name if it isn't in the default
    schema or the same database.)
    Microsoft SQL Server Storage Engine PM

  • Compile time constants

    Hey i have a doubt regd compile time constants
    byte a =10,b=20;
    byte c= a+b; // compile time error coz a+b may exceed byte limit
    int a=10,b=20;
    int d=a+b; // not showing any error . a+b may exceed int limit
    can anyone clear me int his

    public class Test {
        public static void main(String[] args) {
            byte a = 10, b = 20;
            byte c = a+b;  //syntax error: "possible loss of precision"
            final byte d = 10, e = 20;
            byte f = d+e;  //OK
    }It's not about overflow, but implicit casting: in the expression a+b, bytes a and b
    are widened to int and the addition is 32-bit addition -- the result is an int.
    When you attempt to assign an int to a byte, the top three bytes are discarded,
    hence the syntax error "possible loss of precision". You get the same
    error message when assigning a double to a float.
    Why don't I get the syntax error with my d-e-f example? Variables d and e
    are declared final, so the compiler folds in their values. Thus it know 10+20
    is 30 and that the int value 30 fits into one byte.

  • Question about compile-time legality rules for cast conversion

    Hi, In the rules which explain compile-time legality for cast conversion, it is often mentioned the following scenario in the cast conversion of a compile-time type S to a compile-time type T:
    if S is a class type then:
    if T is a class type then either |S| <: |T| or |T| <: |S| or a compile time error occurs. Furthermore, if there exist a supertype X of T and a supertype Y of S such that X and Y are provably distinct parameterized types and that the erasures of X and Y are the same, a compile-time error occurs.
    As regards the quote in bold, I imagine the following scenario:
    1) S <: T and extends Y
    2) Y<T1...Tn>
    3) X<T1..Tn>
    4) T extends X
    Does the above represents a supertype X of T and a supertype Y of S such that X and Y are provenly distinct parameterized types? If that holds, what does it mean that the erasure of X and Y is the same?

    Declarative programing has all but gone the way of
    the doe doe because...
    1: It is not flexible (It is extremely difficult to
    change a complex system in a predetermined way)isn't this the "expert system" model?
    2: It lengthens the development cycle (see item 1)
    3: It normally forces the developer to add many
    things to there code to get things to work, that have
    nothing to do with the intent of the code.more things? the declarations or the declaration processing?
    In its defense (I like a declarative model but, do
    not like being forced into one)...not advocating a forced change in Java
    1: It increases code safety.
    2: It can shorten the development cycle, in certain
    circumstances (especially if it is not overused),
    because it can greatly increase the readability of
    code.
    3: It follows many best practices (although this is
    also possible in a Non-Declarative model).as for best practices what I'd like to see are declarative design patterns, Adapter, Singleton, Factory, Delegate, Strategy, Interpreter, Proxy, Visitor
    too often the design intent is lost in an implementation or design details can only be deduced by class/field/method names, comments, and accompanying docs
    So, if everyone had unlimited time, and an unlimited
    budget, yes declaritive is the way to go. Since that
    is not the case, we filtered out 99% of what it gave
    us, made sure the stuff that was getting in the way
    was removed, and what do you have???
    You guessed it OOA&D.
    Now having said that should we be more declarative? I
    think so, but I will tell you now, REQUIRING
    declarative elements in code is a sure fire way to
    get the majority of development groups to drop the
    language (and I think Java as it stands currently CAN
    be declarative, so if you have one of those unlimited
    budgets, go for it!).no need to require it
    I believe given good (reusable) declarative options, on top of OOP, will become the chosen approach
    reusable design declarations would lessen overall cost and increase readability

  • ClassNotFoundException at compiling time

    I am trying to access MySql database from a java applet, but my java file does not compile with this message error: java.lang.ClassNotFoundException...
    I have jdk1.3.1_03 installer under Windows98 SE and compiling with javac.exe...
    I have set the autoexec.bat environment to
    PATH C:\JDK1.3.1_03\BIN
    SET JAVA_HOME=C:\jdk1.3.1_03
    SET CLASSPATH=C:\WINDOWS\ESCRITORIO\JAVA\mm.mysql-2.0.13-bin.jar
    where i have the jar file. Also have proved withouth the filename on it, and many different combinations. I am completely stuck, please any idea will be very welcome!!!!!!!!
    Thanks...
    Cesar

    If you are getting an exception, it is a run-time error not a compile-time error.
    Try including your current working directory in your classpath.

  • Compile-time arithmetics

    Hi!
    Could anybody explain me pls what is compiler optimization in regard to the code below. Why compile-time error is not thrown?
    class Compiler
         final static int i1 = 10;
         final static int i2 = 0;
         final static int i3 = i1/i2;
         final static int i4 = 10/0;
         public static void main (String args[])
              System.out.println(i3+" "+i4);
    }

    Actually, the compiler will check for constant expressions, and compute the value during compilation instead of at runtime. When it is the case that the computation would result in an ArithmeticException, the compiler will skip the optimization and insert the actual code. Dividing by zero is not a syntactical error, so while it prevents optimizations, it should not prevent a class from compiling.

  • Compile time timestamp?

    Is there a way to get a datestamp at compile time so it can be comiled into an "about" dialog.
    If not, is there a way to extract the version from the jar file at run time and plug it into the message dialog?
    Thanks,
    --gary                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    The file date on the file system will not work because when someone downloads the program their local file create date will not match the build date of the program, and the whole reason for the build date is so that people comparing results can verify easily that they are using the same build.
    Yes, I have been given many hints, none of which actually work. Mostly they return null pointers at some point. I have tried over a dozen different approaches so far and every one has failed to read the manifest file in my jar. The closest I got was one that read the manifest in some random jar on the classpath, but trying to open the specifc jar has so far resulted in null pointers.
    I'm trying to use JarInputStream right now but the code generates a compile time error that someone here in this forum tells me is not possible. I have a hunch the JarInputStream approach is going to work if I can ever get the compiler to accept it.
    --gary                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Error 1046: Type was not found or was not a compile-time constant: Component Event.

    Hi Everyone..
    I am getting an Error 1046: Type was not found or was not a compile-time constant: Component Event.
    The ComponentEvent class has been imported,and also the event handling code is there. I am not sure what else is wrong, hope somebody can advise me. Thanks. The code is below, the point where the error occurs as indicated by the compiler has been highlighted.
    package 
    import flash.display.Sprite;
    import flash.media.Camera;
    import flash.media.Microphone;
    import flash.media.Video;
    import fl.controls.TextArea;
    import fl.controls.Button;
    import fl.controls.TextInput;
    import flash.events.SyncEvent;
    import flash.events.MouseEvent;
    import flash.events.FocusEvent;
    import flash.net.SharedObject;
    import flash.net.NetConnection;
    import flash.net.NetStream;
    import flash.events.NetStatusEvent;
    import flash.events.FocusEvent;
    import flash.events.ComponentEvent;
    public class VideoChat extends Sprite
      private var button:Button;
      private var text_so:SharedObject; 
      private var textArea:TextArea;
      private var textInput:TextInput;
      private var chatName:TextInput; 
      private var nc:NetConnection;
      private var nsOut:NetStream;
      private var nsIn:NetStream;
      private var rtmpNow:String;
      private var msg:Boolean; 
      private var cam:Camera;
      private var mic:Microphone;
      private var vid:Video;
      public function VideoChat ()
       //Set up UI
       textArea = new TextArea();
       textArea.setSize(500,280);
       textArea.move(20,54);
       addChild(textArea);
       textInput = new TextInput();
       textInput.setSize(500,24);
       textInput.move(20,340);
       textInput.addEventListener(ComponentEvent.ENTER,checkKey);
       addChild(textInput);
       button = new Button();
       button.width=50;
       button.label="Send";
       button.move(20,370);
       button.addEventListener(MouseEvent.CLICK, sendMsg);
       addChild(button);
       chatName = new TextInput;
       chatName.setSize (100,24);
       chatName.move (80,370);
       chatName.text="<Enter Name>";
       chatName.addEventListener (FocusEvent.FOCUS_IN, cleanName);
       addChild(chatName); 
       //Connect
       rtmpNow="rtmp:/VideoChat ";  
       nc=new NetConnection;
       nc.connect (rtmpNow);
       nc.addEventListener(NetStatusEvent.NET_STATUS,doSO);
       cam = Camera.getCamera();
       mic=Microphone.getMicrophone();
       //Camera Settings
       cam.setKeyFrameInterval(15);
       cam.setMode (240, 180, 15, false);
       cam.setMotionLevel(35,3000);
       cam.setQuality(40000 / 8,0);
       //Microphone Settings
       mic.gain = 85;
       mic.rate=11;
       mic.setSilenceLevel (25,1000);
       mic.setUseEchoSuppression (true);
       //Video Setup
       vid=new Video(cam.width, cam.height);
       addChild (vid);
       vid.x=10, vid.y=20;  
       //Attach local video and camera
       vid.attachCamera(cam);  
      private function doSO(e:NetStatusEvent):void
       good=e.info.code == "NetConnection.Connect.Success";
       if(good)
        //Set up shared object
        text_so=SharedObject.getRemote("test", nc.uri, false);
        text_so.connect (nc);
        text_so.addEventListener(SyncEvent.SYNC, checkSO);
      private function checkSO(e:SyncEvent):void
       for (var chung:uint; change<e.changeList.length; chng++)
        switch(e.chageList[chng].code)
         case "clear":
          break;
         case "success":
          break;
         case "change":
          textArea.appendText (text_so.data.msg + "\n");
          break;
      private function cleanName(e:FocusEvent): void
       chatName.text="";
      private function sendMsg(e:MouseEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      private function checkKey (e:ComponentEvent):void
       noName=(chatName.text=="<Enter Name>" || chatName.text=="");
       if (noName)
         textArea.appendText("You must enter your name \n");
       else
        text_so.setProperty("msg", chatName.text +": " + textInput.text);
        textArea.appendText (chatName.text +": "+textInput.text +"\n");
        textInput.text="";
      //Create NetStream instances
      private function checkConnect  (e:NetStatusEvent):void
       msg=e.info.code == "NetConnection.Connect.Success";
       if(msg)
        nsOut=new NetStream(nc);
        nsIn=new NetStream(nc);
        //NetStream
        nsOut.attachAudio(mic);
        nsOut.attachCamera(cam);
        nsOut.publish("camstream");
        nsIn.play("camstream");

    Hi Guys...
    I have found out what is wrong. I was importing the wrong package the correct one should have been:
    import fl.events.ComponentEvent;
    instead of
    import flash.events.ComponentEvent;
    I hope this is helpful for anyone caught in a simillar situation as me...Thanks..

  • Seeburger Module Error at Compilation Time

    Hi,
    I am using the below modules for configuring the EDI P.O (850) scenario, Initially I am taking the EDI file to one folder up to this fine, after that I am processing this file by using sender File adapter with modules, at the compilation time i am getting this error
    "Error: com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Object not found in lookup of SeeClassifier."
    Sender file adapter modules
    Processing Sequence:
    1     localejbs/SeeClassifier     Local Enterprise Bean     classifier
    2     localejbs/CallBicXIRaBean     Local Enterprise Bean     bic
    3     localejbs/Seeburger/MessageSplitter     Local Enterprise Bean     splitter
    4     localejbs/CallSapAdapter     Local Enterprise Bean     exit
    Module Configuration:
    bic                classifierAttID                     additionalInfo
    bic                classifierMappingID            additionalInfo
    bic                destSourceMsg                  MainDocument
    bic                destTargetMsg                   MainDocument
    bic                mappingName                     AUTO
    bic                splitter                                splitter
    classifier      destSourceMsg                 MainDocument
    classifier      showInAuditLog                true
    Thanks
    Ramesh
    Edited by: Venkataramesh Boppana on Nov 8, 2010 8:55 PM

    Hi Ramesh,
    "...Object not found in lookup of SeeClassifier..." means, that the Classifier module can not be found.
    Did you deploy SeeBaseTools and SeeExtendedTools and SeeModuleCollection?
    regards,
    Daniel

  • Finding errors in a Coldfusion source file at compile time

    My application is built using Coldfusion, Flex and MySQL as backend. I am using FlexBuilder 3 for editing/compiling the Flex source(MXML and Actionscript) files. For the Coldfusion(CF) source files(cfm and cfc files), I am using Coldfusion Builder to edit the source files since it is an IDE for Coldfusion so using that I can see the CF syntax highlighted and text which is commented. After, I complete editing the Coldfusion source files in Coldfusion Builder I close them in CF Builder. Then, the application is compiled using the Flex Builder, but I cannot see any syntax errors if they exist in the Coldfusion source files and I learn of the errors at run time that there is a tag nesting error.
    After, I edit the Coldfusion source files I close them in CF Builder so that Flexbuilder can compile the project and there is no issue of CF source file being locked due to being open in CF builder.
    1. What can I do to ensure I see the CF errors at compile time?
    2. Is there a better/another method than what I am doing to work on a project which has Flex/CF source files?
    Any advice would be appreciated.
    Thanks

    While you are 'compiling' your application since it has a FLEX front end that is compiled.  This actually does nothing with the ColdFusion files, or at least I can't imagine what it would be doing with those files.
    CFML is just-in-time compiled at run time.  And I do not believe using it in a Flex builder application would change this.
    What I would do in this situation is develop the back-end and front-end separately.  Build the CFML, test it with simple test cases run through direct browser requests of the CFML or some test harness CFML that executes your back-end logic and runs it through it paces.  Once that is built and tested.  Then attach the FLEX front end to it and test that.

Maybe you are looking for

  • Error while deploying on WL7

    hi! Deploying an application on WL7 I get this error: <i>java.lang.NullPointerException: Start server side stack trace: java.lang.NullPointerException      at weblogic.utils.enumerations.FileEnumeration.getNextFile (FileEnumeration.java(Compiled Code

  • Error in the PREP_GENCHECKS/NTACT_CHK phase

    Hello, I am getting an error in the PREP_GENCHECKS/NTACT_CHK phase during the "Checks" roadmap step in SAP Ehpi 700, while installing EHP4 for ERP 6.0. This is the error it talks about: ERROR> *** ERRORS during NAMETAB CHECK found *** Analyze the log

  • Strange problem: flash not working properly in IE

    http://avcgroup.golive.titaninternet.co.uk/ This is a link to the webpage where is my flash gallery. When u open the it u will see the gallery on top, little pictures will appear and will slide to the left. When u click on a small picture, a big pict

  • Iphoto events vs albums

    If photos are deleted from events will they remain in the albums I created. I copied and pasted the pics from events into albums, and now want to delete the events so we don't have duplicates...

  • How to remove interlacing Premiere is adding on export?

    I am using a Mac, and the first CC. Processor: 2.66 GHz Intel Core 2 Duo Memory: GB 1067 MHz DDR3 Graphics: NVIDIA GeForce 9400 256 MB When ever I export video, it comes out interlaced. Doesn't matter what size or codec. I also followed the steps her