Unable to compile Pro C file in windows

Hi
I have installed oracle 11g rel1 in windows XP. But the problem is i am unable to compile Pro C file to produce executable. It is able to convert pro c file to .c file. But not able to produce any executable. My installation did not installed pro c GUI either. nor any demo file of pro c is available under precomp/ folder. Has this installation gone wrong or how can i produce executable?
Thanks
Sas

y dont u try this...i m not sure if its a right way to do things, but seems like it can work
$ORACLE_HOME/bin/proc test.pc
cc -I${ORACLE_HOME}/precomp/public -c test.c
do : find /cisa -name "*clntsh*" -print
say u get sumthing lyk this
$ORACLE_HOME/lib32/libclntsh.so.10.1
// instead of this:
cc -o test test.c -L $ORACLE_HOME/lib -lclntsh
write:
cc -o test test.c -L $ORACLE_HOME/lib $ORACLE_HOME/lib32/libclntsh.so.10.1
so u r directly refering to the library while linking

Similar Messages

  • REP-0118 Unable to create a temporary file in "Windows 7 "

    We are using Report Builder Version 6.0.8.24.0 and Windows7 32 bit operating system, here
    While Running a Report through form i am getting this below
    error.
    REP-0118 Unable to create a temporary file*
    But while running the same report in a windows 98 or windowsXp PC
    i dont get this error.
    What might be the problem.
    pls advice the solution....
    thanks in Advance...
    Stalin...

    try this..
    REP-118: Unable to create a temporary file.
    Case 1: The environment variable that determines in what directory to create temporary files is set to an invalid directory.
    Case 2: There is not enough free space on the disk to create the temporary file.
    Case 3: A temporary file that cannot be modified already exist
    In regedit under branch hkey_local_machine/software/oracle/<oracle home> 
    I have changed the variable REPORTS_TMP. I changed the value for this to c:\reports_tmp
    or you can use something like this where you want Oracle reports to create temp files. Hope this helps

  • Unable to compile the Java Files generated by JAXB

    Hi,
    I have generated the Java Files for a DTD and .xjs file using JAXB. But when i tyr to compile the .java files generated i am getting errors.
    My DTD file is addctq.dtd
    <?xml version="1.0" encoding="UTF-8"?>
    <!ELEMENT AddCtq (Ctq*)>
    <!ELEMENT Ctq (PartNumber ,PartDescription,CtqDescription,CtqType,ProductLine,Supplier,Ppctq,Ctp,Ctc,CtqCode1,CtqCode2,CtqCode3,Commodity,SubCommodity,UnitOfMeasure,Client,SamplingFrequency,Remarks,VariableData)>
    <!ELEMENT VariableData (SubGroupSize, Specification,Nominal,Usl,Ual,Lal,Lsl,Zal,RangeVal?,RangeAlarmVal?)>
    <!ELEMENT PartNumber (#PCDATA)>
    <!ATTLIST PartNumber new CDATA #REQUIRED >
    <!ELEMENT PartDescription (#PCDATA)>
    <!ELEMENT CtqDescription (#PCDATA)>
    <!ELEMENT CtqType (#PCDATA)>
    <!ELEMENT ProductLine (#PCDATA)>
    <!ELEMENT Supplier (#PCDATA)>
    <!ELEMENT Ppctq (#PCDATA)>
    <!ELEMENT Ctp (#PCDATA)>
    <!ELEMENT Ctc (#PCDATA)>
    <!ELEMENT CtqCode1 (#PCDATA)>
    <!ELEMENT CtqCode2 (#PCDATA)>
    <!ELEMENT CtqCode3 (#PCDATA)>
    <!ELEMENT Commodity (#PCDATA)>
    <!ELEMENT SubCommodity (#PCDATA)>
    <!ELEMENT UnitOfMeasure (#PCDATA)>
    <!ELEMENT Client (#PCDATA)>
    <!ELEMENT SamplingFrequency (#PCDATA)>
    <!ELEMENT Remarks (#PCDATA)>
    <!ELEMENT SubGroupSize (#PCDATA)>
    <!ELEMENT Specification (#PCDATA)>
    <!ELEMENT Nominal (#PCDATA)>
    <!ELEMENT Usl (#PCDATA)>
    <!ELEMENT Ual (#PCDATA)>
    <!ELEMENT Lal (#PCDATA)>
    <!ELEMENT Lsl (#PCDATA)>
    <!ELEMENT Zal (#PCDATA)>
    <!ELEMENT RangeVal (#PCDATA)>
    <!ELEMENT RangeAlarmVal (#PCDATA)>
    and the .xjs file i created is addctq.xjs
    <?xml version="1.0" encoding="UTF-8" ?>
    <xml-java-binding-schema version="1.0-ea">
    <options package="com.geindustrial.sqms"/>
    <element name="AddCtq" type="class" root="true">
    <content>
    <element-ref name="Ctq"/>
    </content>
    </element>
    <element name="Ctq" type="class">
    <content>
         <element-ref name="PartNumber"/>
         <element-ref name="PartDescription"/>
         <element-ref name="CtqDescription"/>
         <element-ref name="CtqType"/>
         <element-ref name="ProductLine"/>
         <element-ref name="Supplier"/>
         <element-ref name="Ppctq"/>
         <element-ref name="Ctp"/>
         <element-ref name="Ctc"/>
         <element-ref name="CtqCode1"/>
         <element-ref name="CtqCode2"/>
         <element-ref name="CtqCode3"/>
         <element-ref name="Commodity"/>
         <element-ref name="SubCommodity"/>
         <element-ref name="UnitOfMeasure"/>
         <element-ref name="Client"/>
         <element-ref name="SamplingFrequency"/>
         <element-ref name="Remarks"/>
         <element-ref name="VariableData"/>
    </content>      
    </element>
    <element name="VariableData" type="class">
    <content>
    <element-ref name="SubGroupSize"/>
    <element-ref name="Specification"/>
    <element-ref name="Nominal"/>
    <element-ref name="Usl"/>
    <element-ref name="Ual"/>
    <element-ref name="Lal"/>
    <element-ref name="Lsl"/>
    <element-ref name="Zal"/>
    </content>
    </element>
    <element name="PartNumber" type="value">
    <attribute name="new"/>
    </element>
    <element name="PartDescription" type="value">
    </element>
    <element name="CtqDescription" type="value">
    </element>
    <element name="CtqType" type="value">
    </element>
    <element name="ProductLine" type="value">
    </element>
    <element name="Supplier" type="value">
    </element>
    <element name="Ppctq" type="value">
    </element>
    <element name="Ctp" type="value">
    </element>
    <element name="Ctc" type="value">
    </element>
    <element name="CtqCode1" type="value">
    </element>
    <element name="CtqCode2" type="value">
    </element>
    <element name="CtqCode3" type="value">
    </element>
    <element name="Commodity" type="value">
    </element>
    <element name="SubCommodity" type="value">
    </element>
    <element name="UnitOfMeasure" type="value">
    </element>
    <element name="Client" type="value">
    </element>
    <element name="SamplingFrequency" type="value">
    </element>
    <element name="Remarks" type="value">
    </element>
    <element name="SubGroupSize" type="value" convert="int">
    </element>
    <element name="Specification" type="value">
    </element>
    <element name="Nominal" type="value" convert="float">
    </element>
    <element name="Usl" type="value" convert="float">
    </element>
    <element name="Ual" type="value" convert="float">
    </element>
    <element name="Lal" type="value" convert="float">
    </element>
    <element name="Lsl" type="value" convert="float">
    </element>
    <element name="Zal" type="value" convert="float">
    </element>
    <element name="RangeVal" type="value" convert="float">
    </element>
    <element name="RangeAlarmVal" type="value" convert="float">
    </element>
    </xml-java-binding-schema>
    When i ran the xjc , it generated 3 .java files
    AddCtq.java , Ctq.java and VariableData.java
    But i am unable to compile any of the above files...
    The Error i am getting is
    VariableData.java:710: Undefined variable or class name: AddCtq
    return AddCtq.newDispatcher();
    ^
    1 error
    If i try to compile AddCtq.java , the Error i am getting is
    AddCtq.java:4: Class com.geindustrial.sqms.Ctq not found in import.
    import com.geindustrial.sqms.Ctq;
    ^
    AddCtq.java:169: Class com.geindustrial.sqms.Ctq not found.
    if (!(ob instanceof Ctq)) {
    ^
    AddCtq.java:170: Class com.geindustrial.sqms.Ctq not found.
    throw new InvalidContentObjectException(ob, (Ctq.class));
    ^
    3 errors
    And when i try to compile Ctq.java , i am getting the following Error:
    Ctq.java:4: Class com.geindustrial.sqms.VariableData not found in import.
    import com.geindustrial.sqms.VariableData;
    ^
    1 error
    How to solve this problem..Pls advise...
    Thanks
    Sateesh

    I suspect you are trying to compile the files one by one. You may also be trying to compile them disregarding the package structure.
    From your post, I gather these files are in the package: com.geindustrial.sqms
    Therefore, if they are not so already, put them under a directory structure:
    com/geindustrial/sqms
    and then compile with:
    javac com/geindustrial/sqms/AddCtq.java com/geindustrial/sqms/Ctq.java com/geindustrial/sqms/VariableData.java
    (The above is all on one line.)
    HTH,
    Manuel Amago.

  • Unable to create a catalog file for Windows 10 Enterprise (9926) using latest ADK

    Has anyone successfully created a catalog file for Windows 10 Ent. Preview build 9926? Ii get persistent failures attempting to do so. Log output is below and any hint would be greatly appreciated.
    7:20 AM : This application requires version 6.3.9600.16384 of the Windows ADK.
    Install this version to correct the problem
    7:33 AM :
    7:33 AM : Windows SIM was unable to generate a catalog. For troubleshooting assistance, see the topic: 'Windows System Image Manager Technical Reference' in the Windows ADK User's Guide.
    7:33 AM :
    7:33 AM : System.ComponentModel.Win32Exception (0x80004005): Unknown error (0xc1420117)
    Server stack trace:
       at Microsoft.ComponentStudio.ComponentPlatformInterface.WimImageInfo.PostCreateCatalog()
       at Microsoft.ComponentStudio.ComponentPlatformInterface.OfflineImageInfo.CreateCatalog()
       at Microsoft.ComponentStudio.ComponentPlatformInterface.CatalogCreatorImpl.CreateCatalog(OfflineImageInfo offlineImageInfo)
       at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
       at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]:
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.ComponentStudio.ComponentPlatformInterface.ICatalogCreator.CreateCatalog(OfflineImageInfo offlineImageInfo)
       at Microsoft.ComponentStudio.CatalogGenerator.CreateCat(ProgressDialog pd, Object o)

    Hello,
    The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
    As the question is off topic here, I am moving it to the
    Where is the Forum... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Unable to unzip oralce 11g files in windows(32 bit) xp sp2

    Database Installation
    i tried to unzip oracle 11g version 2 using 7zip and winzip 15.5..i tried with winrar too...
    WHEN I RIGHT CLICK AND TRY EXTRACT HERE OPTION with all the softwares i am getting errors as "UNEXPECTED END OF ARCHIVE","UNABLE TO OPEN THE FILE"..
    IF I OPEN THE FILE IN ARCHIVE AND CLICK EXTRACT i get error as "THE ARCHIVE IS IN UNKNOWN FORMAT OR DAMAGED.."
    i downloaded 11g version 1 and 2 from oracle site itself..but i faced the same problem with both..
    i couldnt extract both the files where as i am able to extract any other files on my computer...
    why am i facing problem with only these files????

    865053 wrote:
    Database Installation
    i tried to unzip oracle 11g version 2 using 7zip and winzip 15.5..i tried with winrar too...
    WHEN I RIGHT CLICK AND TRY EXTRACT HERE OPTION with all the softwares i am getting errors as "UNEXPECTED END OF ARCHIVE","UNABLE TO OPEN THE FILE"..
    IF I OPEN THE FILE IN ARCHIVE AND CLICK EXTRACT i get error as "THE ARCHIVE IS IN UNKNOWN FORMAT OR DAMAGED.."
    i downloaded 11g version 1 and 2 from oracle site itself..but i faced the same problem with both..
    i couldnt extract both the files where as i am able to extract any other files on my computer...
    why am i facing problem with only these files????Oracle Database 11g Release 2 (11.2.0.1.0) for Microsoft Windows (32-bit)
    win32_11gR2_database_1of2.zip (1,625,721,289 bytes)
    win32_11gR2_database_2of2.zip (631,934,821 bytes)
    Directions
    1. All files are in the .zip format. There is an unzip utility here if you need one.
    2. Download and unzip both files to the same directory.
    3. Installation guides and general Oracle Database 11g documentation are here.
    4. Review the certification matrix for this product here.
    refer the linK:-http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win32soft-098987.html
    as mentioned earlier, check size of the download zip file with above mentioned bytes. else try to download again.
    while downloading, do not pause the download in the middle and continue it will corrupt the oracle software.
    if you use any download manager dont pause/stop.
    Good Luck.

  • Lion - unable to read old leopard files on windows server

    Hi,
    We had a mac which was on Leopard and saved files to the server
    The file system we use is a Windows 2008 File Server, this has worked fine with leopard for years
    However I understand that Leopard splits the files into resource forks - and that Lion has dropped support for these files.
    That particular mac is now on Lion as we upgraded and encountering LOTS of issues
    I unable to open or edit lots of the files as i believe chunks of the files are missing.
    E.g an .eps file showed as 740KB on leopard - Viewing from a windows PC it was 730kb for the .eps and 10kb for the ._ resource fork.
    Now that we are on the LION upgrade, we only see the .eps file and it is only 730kb. Information missing is things such as preview (quark), Font data, type of file, version number
    Is there anyways to fix this? we have hundreds! of images, files etc created with leopard and now upgraded to lion they all have become useless!
    Rejoining the resource forks and files together so that they are usable on lion
    Thanks

    You installed the Developer Tools and ran the command line utility fixupresourceforks?
    I would think that would work.  Can maybe try this as well:
    Check to see if the file is already created and if not create it using the first line using touch. If file is already there just run the other two lines following the touch command line: 
    sudo touch /etc/nsmb.conf
    sudo echo "[default]" > /etc/nsmb.conf
    sudo echo "streams=no" >> /etc/nsmb.conf
    If you have slow browsing and issues create or renaming folders add:
    sudo echo "notify_off=yes" >> /etc/nsmb.conf
    Then re-connect to server shares or reboot and connect to shares again.

  • Unable to search within .java files on windows xp

    windows Search can't seem to find things in my .java files (like grep) on my Windows XP machine.
    Here's what I do: In the windows explorer, I select a folder which has some .java files beneath it, and I select Search off the folder's popup menu. That brings up a dialog that lets me name to file to search for, and also a word or phrase in the file. I enter filename of "*.java" and it finds all the *.java files OK, but if I also enter a value in the "word or phrase in the file" field and do a search, then it always says "0 files found" (I enter a word that I know is in some of the java files). Search finds words OK in .html or .txt files, but not in .java files. Weird.
    Is there some setting in the windows registry that affects how searches are done in .java files?

    Follow the instructions in this article. I've runinto
    the same thing, and the solution works.
    http://support.microsoft.com/default.aspx?scid=kb;EN-US
    Q309173Thank you. It now works for me too.
    PC�Great! Glad at least someone (ok, 2) stopped by to say thanks. OP, hello? Geez, you even put up the 10 dukies as if this is important to you.

  • Unable to view camera RAW files on Windows 7 and CS4 - Have tried updates

    All working OK until 8 days ago, then bridge just disappeared completely. Looked like it had opened but would disappear when I clicked on the icon. Re-installed, Bride now visable but unable to view .CR2 files in camrea RAW or in Photoshop, comes up as "unable to open". Have tried to install the 5.7 camera raw update, extract files, click on application, then photoshop opens and advises "invalid file type". Not sure what to do now and have a large number of weddin files slowly building up .... PLEASE HELP!!

    When something works one day, but not the next, then something has changed. The task is to find out what that is.
    Have you installed new hardware?
    Have you installed new software?
    Have you had any major updates installed?
    Those are but a few things to ponder.
    You might want to create a new System Restore Point (on a PC) for today, and then boot to Safe Mode, choosing System Restore, and choose a point, from at least 8 days before. Reboot, when prompted, and test. At the least, you have only lost a few minutes, as you can Restore to today's System Restore Point. The Mac has something called Time Machine, and I would think that it could do similar, but just do not know, as I am a PC-only guy.
    Good luck,
    Hunt

  • When I am running Firefox I am unable to open folders and files with Windows Explorer (Windows 7). This is so frustrating and all attempts to fix have been unsuccesful

    There is a clash with Windows 7 and Firefox that prevents one opening files and folders.

    Hi Dollie,
    I am wondering whether you want to upload multiple documents into SharePoint library once.
    If yes, you can try to use Drag and drop feature in SharePoint 2013 to upload multiple documents into SharePoint library.
    More information about Drag and drop feature, you can refer to:
    http://www.sharepointanalysthq.com/2012/12/drag-and-drop-in-sharepoint-2013/
    Thanks,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Unable to view Mac User files in Windows Bootcamp

    I've dual booted my Mac to run both Mac and Windows OS using Bootcamp - However I'm having an issue viewing my user files on my Mac in Windows and I cannot view my user files on my Windows in Mac. This issue is driving me nuts, I have tried checking the drivers and they all updated so I don't know what I'm missing !

    Hi Sudan,
    Did this happen to all users PC clients?
    You can try creating a new following register key with value 30000000 on your client PC, then restart the WebClients service and check results again, please see the following similar article about opening library with large documents in explorer view.
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters\FileAttributesLimitInBytes
    http://blog.davidjwise.com/2012/06/04/explorer-view-versus-the-large-document-library/
    http://support.microsoft.com/kb/912152
    Thanks
    Daniel Yang
    TechNet Community Support

  • I am unable to access my shared files on Windows 7

    My pc finds the MBP files just fine. But when I try to connect usin SMB, it "bounces" when I enter my password.  I have checked and re-checked the password, I know it is correct.  What else can I do?

    Can you please describe the issue with more detail? (ie. Error messages, browser behavior, etc.)
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    Please report back soon.

  • Unable to compile the java file

    Hi,
    I am following the step by step process of DOC id : 184339.1 on How to Send an Email With Attachment Via Forms 6i Using ORA_JAVA Package. I downloaded the activation framework and sendmail 1.1.3..When i am compiling the file given the DOC id namely sendmail.java, I get the following error
    Exception in thread "main" java.lang.NoclassDefFoundError: sendmail/java
    Could anyone help me out ..
    Below is the cut and paste of the code which is used to compile..
    Thanks
    Kal
    import java.util.*; import java.io.*; import javax.mail.*; import javax.mail.internet.*; import javax.activation.*; public class SendMail {       // Sender, Recipient, CCRecipient, and BccRecipient are comma-       // separated lists of addresses;       // Body can span multiple CR/LF-separated lines;       // Attachments is a ///-separated list of file names;       public static int Send(String SMTPServer,                              String Sender,                              String Recipient,                              String CcRecipient,                              String BccRecipient,                              String Subject,                              String Body,                              String ErrorMessage[], String Attachments) {           // Error status;          int ErrorStatus = 0;              // create some properties and get the default Session;             Properties props = System.getProperties();             props.put("mail.smtp.host", SMTPServer);           Session session = Session.getDefaultInstance(props, null);            try {              // create a message;              MimeMessage msg = new MimeMessage(session);               // extracts the senders and adds them to the message;              // Sender is a comma-separated list of e-mail addresses as              // per RFC822;              {                 InternetAddress[] TheAddresses = InternetAddress.parse(Sender); msg.addFrom(TheAddresses); } // extract the recipients and assign them to the message; // Recipient is a comma-separated list of e-mail addresses // as per RFC822; {                 InternetAddress[] TheAddresses = InternetAddress.parse(Recipient); msg.addRecipients(Message.RecipientType.TO, TheAddresses); } // extract the Cc-recipients and assign them to the // message; // CcRecipient is a comma-separated list of e-mail // addresses as per RFC822; if (null != CcRecipient) {                 InternetAddress[] TheAddresses = InternetAddress.parse(CcRecipient); msg.addRecipients(Message.RecipientType.CC, TheAddresses); } // extract the Bcc-recipients and assign them to the // message; // BccRecipient is a comma-separated list of e-mail // addresses as per RFC822; if (null != BccRecipient) {                 InternetAddress[] TheAddresses = InternetAddress.parse(BccRecipient); msg.addRecipients(Message.RecipientType.BCC, TheAddresses); } // subject field; msg.setSubject(Subject); // create the Multipart to be added the parts to; Multipart mp = new MimeMultipart(); // create and fill the first message part; {                 MimeBodyPart mbp = new MimeBodyPart();                 mbp.setText(Body);                  // attach the part to the multipart;                 mp.addBodyPart(mbp);              } // attach the files to the message; if (null != Attachments) {                 int StartIndex = 0, PosIndex = 0;                 while (-1 != (PosIndex = Attachments.indexOf("///",                                                        StartIndex))) {                    // create and fill other message parts;                    MimeBodyPart mbp = new MimeBodyPart();                    FileDataSource fds =                    new FileDataSource(Attachments.substring(StartIndex,                                                             PosIndex));                    mbp.setDataHandler(new DataHandler(fds));                    mbp.setFileName(fds.getName());                    mp.addBodyPart(mbp);                    PosIndex += 3;                    StartIndex = PosIndex;                 } // last, or only, attachment file; if (StartIndex < Attachments.length()) {                    MimeBodyPart mbp = new MimeBodyPart();                    FileDataSource fds =                  new FileDataSource(Attachments.substring(StartIndex));                    mbp.setDataHandler(new DataHandler(fds));                    mbp.setFileName(fds.getName());                    mp.addBodyPart(mbp);                 } } // add the Multipart to the message; msg.setContent(mp); // set the Date: header; msg.setSentDate(new Date()); // send the message; Transport.send(msg); } catch (MessagingException MsgException) {                ErrorMessage[0] = MsgException.toString(); Exception TheException = null; if ((TheException = MsgException.getNextException()) != null) ErrorMessage[0] = ErrorMessage[0] + "\n" + TheException.toString(); ErrorStatus = 1; } return ErrorStatus; } }

    Most common cause of the problem: JAVA_HOME environment variable not set, or set incorrectly.
    It should point to your java directory: ie C:\java1_4\ NOT C:\java1_4\bin
    Another possible cause is spaces in the path names where you have installed applications.
    Check out this page: http://www.coreservlets.com/Apache-Tomcat-Tutorial/ for a tutorial on installing tomcat.
    If you can't sort it out on your own, we need more info:
    Where have you installed Java?
    Where have installed Tomcat?
    What is the value of JAVA_HOME environment variable?
    Good luck,
    evnafets

  • Bootcamp unable to access my OSX files from Windows

    I recently reinstalled Windows on my Macbook (Mid 2013) after it got formatted as I sent it to repair, however after reinstalling the system, I cannot seem to access my files from my OSX partition when I'm on Windows. I used to be able to do this but, not anymore. PLEASE HELP.

    Please see windows 8 does not recognise Macintosh HD, No drive Letter.

  • Unable to compile servlet files in javac

    i am unable to compile servlet *.java files in javac.as far as i can see my path is correct.
    Kindly provide a solution as soon as possible.
    My jdk1.3 is in my c drive and my tomcat in my d drive.
    if you are able to compile kindly let me know your path.
    it says symbol not resolved.i think that it is unable to import from javax

    Assuming that your jdk is in c drive as c:\jdk1.3 set the path and the classpath like as shown below. Remember that you have to set the classpath for the classes in the javax.servlet and javax.servlet.http packages. I know how to do it for JavaWebServer. JavaWebServer has a jar called servlet.jar that contains all these classes. What you need to do is to put this jar file in your classpath. There will be a similar jar file for Tomcat server also. You need to refer the Tomcat server documentation for that.
    The path and the classpath have to be set like this...
    d:\>path=%path%;.;c:\jdk1.3\bin;
    d:\>set classpath=%classpath%;.;c:\jdk1.3\lib;c:\JavaWebServer2.0\lib\servlet.jar;
    assuming tht JWS is installed in c:\JavaWebServer2.0
    Also note that there should be no spaces in between while setting the classpath. In your case you have to change the last part of the classpath to customize your requirement.
    Hope that will help.
    Regards
    Jaydeep

  • New problems importing Pro-res files

    Hi,
    I am running CC14 on PC (HPz800 Windows 8) - and I have recently become unable to import Pro-res files into After Effects or Media Encoder. These files DO open in premiere
    I have tried the following:
    Restarted
    Cleared my cache
    Cleared all my appdata settings
    uninstalled and reinstalled latest Quicktime
    reverted back to a previous version of After effects (this is where i noticed the problem first and I had recently got a new update)
    copying the file to a different location on my drive and importing it from there
    Additionally:
    I have had no problems with Pro-res in the past
    The same file works fine on other computers in my office with the same versions of Ae/Encoder
    The video file works in premiere
    The video file plays fine in Quicktime
    I get the following errors:
    In Ae - "this '.mov' is damaged or unsupported"
    In media encoder - "could not be imported. could not read from source. please check settings and try again"
    In the meantime I have re-encoded a proxy using premiere - however this is not an adequate long-term solution
    Not sure what to try next, don't really want to re-image my whole computer (i already did this on a month or so ago)
    Any help is appreciated

    troubleshooting QuickTime errors with After Effects
    fixing permissions problem

Maybe you are looking for