Replace string in text document help please

I am trying to make a simple program that changes all "http://" to "https://ssl." in a text document. This is the code I have created so far but the program is not working as intended. I am making this program so I can quicky change the links on my website to the secure webpages.
import java.io.*;
public class Main {
    public static void main(String[] args) {
        try {
            File f = new File("textFile.txt");
            RandomAccessFile raf = new RandomAccessFile(f , "rw");
            String line = raf.readLine();
            while(line != null){
            line = line.replaceAll("http://" , "https://ssl.");
            raf.writeChars(line);
            line = raf.readLine();
            raf.close();
        } catch (IOException e) {
}Any help welcome!

This is not a Java thing, but a general fact about files and I/O:
You can't edit a file in place. Do this:
1. Read the original file a line at a time.
2. Edit each line and write them out to a new file.
3. When you are done, close the files. Delete the original file and then rename the new file to the old file's name.

Similar Messages

  • Hover over icon to replace or change text. Help please.

    My art direction calls for a 'window', or div, with 5 icons
    across the top. As the user hovers over an icon a text description
    should fill the 'window' below the icons.
    Example: an icon of a butterfly when hovered over will fill
    the 'window' with several lines of text describing differences
    between butterflies and say, wasps or something like that.
    What is the best way to achieve this? Is this a flash
    function or an image swap type of thing? Can this be achieved
    strictly with CSS? Seems simple, don't know if it really is though.
    Thanks for any help you can provide.
    PF

    > Can this be achieved strictly with CSS?
    Yes.
    > Seems simple, don't know if it really is though.
    It definitely isn't.
    I suggest you use a container for the variable text content
    (like a div,
    properly sized), and the SetTextofContainer behavior in DW,
    which will let
    you specify the text to use in that container as each 'icon'
    is moused over.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Ofeargall" <[email protected]> wrote in
    message
    news:f7lr8i$9ce$[email protected]..
    > My art direction calls for a 'window', or div, with 5
    icons across the
    > top. As
    > the user hovers over an icon a text description should
    fill the 'window'
    > below
    > the icons.
    >
    > Example: an icon of a butterfly when hovered over will
    fill the 'window'
    > with
    > several lines of text describing differences between
    butterflies and say,
    > wasps
    > or something like that.
    >
    > What is the best way to achieve this? Is this a flash
    function or an image
    > swap type of thing? Can this be achieved strictly with
    CSS? Seems simple,
    > don't
    > know if it really is though.
    >
    > Thanks for any help you can provide.
    >
    > PF
    >

  • My iphone 5 keeps on losing contact details and i am also having instances of old text messages being resent when I am actually sending newly written text messages help please?

    My iphone 5 keeps on losing contact details and i am also having instances of old text messages being resent when I am actually sending newly written text messages help please?

    My wife is having the same problems as a reciever. She works in a school as a teaching assistant and her teacher sends messages that are mixed with previous texts from ages ago.
    Can anyone shed some light on this problem or is it only her and this poster?
    2m42s

  • HTML String Convertion .. Help please

    Dear All ,
    I have an application that convert any HTML input to another formula so the HTML will appear as it is ! for example :
    - if the input is :
    <B> HELLO </B>
    - The stored in the database will be :
    <B> HELLO </B>
    My Question is how can i covert this output back to it's original status. (<B> HELLO </B>)
    Please Help me
    Regards,
    Thanks

    Java is case sensitive! string != String
    If you meant:
    java.lang.String
    Then I'll be buggered if I know what your problem is .... it really should be working!?
    In a worst case senario, create your own replaceAll method:
    class myUtils
      public static String replaceAll( String str, String find, String replace )
        String result = "";
        if ( str == null || find == null || replace == null ) return result;
        for ( int i = 0, lastfind = 0; i < str.length; i++ )
          if ( str.subString(i).startsWith(find) )
            result += str.subString(lastfind,i) + replace;
            lastfind = i + find.length();
            i += find.length();
        return result;
    }Something like that should do it .... that was written of the top of my head and not tested or compiled .... so no promises! :p

  • Can't create see through text! Help please

    I am very new to illustrator so please forgive me I am using CS4 on windows. I have followed all of the sugestions on this site (this is the exact effect that I am seeking!) and for the life of me none of it works.http://www.proficiografik.com/2010/02/08/building-a-hole-see-through-t ext-or-object-in-adobe-illustrator.html
    So I am in search of help.I've worked in one layer, have tried a layer  for the color box and another for the text, I have tried grouping the text box with the color box as well. I figure there is a step in the inital layout that I am missing, but I'm not sure. Help please!

    Lorranne,
    When you have all three objects in the right order you should see:
    A) The live Type (or outlined type) in black (san diego),
    B) The intermediate shape, partly covered by the Type (the blue rectangle),
    C) The image (the steely look).
    Is that what you see? I see that.
    If you select A) and B), by clicking or selecting in the Layers palette, what do you see in the Transparency palette?
    If you then tick Make Opacity Mask, what do you see in the Transparnecy palette (both Clip and Invert Mask should be unticked), and what do you see on the Artboard?
    Edit: Edited after seeing the video.
    By the way, it makes no difference whether the image is embedded (as you mention) or linked.

  • Swing Text Documents Help

    We have a large application that includes an editor for users to create and edit various documents.
    We are using a JEditorPane that displays custom documents tailored to our requirements (via a custom editor kit, etc). These vary from simple 'Word' style user interfaces to more elaborate graphical data entry forms.
    The problem we are facing is that no matter what content the JEditorPane is displaying there is always a line at the bottom of the pane that the text caret can get to that is not part of our documents and does not allow the user to type into this space. This being there isn't causing any major problems just very annoying that we can't figure out how to get rid of it.
    A temporary solution for the moment has been to add a caret listener to the editor and if the caret position goes to the last position in the document it moves it back a space (messy, but it works for the moment).
    Has anyone else experienced something similar to this?#
    Any help appreciated.

    DefaultStyledDocument seems to be the problem.
    Our class extends this.
    It contains a paragraph with "/n" when it is created and this doesn't seem to get removed when we add our content (via create(es)) and we can't remove it manually afterwards.
    The elaborate slightly
    calling dump() before we create out document gives something along the lines of (I've removed a few carrage returns and replaced them with \n to make it easier to look at): -
    <section>
    <paragraph resolver=NamedStyle:default {name=default,nrefs=1}>
    <content>
    [0,1][\n]
    <bidi root>
    <bidi level bidiLevel=0>
    [0,1][\n]
    We then call create(es) where es is an array of ElementSpecs
    The array consists of element specs with the following attributes (or a rough description of them).
    0 StartTagType (Start)
    1 StartTagType (Start of our report)
    2 StartTagType (Start of a paragraph with font attributes, etc)
    3 ContentType (Our content where length=5 data = "blah\n")
    4 EndTagType (End of paragraph with font attributes)
    5 StartTagType (Start of a new paragraph)
    6 ContentType (More content where length=1 data="\n")
    7 EndTagType (End of paragraph with font attributes)
    8 EndTagType (End of our report)
    9 EndTagType (End)
    The first thing the create method in DefaultStyledDocument does is
    if (getLength() != 0) {
    remove(0, getLength());
    getLength returns 0 even though "/n" is there (as you described above). Hence remove(o, getLength()) never gets called. If I try and get clever and call the remove method after the create method using something like remove(getLength()-1, getLenght()) or even: -
    Element element = this.getParagraphElement(getLength());
    int startOffset = element.getStartOffset();
    int endOffset = element.getEndOffset();
    this.remove(startOffset, endOffset-startOffset);
    it never has any effect.
    If I call dump() again after the create method I get something along the lines of : -
    <section>
    <REPORT
    foreground=java.awt.Color[r=128,g=128,b=128]
    $ename=REPORT
    CHANGED=hss.radiology.reports.ReportDocument$ChangedMarker@39471b
    READONLY=true
    REPORT=hss.cris3.Report@37cee4
    >
    <paragraph
    $ename=paragraph
    family=Verdana
    size=18
    >
    <content>
    [0,5][blah\n]
    <paragraph
    $ename=paragraph
    family=Verdana
    size=18
    >
    <content>
    [5,6][\n]
    <paragraph resolver=NamedStyle:default {name=default,nrefs=1}
    >
    <content>
    [6,7][\n]
    <bidi root>
    <bidi level
    bidiLevel=0
    >
    [0,7][blah\n\n\n]
    Does anyone have any ideas of how i may be able to remove the last paragraph?
    Thanks, Paul

  • Pages won't let me save any document help please!

    My problem: I type a text, hit 'save as' , name the file and trouble starts:
    A window pops up saying it is a locked document or file in use. Of course after
    checking it, none of it is the case, well, theoretical yeah the file is in use as I want to save it (!!!)
    Does anybody know if SL has an issue with the application of pages ?
    I thought there would only be an issue with apple works in that respect.
    I'm not a computer person but appreciate any help with this. I tried to save anything but it won't let me save a document at all...the same window pops up.

    Have you purchased or registered iWork?
    If not your trial period of 30 days may have expired.
    Otherwise look here:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=105&mforum=iworktips ntrick
    1. Upgrade your system to OSX 10.6.2 using the Combo downloaded updater ( not the Software Updater version):
    http://www.apple.com/downloads/macosx/apple/macosx_updates/macosxv1062updatecomb o.html
    2. Update iWork to the latest version using software updater.
    Peter

  • C7 - Problem with text messages - Help please!

    I have had my Nokia C7 since November and have not been able to use it! When I send a text message less than 160 characters I am charged between 2 and 3 times on my bill. The text message is being sent once and the recipient is receiving the text once. I have done everything that I have been asked by my provider from software upgrades to a brand new sim card to sending the phone off to be repaired to having a replacement but nothing works .. If I use my sim card in my old Nokia N79 then I don't have this problem. I recently tried a pay as you go sim card in the Nokia C7 and the same thing happened!
    Any suggestions please??

    Thanks for confirming .. Just so frustrating as getting no where with T Mobile. The technical person insisted that I had sent 3 text messages despite the fact that 1 was sent all because that is what was showing on his system! I had to go into the shop with a copy of my usage and the phone showing the text messages to prove only 1 text had been sent. They just don't seem to be able to resolve the issue. I just don't know what else to do. I haven't been able to use this new phone since November
    Thanks again for your reply. Much appreciated

  • Comparing Strings with "If" statements : help please. :-)

    I have an assignment for class... and having lots of trouble trying to figure out what I did wrong. I cannot find a solution.. if anyone can help me with this, it'd be much appreciated.
    Assignment Write a program to allow the user to calculate the area and perimeter of a square, or the area and circumference of a circle, or the area of a triangle.
    To do this, the user will enter one of the following characters: S, C, or T. The program should then ask the user for the appropriate information in order to make the calculation, and should display the results of the calculation. See the example program execution shown in class.
    The program should use dialog boxes.
    When expecting an S, C, or T, the program should reject other characters with an appropriate message.
    Get extra points for allowing both the uppercase and lowercase versions of a valid character to work. Name the program ShapesCalc.java.My error codes are
    incomparable types: java.lang.String and Char
    cannot find symbol variable output
    incomparable types: java.lang.String and Char
    incomparable types: java.lang.String and CharI've asked a friend and they said something about Strings cannot be compared in "If" statements... if that is the case.. how is this supposed to be arranged? If you can point me in the right direction, I will be very grateful! :-)
    What I have created so far
    import javax.swing.JOptionPane;
    public class ShapesCalc {
        public static void main(String[] args) {
          //Enter S,C, or T
          String input = JOptionPane.showInputDialog("Enter S,C, or T");
          //If Statements
          //Square
          if (input == 'S'){
               String lengthu = JOptionPane.showInputDialog("Enter length of a square");
               double length = Double.parseDouble(lengthu);
               double area = length * length;
               double perimeter = length * 4;
               String ouput = "The area is " + area + " and the perimeter is " + perimeter;
               JOptionPane.showMessageDialog(null, output);}
          //Circle
          else if (input == 'C'){
               String radiusu = JOptionPane.showInputDialog("Enter the radius of a circle");
               double radius = Double.parseDouble(radiusu);
               double area = 3.14159 * radius * radius;
               double circumference = 2 * 3.14159 * radius;
               String output = "The area is " + area + " and the circumference is " + circumference;
               JOptionPane.showMessageDialog(null, output);}
          //Triangle
          else if (input == 'T'){
               String baseu = JOptionPane.showInputDialog("Enter the base of a triangle");
               double base = Double.parseDouble(baseu);
               String heightu = JOptionPane.showInputDialog("Enter the height of a triangle");
               double height = Double.parseDouble(heightu);
               String output = "The area is " + (base * height) / 2;
               JOptionPane.showMessageDialog(null,output);}
          //Error Message
          else {
               String error = "Incorrect variable please enter S,C, or T only.";
               JOptionPane.showMessageDialog(null,error);}
          //Signature
          String signature = "Rodriguez, Markos has compiled a Java program.";
          JOptionPane.showMessageDialog(null,signature);
    }Edited by: ZambonieDrivor on Feb 22, 2009 6:52 PM

    ZambonieDrivor wrote:
    How would I go about on the extration of a single char from a String to make it comparable, I don't quite understand this part.Read the [Java API|http://java.sun.com/javase/6/docs/api/] for the String class and see what methods it has.
    I will convert the == to equals() method.If you want to compare primitives (ints, chars etc) then using == is fine. Only when comparing objects do you use the equals method.

  • Not able to highlight text. Help please?

    Hi I am trying to build a tool which is going to be used to to load an html book and the make some notes on it. Now I am trying to highlight. I am in thye very beginning so I just try to highlight a small part from the begginig not the user, this is my next step. But even I think that I don't have a problem with my code as I have used as base a program that is working actually my rpogram doesn't highlight anything.
    Here is the class I make the highlight
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.HashMap;
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.event.*;
    import javax.swing.undo.*;
    public class ViewClass extends JFrame {
      private JFrame frame = new JFrame(); // main window
      private JPanel panel = new JPanel(new BorderLayout()); //panels to aid layout
      private JPanel panel2 = new JPanel(new GridLayout(1, 1));
      private JMenuBar menuBar=new JMenuBar();
      JMenu file = new JMenu("File");
      JMenu help = new JMenu("Help");
      JMenuItem open=new JMenuItem("Open");
      JMenuItem save=new JMenuItem("Save");
      JMenuItem exit=new JMenuItem("Exit");
      JMenuItem manual=new JMenuItem("Manual");
      JMenuItem about=new JMenuItem("About");
      JButton buttonH=new JButton();
      JButton buttonB=new JButton();
      JButton buttonT=new JButton();
      private JToolBar toolBar = new JToolBar();
      private JScrollPane scrollPane = new JScrollPane();
      private Model callingModel;
      private Controller theController;
        private static JEditorPane createEditorPane() {
        JEditorPane editorPane = new JEditorPane();
        editorPane.setEditable(false);
        java.net.URL helpURL = ViewClass.class.getResource("mexico_city.html");
        System.out.println(helpURL);
        if (helpURL != null) {
            try {
                editorPane.setPage(helpURL);
            } catch (IOException e) {
                System.err.println("Attempted to read a bad URL: " + helpURL);
        } else {
            System.err.println("Couldn't find file: mexico_city.html");
         return editorPane;
    public ViewClass(Model m) {
         callingModel =m; //retrieve link to model
         theController = new Controller(callingModel); // create controller
         //set up visual features of the window
         frame.setTitle("Take a note");
         frame.setJMenuBar(menuBar);
         menuBar.add(file);
         menuBar.add(help);
         file.add(open);
         file.add(save);
         file.addSeparator();
         file.add(exit);
         help.add(manual);
         help.add(about);
         file.setMnemonic(KeyEvent.VK_F);
         help.setMnemonic(KeyEvent.VK_H);
         //frame.getContentPane().setLayout(new BorderLayout());
         toolBar.add(buttonH);
         buttonH.setIcon(new ImageIcon("H.gif"));
         buttonH.setToolTipText("Highlight");
         buttonH.setActionCommand("Highlight");
         toolBar.add(buttonB);
         buttonB.setIcon(new ImageIcon("B.gif"));
         buttonB.setToolTipText("Bookmark");
         buttonB.setActionCommand("Bookmark");
         toolBar.add(buttonT);
         buttonT.setIcon(new ImageIcon("T.gif"));
         buttonT.setToolTipText("Take a note");
         buttonT.setActionCommand("Noting");
         JEditorPane editorPane = createEditorPane();
         scrollPane = new JScrollPane(editorPane);
         MyHighlightPainter h = new MyHighlightPainter(Color.yellow);
         Highlighter hilite = editorPane.getHighlighter();
         try
              hilite.addHighlight(155, 1155,h);
         catch(BadLocationException ex)
              System.out.println(ex.getMessage());
        frame.getContentPane().add(panel);
        frame.getContentPane().add(panel2);
        panel.add(toolBar, BorderLayout.PAGE_START);
        panel.add(scrollPane, BorderLayout.CENTER);
       frame.getContentPane().add(panel, BorderLayout.CENTER);
       panel.add(new JScrollPane(editorPane) );
       exit.addActionListener(theController);
       about.addActionListener(theController);
       buttonH.addActionListener(theController);
       buttonB.addActionListener(theController);
       buttonT.addActionListener(theController);
         //ensure the following statement is always last
         frame.pack();
         frame.setSize(1274,970);
         frame.setVisible(true);//and nobody sees it until we do this
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
       static class MyHighlightPainter extends DefaultHighlighter.DefaultHighlightPainter
    public MyHighlightPainter(Color r)
    super(r);
    }

    With interactive reports in APEX 3.1 you can use the pull down menu to highlight cells and or rows of data. You can apply many highlighting rules, that are evaluated in order. So high values can be green, low values red, and other values default. You can try this running the sample application on OTN:
    http://apex.oracle.com/pls/otn/f?p=2357:2
    Mike

  • Adobe Acrobat X Standard is displaying some PDFs with garbled text. Help, please.

    I've been using Adobe Acrobat X Standard without any issues for a long while.  The other day, I received a PDF, opened it, and the words are garbled.  My co-worker who has the very same software is able to view the document without all the garbage.  I have gone to distiller in an attempt to fix.  No one from IT can seem to fix the problem and I am at my wits end.  I've lost lots of sleep over this.  I was even upgraded to Adobe Acrobat XI and still can review the document but again.  Everyone else can.  Don't mean to go on and on but, I really need the experts out there to assist me with this issue.
    I would appreciate any assistance you can provide.  Thank you.

    Not sure what you're referring to. Is this "URL" part of the page content or are you viewing PDFs in a browser? A screenshot would help.

  • Bulk insert of text file Help PLEASE!

    Hello,
    I am trying to insert the following data into a sql server table.
    11470012 31020141100AMFI2              TENTATIVE APPOINTMENT SET FOR 03/17/2014 AT 10:00 AM
    11470012 31720141000AMFI7              INTERVIEW COMPLETED.
    I am using the following code.
    Bulk Insert dbo.Totalnt
    From 'c:\totalnt.txt'
    with (rowterminator = '\n');
    I get the following error.
    Msg 4866, Level 16, State 7, Line 4
    The bulk load failed. The column is too long in the data file for row 1, column 1. Verify that the field terminator and row terminator are specified correctly.
    Msg 7399, Level 16, State 1, Line 4
    The OLE DB provider "BULK" for linked server "(null)" reported an error. The provider did not give any information about the error.
    Msg 7330, Level 16, State 2, Line 4
    Cannot fetch a row from OLE DB provider "BULK" for linked server "(null)".
    Please help,
    M. Wilson
    M. Wilson

    Here is the create table statement.  I appreciate your assistance.  I have never imported a file into sql server.
    USE
    [2013ProductionData]
    GO
    /****** Object:  Table [dbo].[Totalnt]    Script Date: 03/31/2014 21:24:17 ******/
    SET
    ANSI_NULLS
    ON
    GO
    SET
    QUOTED_IDENTIFIER
    ON
    GO
    CREATE
    TABLE [dbo].[Totalnt](
    [Cluster] [nvarchar]
    (2)
    NOT
    NULL,
    [Project] [nvarchar]
    (3)
    NOT
    NULL,
    [Case] [nvarchar]
    (2)
    NOT
    NULL,
    [RecType] [nvarchar]
    (1)
    NULL,
    [ContactDateM] [nvarchar]
    (2)
    NULL,
    [ContactDateD] [nvarchar]
    (2)
    NULL,
     [ContactDateY] [nvarchar]
    (4)
    NULL,
    [ContactTimeH] [nvarchar]
    (2)
    NULL,
    [ContactTimeM] [nvarchar]
    (2)
    NULL,
    [ContactTimeAMPM] [nvarchar]
    (2)
    NULL,
    [Who] [nvarchar]
    (2)
    NULL,
    [Result] [nvarchar]
    (1)
    NULL,
    [ApptDateM] [nvarchar]
    (2)
    NULL,
    [ApptDateD] [nvarchar]
    (2)
    NULL,
    [ApptDateY] [nvarchar]
    (4)
    NULL,
    [ApptTimeH] [nvarchar]
    (2)
    NULL,
    [ApptTimeM] [nvarchar]
    (2)
    NULL,
    [ApptTimeAMPM] [nvarchar]
    (2)
    NULL,
    [Comments1] [nvarchar]
    (50)
    NULL,
    [Comments2] [nvarchar]
    (50)
    NULL,
    [Comments3] [nvarchar]
    (50)
    NULL,
    [Comments4] [nvarchar]
    (50)
    NULL
    ON [PRIMARY]
    GO
    M. Wilson

  • I can no longer use my phone for calling or texting. Help please?

    Every time I send a text, a message pops up immediately saying; "Error". It also pops up instantly whenever I press retry. Another issue is when I try to call from the phone, it says; "Emergecy Calls Only". I know it's nothing to do with credit because I've tried calling the free Orange numbers (450, 453 etc.) and it still says the same thing. Any help would be appreciated.

    This normally happens if your sim card or mobile is faulty or if there is an issue with the signal where you are.
    have you tried turning the phone off, removing the battery and sim card, give the contacts a quick wipe with a lint free cloth and try again.
    You could also try live chat, or an experienced member of the team will be around at some stage and my have another answer for you

  • Mac and Iphone sync documents help please

    I have a mac and iphone, how do I sync my mac documents from pages, keynote ect... to be able to see them on my iPhone?

    That will depend on your system versions. Which iOS version do you have on your iPhone, and which MacOS X version do you have on your Mac?
    With iOS 7 on your iPhone and MacOS X 10.9.5 (Mavericks) you can save documents in the cloud.  The Finder will show you iCloud as a storage option, when you save or open documents in Pages, Keynote, ... and your iOS devices can open them.
    See:  iCloud: About using iWork for iOS and iCloud
    If you have upgraded your iPhone to iOS, don't enable iCloud drive. It will disable the ability to use documents in the cloud.
    See these documents:
    Be aware, be careful, be prepared for iCloud Drive | TUAW: Apple news, reviews and how-tos since 2004
    and
    iCloud Drive FAQ

  • I want to retrieve a replaced file with existing file help please

    While arranging my files in different folders I was asked "This file already contains a file named 'xyz', would you like to replace the existing file?", of course I said yes not realizing that they were not the same picture, they had the same file numbers only because they were in different folders. Therefore I cannot reconnect because the picture is not the same. Also, the picture I cannot find has a small red box @ bottom of pic with a rip going through it. What does that mean & can I save this pic & the other one I replaced it with?

    Hi Teresa,
    Sorry for the delay... This sounds quite messy. Do you have a lot of
    tags? If not, it might be an idea to do one of two things and I'll
    explain the merit of each option:
    1. Restore your backup;
    You should do this ONLY if you are not concerned about overwriting what
    you have done since the backup;
    2. Restore images from your recycle bin, relabel the my catalog.psa file
    to my catalog.old and start all over...
    You should do this if you are concerned about images that you have been
    working on since the last back up. It will lose all your
    tags/collections, but any images that are still on your computer will
    not be affect.
    Now... let me know which option you want to proceed with and I'll write
    out the instructions for you.
    Cheers

Maybe you are looking for

  • Empty Log File - log settings will not save

    Description of Problem or Question: Cannot get logging to work in folder D:\Program Files\Business Objects\Dashboard and Analytics 12.0\server\log (empty log file is created) Product\Version\Service Pack\Fixpack (if applicable): BO Enterorise 12.0 Re

  • Ready to throw the ipod through nearest window

    I am at my wits end with this thing. It started out so good. Everything seemed to work. My 15 year old did all the installs got the itunes running, loaded tons of music, etc. Then, suddenly, itunes no longer updates the ipod when you connect it. I ha

  • Solution Manager 4.0 install error logging in for DDIC step 29

    Has anyone else seen the error 'Test logon to SAP System <sid> failed"? It states that it cannot login for DDIC. This is at step 29 during the install of the solution manager 4.0. We are running on a Windows 2003 Server/Oracle 10g. Any help would be

  • New AJAVideo Mac & Windows Plug-Ins for @Adobe CS6

    New #AJAVideo Mac & Windows Plug-Ins for @Adobe #CS6 now available! Read more http://bit.ly/IfTKL9 download http://bit.ly/JcwWfx

  • Network logins not working with 10.7 and 10.8 clients

    Hi I have Snow Leopard Server (10.6.8)  running on a Mac Mini for the past 3 years. The client Macs were all running Snow Leopard and could happily do network logins. I recently upgraded my client Macs to 10.7 and 10.8.Now they cannot login via Netwo