Need Advice / Help

HI.. i have a program here that works as a simple chat program...
i have Strider.java as the server and Hiryu.java as the client...
my question is, althoug it is already running, the server and client
can't meet each other.
the server can't detect if there's a connection or the client can't connect
i can't see if there's really a connection happen..
could they please help me solve my problem. i have here
the codes of my program..
//Strider.java
import java.io.*;
import java.net.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Strider extends JFrame implements ActionListener
ObjectOutputStream output;
ObjectInputStream input;
String msg;
JTextField txtfld;
JTextArea txtarea;
public Strider()
Container c = getContentPane();
c.setLayout(new FlowLayout());
txtfld = new JTextField(10);
txtarea = new JTextArea(10,20);
txtfld.addActionListener(this);
c.add(txtfld);
c.add(new JScrollPane(txtarea));
setSize(230,250);
show();
public void actionPerformed(ActionEvent e)
sendData(e.getActionCommand());
public void runStrider()
ServerSocket server;
Socket connection;
int counter = 1;
try {
server = new ServerSocket(5000, 100);
while(true){
txtarea.setText("Waiting for someone to connect");
connection = server.accept();
txtarea.append("Connection" + counter + "received from:" + connection.getInetAddress().getHostName());
output = new ObjectOutputStream(connection.getOutputStream());
output.flush();
input = new ObjectInputStream(connection.getInputStream());
txtarea.append("\n Got I/O Streams \n");
msg = "Server>> Connection Successful";
output.writeObject(msg);
output.flush();
do{
try{
msg = (String) input.readObject();
txtarea.append("\n" + msg);
txtarea.setCaretPosition(txtarea.getText().length());
catch(ClassNotFoundException cnfex){
txtarea.append("\nUnknown Object type received");
}while(!msg.equals("Client>> Terminate"));
txtarea.append("\nUser Terminated connection");
output.close();
input.close();
connection.close();
++counter;
catch(EOFException eof){
System.out.println("Client terminated connection");
catch(IOException io){
io.printStackTrace();
public void sendData(String s)
try{
output.writeObject("Server>>" + s);
output.flush();
txtarea.append("\nServer>>" + s);
catch(IOException cnfex){
txtarea.append("\nError writing Object");
public static void main(String[] args)
Strider app = new Strider();
app.addWindowListener(
new WindowAdapter()
public void windowClosing(WindowEvent e)
System.exit(0);
app.runStrider();
//Hiryu.java
import java.io.*;
import java.net.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Hiryu extends JFrame implements ActionListener
ObjectOutputStream output;
ObjectInputStream input;
String msg;
JTextField txtfld;
JTextArea txtarea;
public Hiryu()
Container c = getContentPane();
c.setLayout(new FlowLayout());
txtfld = new JTextField(10);
txtarea = new JTextArea(10,20);
txtfld.addActionListener(this);
c.add(txtfld);
c.add(new JScrollPane(txtarea));
setSize(230,250);
show();
public void actionPerformed(ActionEvent e)
sendData(e.getActionCommand());
public void runClient()
Socket client;
try {
txtarea.setText("Attempting Connection\n");
client = new Socket(InetAddress.getByName("127.168.2.109"), 5000);
txtarea.append("Connected to:" + client.getInetAddress().getHostName());
output = new ObjectOutputStream(client.getOutputStream());
output.flush();
input = new ObjectInputStream(client.getInputStream());
txtarea.append("\n Got I/O Streams \n");
msg = "Server>> Connection Successful";
output.writeObject(msg);
output.flush();
do{
try{
msg = (String) input.readObject();
txtarea.append("\n" + msg);
txtarea.setCaretPosition(txtarea.getText().length());
catch(ClassNotFoundException cnfex){
txtarea.append("\nUnknown Object type received");
}while(!msg.equals("Server>> Terminate"));
txtarea.append("\nUser Terminated connection");
output.close();
input.close();
client.close();
//++counter;
catch(EOFException eof){
System.out.println("Client terminated connection");
catch(IOException io){
io.printStackTrace();
public void sendData(String s)
try{
output.writeObject("Client>>" + s);
output.flush();
txtarea.append("\nClient>>" + s);
catch(IOException cnfex){
txtarea.append("\nError writing Object");
public static void main(String[] args)
Hiryu app = new Hiryu();
app.addWindowListener(
new WindowAdapter()
public void windowClosing(WindowEvent e)
System.exit(0);
app.runClient();
}

i'm sory for the inconvinience, here's the formated one..
it's not really my intention.. my mistake..
still, would they help me please?
//Strider.java
import java.io.*;
import java.net.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Strider extends JFrame implements ActionListener
ObjectOutputStream output;
ObjectInputStream input;
String msg;
JTextField txtfld;
JTextArea txtarea;
public Strider()
Container c = getContentPane();
c.setLayout(new FlowLayout());
txtfld = new JTextField(10);
txtarea = new JTextArea(10,20);
txtfld.addActionListener(this);
c.add(txtfld);
c.add(new JScrollPane(txtarea));
setSize(230,250);
show();
public void actionPerformed(ActionEvent e)
sendData(e.getActionCommand());
public void runStrider()
ServerSocket server;
Socket connection;
int counter = 1;
try {
server = new ServerSocket(5000, 100);
while(true){
txtarea.setText("Waiting for someone to connect");
connection = server.accept();
txtarea.append("Connection" + counter + "received from:" + connection.getInetAddress().getHostName());
output = new ObjectOutputStream(connection.getOutputStream());
output.flush();
input = new ObjectInputStream(connection.getInputStream());
txtarea.append("\n Got I/O Streams \n");
msg = "Server>> Connection Successful";
output.writeObject(msg);
output.flush();
do{
try{
msg = (String) input.readObject();
txtarea.append("\n" + msg);
txtarea.setCaretPosition(txtarea.getText().length());
catch(ClassNotFoundException cnfex){
txtarea.append("\nUnknown Object type received");
}while(!msg.equals("Client>> Terminate"));
txtarea.append("\nUser Terminated connection");
output.close();
input.close();
connection.close();
++counter;
catch(EOFException eof){
System.out.println("Client terminated connection");
catch(IOException io){
io.printStackTrace();
public void sendData(String s)
try{
output.writeObject("Server>>" + s);
output.flush();
txtarea.append("\nServer>>" + s);
catch(IOException cnfex){
txtarea.append("\nError writing Object");
public static void main(String[] args)
Strider app = new Strider();
app.addWindowListener(
new WindowAdapter()
public void windowClosing(WindowEvent e)
System.exit(0);
app.runStrider();
//Hiryu.java
import java.io.*;
import java.net.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Hiryu extends JFrame implements ActionListener
ObjectOutputStream output;
ObjectInputStream input;
String msg;
JTextField txtfld;
JTextArea txtarea;
public Hiryu()
Container c = getContentPane();
c.setLayout(new FlowLayout());
txtfld = new JTextField(10);
txtarea = new JTextArea(10,20);
txtfld.addActionListener(this);
c.add(txtfld);
c.add(new JScrollPane(txtarea));
setSize(230,250);
show();
public void actionPerformed(ActionEvent e)
sendData(e.getActionCommand());
public void runClient()
Socket client;
try {
txtarea.setText("Attempting Connection\n");
client = new Socket(InetAddress.getByName("127.168.2.109"), 5000);
txtarea.append("Connected to:" + client.getInetAddress().getHostName());
output = new ObjectOutputStream(client.getOutputStream());
output.flush();
input = new ObjectInputStream(client.getInputStream());
txtarea.append("\n Got I/O Streams \n");
msg = "Server>> Connection Successful";
output.writeObject(msg);
output.flush();
do{
try{
msg = (String) input.readObject();
txtarea.append("\n" + msg);
txtarea.setCaretPosition(txtarea.getText().length());
catch(ClassNotFoundException cnfex){
txtarea.append("\nUnknown Object type received");
}while(!msg.equals("Server>> Terminate"));
txtarea.append("\nUser Terminated connection");
output.close();
input.close();
client.close();
//++counter;
catch(EOFException eof){
System.out.println("Client terminated connection");
catch(IOException io){
io.printStackTrace();
public void sendData(String s)
try{
output.writeObject("Client>>" + s);
output.flush();
txtarea.append("\nClient>>" + s);
catch(IOException cnfex){
txtarea.append("\nError writing Object");
public static void main(String[] args)
Hiryu app = new Hiryu();
app.addWindowListener(
new WindowAdapter()
public void windowClosing(WindowEvent e)
System.exit(0);
app.runClient();
}

Similar Messages

  • Really need advice/help please

    I am importing VHS movies and I need advice on procedures, I am really stuck so any advice given will be very helpful.
    I have my VCR connected to a ADVC300 analog to digital convertor, which is hooked up to my macbook.
    I am using iMovie 08, but have the previous one installed iMovie HD 6.
    I have no problem importing the footage... it comes in as a DV file (which I believe I need in order to edit footage later on).
    My problem is:
    1) The size of the DV is HUGE. Is this the format that I need to edit to later put on DVD by converting to mp4?
    2) I am a total novice, so is iMovie the best for doing the import? I have Final Cut Express, but I am not sure how to use it.
    3) I also have QT Pro, but after I am done doing an import and transfer the DV file to my back up drive... I cant seem to get the import to pull up in iMovie again. Do you have to do the editing right away after the import or you loose the ability in iMovie?
    4) My HD space on my computer is almost full and I thought that I deleted the DV file off my computer after transfering it to a backup drive. I went into Movies, and iMovies and deleted it... but it must be stored somewhere else, because I have like 60 GB used still?
    Thank you SO MUCH!!!!

    1) The size of the DV is HUGE. Is this the format that I need to edit to later put on DVD by >converting to mp4?
    Yes, DV is huge. You really need an external drive. The hugeness of DV is not an issue for iDVD. iDVD will convert the DV or MP4 into MPEG2 for encoding on the DVD. If you get iMovie 09, you can send DV to iDVD. In iMovie 08, you share as an h.264 file and that goes to iDVD. In my experience, not much difference.
    2) I am a total novice, so is iMovie the best for doing the import? I have Final Cut Express, but I am >not sure how to use it.
    Yes, iMovie 08/9 is the best. You can easily edit in iMovie 08. However if you later want to edit in FCE, you can access these files from FCE. If you import into FCE, iMovie can't see them.
    3) I also have QT Pro, but after I am done doing an import and transfer the DV file to my back up >drive... I cant seem to get the import to pull up in iMovie again. Do you have to do the editing right >away after the import or you loose the ability in iMovie?
    In iMovie, click VIEW/EVENTS BY VOLUME. You should see your external drive in the Event Library list. You can drag your file from your internal drive to the external drive by dragging and dropping the icon for your event onto the icon for the external drive. If you do it this way, iMovie will still see it.
    4) My HD space on my computer is almost full and I thought that I deleted the DV file off my >computer after transfering it to a backup drive. I went into Movies, and iMovies and deleted it... but >it must be stored somewhere else, because I have like 60 GB used still?
    It might be in your trash. Try emptying your trash.

  • Need advice helping raising my Fico score (571)

    Hi guys, Long time lurker, first time poster. Long story short, I had a chapter 7 bankruptcy discharged September 2014. At that time, my Fico score rose 9 points to 584. Since that time, my Fico score dropped to 544, and has seen a very mild increase up to today’s date at 574. I don’t have any of my own credit cards, although I am an authorized user on all of my fiancés Credit Cards. Between her and I we have two installment (auto) loans. She has the following Credit Cards, with the credit limits in the first column, with our typical balances in the next column (first 5 cards are paid off in full each month by due date, the last 4 cards have running balances on them that are targeted to be paid off at various points in the next year) : American Express Blue Cash Everday:     $2000    $200       10.0%   Target Visa Credit Card:                            $6500    $600       9.2%     Wal-Mart Mastercard:                                $6000    $400       6.7%     Toys R Us Mastercard:                              $8000    $200       2.5%     Kohl's Credit Card:                                     $1500    $100       6.7%       Kay Jewelers Credit Card:                          $7650    $700       9.2%      will be paid off on 10/1/15Best Buy Credit Card:                                 $3000    $2900    96.7%    will be paid off on 2/10/16Citi Diamond Preferred Card:                      $8800    $7800    88.6%    will be paid off on 6/3/15Capital One Card:                                       $7000    $3300    48.5%    will be paid off on 9/30/16  My question is: Do I need to add credit cards for just me, instead of being an authorized user on her cards? All of the cards I am added as an authorized user for are added to my credit report, and I thought with having multiple balances reporting each month that my score would change, but it really hasn’t at all. Does my bankruptcy really keep my score weighed down so much? Today I applied for a Capital One Quicksilver1 Unsecured card and was approved with a $1000 limit and I will start using that monthly. Should I apply for additional cards just under my name? I know that keeping most if not all cards below a 10% utilization rate is key, and we are trying to get there and hopefully won’t have any outstanding balances in one years time. However, I am curious as to what tips and advice I can get at helping raise my score. I figured that my score would be higher than it currently is, but clearly I am not doing the right things in raising it. Our plan is to purchase a new home next fall (she currently owns our current home just under her name), but by the time we are married next summer, it would be nice to have both of our incomes considered for a new house loan, and I certainly won’t help out that situation with my garbage credit rating. Thanks guys.

    NormanFH wrote:
    sanders_tj wrote:
    I was approved for $1000 limits on both the Quicksliver One card and the Platinum. Those both should be sent to me in the next week or two. We will be starting to move the charges we currently use on the Target credit card (groceries), the Toys R Us card (dinner, activites, etc.) and the Wal-Mart Card (fuel) over to the AmEx card in order to take advantage of the cash back so there won’t be much of a balance (if any at all) on any of those 3 cards. I figured instead of paying some of our utility type bills such as cell phone, cable, internet, gas, electric, etc. I would put those on my Quicksilver One card and pay them off each month, just as I would normally do with the cash in our checking account. I don’t know what I will use the Platinum card for, but I’ll find a use for them. As for the first reply I received, yes, some of the balances are high on a few cards. Those aren’t charges of us just racking up debt for fun. Life happened (child custody case with my ex, vet bills, etc.). As I already stated, we have a payment schedule set up to pay off those high balances within the next year. Normally, we don’t carry that high of debt on our cards. And best of all, we don’t miss payments. EDIT: Is there no effect to my credit report (or is the effect not as substantial?) if I am an authorized user as opposed to the sole card owner?Remove yourself from the AU status on the four cards that have the high balances. No sense in letting those balances hurt both of your scores.PIF before the statement closing date ALL cards except for one. Allow that one card to report a balance of under 10%. That strategy will always put you in maximum FICO score territory. Request CLI's on both Cap One cards after the third statement. Don't wait for the credit steps. You will still get a credit steps auto increase at the sixth month+1 

  • Need advice helping raising my Fico score (574)

    Hi guys, Long time lurker, first time poster. Long story short, I had a chapter 7 bankruptcy discharged September 2014. At that time, my Fico score rose 9 points to 584. Since that time, my Fico score dropped to 544, and has seen a very mild increase up to today’s date at 574. I don’t have any of my own credit cards, although I am an authorized user on all of my fiancés Credit Cards. Between her and I we have two installment (auto) loans. She has the following Credit Cards, with the credit limits in the first column, with our typical balances in the next column (first 5 cards are paid off in full each month by due date, the last 4 cards have running balances on them that are targeted to be paid off at various points in the next year) : American Express Blue Cash Everday:     $2000    $200       10.0%   Target Visa Credit Card:                            $6500    $600       9.2%     Wal-Mart Mastercard:                                $6000    $400       6.7%     Toys R Us Mastercard:                              $8000    $200       2.5%     Kohl's Credit Card:                                     $1500    $100       6.7%       Kay Jewelers Credit Card:                          $7650    $700       9.2%      will be paid off on 10/1/15Best Buy Credit Card:                                 $3000    $2900    96.7%    will be paid off on 2/10/16Citi Diamond Preferred Card:                      $8800    $7800    88.6%    will be paid off on 6/3/15Capital One Card:                                       $7000    $3300    48.5%    will be paid off on 9/30/16  My question is: Do I need to add credit cards for just me, instead of being an authorized user on her cards? All of the cards I am added as an authorized user for are added to my credit report, and I thought with having multiple balances reporting each month that my score would change, but it really hasn’t at all. Does my bankruptcy really keep my score weighed down so much? Today I applied for a Capital One Quicksilver1 Unsecured card and was approved with a $1000 limit and I will start using that monthly. Should I apply for additional cards just under my name? I know that keeping most if not all cards below a 10% utilization rate is key, and we are trying to get there and hopefully won’t have any outstanding balances in one years time. However, I am curious as to what tips and advice I can get at helping raise my score. I figured that my score would be higher than it currently is, but clearly I am not doing the right things in raising it. Our plan is to purchase a new home next fall (she currently owns our current home just under her name), but by the time we are married next summer, it would be nice to have both of our incomes considered for a new house loan, and I certainly won’t help out that situation with my garbage credit rating. Thanks guys.

    I was approved for $1000 limits on both the Quicksliver One card and the Platinum. Those both should be sent to me in the next week or two. We will be starting to move the charges we currently use on the Target credit card (groceries), the Toys R Us card (dinner, activites, etc.) and the Wal-Mart Card (fuel) over to the AmEx card in order to take advantage of the cash back so there won’t be much of a balance (if any at all) on any of those 3 cards. I figured instead of paying some of our utility type bills such as cell phone, cable, internet, gas, electric, etc. I would put those on my Quicksilver One card and pay them off each month, just as I would normally do with the cash in our checking account. I don’t know what I will use the Platinum card for, but I’ll find a use for them. As for the first reply I received, yes, some of the balances are high on a few cards. Those aren’t charges of us just racking up debt for fun. Life happened (child custody case with my ex, vet bills, etc.). As I already stated, we have a payment schedule set up to pay off those high balances within the next year. Normally, we don’t carry that high of debt on our cards. And best of all, we don’t miss payments. EDIT: Is there no effect to my credit report (or is the effect not as substantial?) if I am an authorized user as opposed to the sole card owner?

  • Need advice/help on Quicktime Pro

    Hi. I'm trying to help a friend with a video project and I'm having a bunch of trouble. I've been using a variety of software, but I'm hoping that Quicktime Pro (Quicktime 7) can do what I want.
    Here's the situation:
    My friend has a five minute audio file that he wants to upload to YouTube. He also wants a still image to appear while the audio plays.
    I created the image for him in Photoshop Elements - it was a doctored photo of two people.  When I added the photo (a PNG) into Imovie 11, the image quality of the photo looked worse. The photo looked "softer" (it was less sharp) and the contrast was lower. However, I uploaded it to YouTube anyway, as a test. The finished video on YouTube looked even worse -- the colors were all orangey. 
    However, the orangey issue was less important than the softness issue.  So, I decided to see if Quicktime Pro could do what I want. I own it, but I've barely used it.  So, I opened the photo in Quicktime Pro and it looked just fine -- exactly as it had in Photoshop Elements. I then recorded myself using my Mac's microphone just to create an audio file to add the to the still image. I opened that audio file in Quicktime Pro, then copied and pasted the audio into the movie containing the still image. I then saved the movie.
    I am running Lion, and I opened the movie in Quicktime Player (not Quicktime Pro) and it also played just fine. The photo looked right and it played the audio as well.  So, I decided to then "Share" the movie to YouTube from within Quicktime Player. It didn't work -- I got an error saying "Operation Stopped The operation is not supported for this media." I got the same error when I trying to export the movie within Quicktime Player.  Also, IMovie would not successfully import it.
    I tried using Handbrake as well to export it into a different format, and that gave me an error too.
    So, I'm not sure what is going wrong. Again, the movie plays just fine in Quicktime Pro and Quicktime Player -- the still image displays properly throughout the entire audio -- but I can't seem to export it or share it. 
    Any advice is appreciated.
    Thanks.
    Mirsky

    Any advice is appreciated.
    The description of your work flow is different from that which I would use. However, be that as it may, the key problem appears to be the default 15 fps frame rate automatically used to merge the photo and audio data. If you export the merged data directly from QT 7 Pro to any option which allows you to change the frame rate, the file which is then produced does not trigger the export stoppage in other applications. I successfully tested exports at 24 and 30 fps in both the QT X and HandBrake apps without problem.

  • Need advice (help!) Can I get files from Time Machine to a PC

    My Mac book's HD I think is dead. I have an external HD with Time Machine back ups on it. I really NEED to get my address book contacts off and onto my back up PC, for right now. Is there even a way to do that?? and while Im at it what about iTunes library?
    Please tell me there is a way.

    Chad,
    I must disagree with Nerowolf on this one. You should be able to get the items you need off the drive, even connected to a PC.
    Contrary to what Nerowolf believes, Time Machine stores backups as standard, complete files; it does not make "incremental" backups in the traditional sense. Each and every backup includes every file from the source, and each one is a complete file.
    The trick with Time Machine is that the data associated with those many, many files is only copied to the drive once, and each "iteration" of the same file links to that single copy of the data. The process whereby this occurs is called "multiple hard links," and the resultant files are called "multi-linked files."
    You need not be concerned with all this. The important point is that the files are seen as normal files to you and to the OS.
    The real problem, however, is that those files are stored on a volume formatted as HFS+, and Windows cannot normally access this file system. If you attempt to connect your Time Machine drive to a PC, it will want to format it. If you really need to access the drive, you'll need something like MacDrive, a PC utility that allows Windows to mount and access HFS+ volumes. Look for it on Versiontracker.com (in order to use it, you'll need to pay for it).
    CAVEAT: I do not know with certainty that MacDrive includes compatibility with Multi-linked files. Multi-linking is part and parcel of the HFS+ file system format, so there may be no problem, but you might want to double-check to make sure Multi-linked files are fully supported in MacDrive.
    Scott

  • Need advice/help on broken drive!

    I have a 13' White Macbook, bought it the back end of 07.
    I stupidly spilt some hot chocolate over it a few months ago but thankfully everything worked fine after I dried it out. The CD drive took a little work, it would only eject the CD so far so had to pull it out. Then I found it wouldn't finish CD's when I burnt them. Anyway I thought I could live with that and would buy a cheap external CD burner.
    Anyway now I have a CD stuck in it. It won't even eject to a certain point and the drive won't recognise a CD in it. I have looked everywhere and tried every suggestion but it just won't happen! I have pretty much given up.
    My main question is which external drive should I go for? I want to burn and play CD/DVD's and more my also big requirement is I want to play Sims 3 when it arrives next week. Can I do this with any drive or will I need some specific requirements?
    My nearest Mac store is a good couple of hours away so I can't simply go to the genius bar, hence me asking on here.
    Any suggestions would be great!
    Thanks in advance!

    Welcome to Apple Discussions!
    A http://www.patchburn.de/ patched drive that the software is compatible with, or one from http://www.macsales.com/ will do the trick. http://www.xlr8yourmac.com/ has a good guide for external drives that are fully compatible.

  • Installing Leopard on a new HD on my MacPro tonight need advice; HELP!

    I am installing Leopard tonight on a new WD 400GB HD on my Mac Pro. I also have Tiger on a different HD on my MacPro.. which I will keep untill I am sure Leopard is running properly.
    I have a few basic Questions on how I should go about the installation:
    1. Should I remove the jumper ( if it has one installed) that came with the new Western Digital 400GB SATA II HD drive even though it will be a master.. I had heard that SATA II HD's didn't need jumper settings on a MacPro...
    2. Before I install Leopard should I format the drive in Tiger for HFS+ Journaled? or will the Leopard install program do that for me?
    3. To start do I just put the CD in and shut down and restart the MacPro and then point the Lepoard DVD at the new drive ? (which I will name Leopard)
    On boot after installation is it the command or option key that I press on boot to select between starting in Tiger or Leopard?
    Thanks...

    You shouldn't have a problem. There's no license checking by the Leopard install

  • Need advice/help with Derogatory reporting from Wells Fargo Bank (Wells Fargo is the DEVIL)

    Hello Everyone! I am new to the forum & at the ripe (old) age of 36 have finally decided to take control of my credit and financial future. Thank you in advance to those of you who contribute on here. It’s a great site.. I wish I had found it earlier in life. In any event, I am trying to increase credit scores and have two *recent* derogatoriness reported by Wells Fargo Bank for past due STUDENT LOANS. The story goes like this … my monthly payment amount due suddenly changed from $150.00 (even) per month to $150.80. Because I obtain online only statements and was busy with life (taking care of mom with dementia etc) I didn’t realize the change and logged in for a few months and only paid $150.00. Wells Fargo subsequently reported me as “30 days past due" for the months of June & July 2014 for the $1.60 balance. Really Wells Fargo???? When I realized the derogatory reporting, I of course called Wells Fargo and protested. I then followed up with a “good faith request to remove letter” or whatever it's called. I sent it to: ATTENTION: Credit Bureau Dispute Resolution Department (CBDRU)301 East 58th Street NorthSioux Falls, SD 57117-5185 However, Wells Fargo responded with “the reporting is accurate and will remain as reported.” ***HOLES! All over $1.60??!? Before the incident I was frequently late (not a very good customer) but since Jan 2015 I have paid like clockwork and ON TIME every month. So, I am planning another course of action. I am wondering if anyone knows someone at Wells Fargo that I can address another letter to or call. I refuse to believe some human with a heart will let this stand. Any (backdoor info) or suggestions are GREATLY appreciated. Oh. It may be important to note that I was also 30 days past due back in Oct 2010.  This was "valid" and I never contested that. Blessings to everyone!

    LeeRivers wrote:
    The story goes like this … my monthly payment amount due suddenly changed from $150.00 (even) per month to $150.80. Because I obtain online only statements and was busy with life (taking care of mom with dementia etc) I didn’t realize the change and logged in for a few months and only paid $150.00. Wells Fargo subsequently reported me as “30 days past due" for the months of June & July 2014 for the $1.60 balance. Really Wells Fargo????It is unfortunate but it is accurate and they're under no obligation to remove.  All you can do is to try to escalate but that may not even lead to a removal. LeeRivers wrote:
    Before the incident I was frequently late (not a very good customer) but since Jan 2015 I have paid like clockwork and ON TIME every month.That's not going to help your case.  A few months on being on time is a plus but it's not going to overcome a track record of requently being late.  Derogs tend to have a major impact in general but a creditor is probably less likely to consider goodwill in a case like this versus a customer that has always paid on time and just happened to misread the amount due a couple of times.  Good luck with it.

  • Need a help / advice & guidance whether to switch on my Career in SAP-PM from core industries after spending my 09 years of experience in Core field that to in Maintenance.

    Hello Adviser /expert,
    Need a help / advice & guidance whether to switch on my Career in SAP-PM from core industries after spending my 09 years of experience in Core field that to in Maintenance.
    As now i m thinking to do SAP-PM certified course from authorized SAP partner in India that to Pune.
    So any one can suggest authorized SAP partner in India that to Pune.
    My introduction (About myself): - I had done my Diploma in Mechanical and had total 09 years of experience in Mechanical Maintenance field that to in different manufacturing company such as Steel, Auto Ancillary & Cotton plant.
    Whether its right decision to change my career from Core sector to SAP-PM..??
    Is there very good scope in SAP-Pm for me after 09 years of Core Maintenance field..???
    Guide me
    Warm Regard
    Ravin

    Ravindra,
    SAP PM is very niche Module, very in demand module, at the same time, being niche, getting into it and getting 1 implementation is also difficult.
    your decision of joining SAP authorized training is the best option, as a certified consultant, you have more chances to get a break as fresher and you can continue working on it, else it would waste of your intellectual energy.
    you just search sap.com training or email them or chat with them, they will give u the training center details,
    but very less training classes are available. Try you will get lucky soon

  • I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    Yep, that's the only message that popped out. Nothing else. Yes, it's running on the latest ios and I still can't restore it. I called apple and they told me it's probably something wrong with their servers. Anyway thanks for the advice.

  • DropBox v TimeCapsule (advice needed, pls help)

    Hi everyone,
    I need advice on how to set up my home system in terms of using Dropbox, Hard drive usage and home networking.
    Please bear with me while i explain my situation. I run my own Graphic Design business from a home office, I have an 27" iMac and i have a 13" Alu Late 2008 Macbook which i use for my work. I mainly work on my iMac most of the time and then use my macbook in evenings (in front of TV) and when out of the house/office. My iMac has a 1TB hard drive and my Macbook has a 160GB hard drive. I also have a 3TB Lacie external hard drive storing all of my files.
    I have a Pro Dropbox account so i have just over a 1TB of storage there too. My plan was to use the Dropbox as my main file storage so it syncs all the files on bot macs and i don't have to waste time dragging files to different backups (i can also use files remotely when i am on my Macbook out of the office or downstairs etc), get a program like Crash Plan to make a backup of everything and then have a physical copy on my Lacie drive just to ensure i am safe every which way.
    The problem i have is that my macbook's hard drive is only 160gb and as i use a lot of large files my dropbox just eats up my hard drive and i can't use all the files i have on my dropbox. I have tried to think of lots of ways around syncing but the way Dropbox works is exactly what i want to do. I have considered changing my plan and buying a TimeCapsule and use that as a home network then use Dropbox if i need anything out of the house. So i suppose my questions are:
    Do i buy a TC and use that for my home network to save on hard drive space and mean i can work in any room but still sync?
    Or, do i buy a new 1TB hard drive for my 2008 macbook so Dropbox can save on there and sync files?
    Or, buy a new macbook pro (only problem is the new ones use a flash drive which won't hold the dropbox), i can really afford this option either at the moment?
    Please help me out guys as i need things to just work as i am pretty busy and can't decide which to do to help me out...any suggestions welcome.

    Once you boot a computer from SSD you will never go back to mechanical disks ... at least for boot.
    Buy the biggest you can afford.. 500GB SSD are now around $270 here.. you don't need the best.. buy the samsung 840 evo. It might not last as long as the more expensive pro series but that does mean much for a 2008 laptop. You are stretching it already.
    I have a 256GB SSD in a 2011 MBP 15" with a high res screen I got on ebay cheap. It is a great machine.. or was until i put Mavericks on it.. I will take it back to Mountain Lion when I get a chance. I run an i7 mini also 2011 with the small video card they had..
    I got it cheap from ebay.. of course.. It has a 256GB sandisk drive.
      Media Name: SanDisk SDSSDH2256G Media
    I just got another one of these with the original 750GB hard disk and it feels so so slow.. you end up totally spoiled.. everything opens and closes instantly in the mini with SSD and the other one is so so slow. It is getting the new 500GB SSD.
    I have done a few of these now for friends.. it does end up costing more than a current model mini.. but other than missing USB3 which is a pity.. they are a great little computer. And with SSD only near totally silent.. it occasionally spins the fan up if it has been running hard for a while. I am getting old and grumpy and noisy rattling computer fans are more than I can stand.
    I have done some research into the Seagate SSHD and it seems that it isn't ideal for people looking to crunch larger files which would probably be me
    Yes, I warned you the SSHD is not much good for very large files.. Even so a modern 7200rpm drive should work a lot better.
    Note the DVD drive will be sata 1 so yes the SSD should replace the current hdd.

  • HT1222 I need some help.... I Have the iPhone 4S and downloaded the new software (6.0) and everything seems great so far except when I try to open a link in safari from a different app (messages, Facebook, ext..) it glitches and won't load. Any advice?

    I need some help.... I Have the iPhone 4S and downloaded the new software (6.0) and everything seems great so far except when I try to open a link in safari from a different app (ie..messages, Facebook, ect..) it glitches and won't load. The blue loading bar will just jump back and forth and the page will not load properly if at all....

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • HELP! NEED ADVICE

    I need desperate help!! I’m at a point where I feel like I don’t know where to go I have been rebuilding my credit as a result of my 2011 filed CH.13 BK which turned into a Ch.7 BK in 2014 due to income qualification issues after the recession.  My 2014 BK was discharged in Nov 2014 and after my Discharge this is what has taken place; July 2014              Filed Ch.7 BKAug. 2014            Financed an auto w/Tidewater Finance with a 19% APR – I needed a car to work.Nov. 2014            Received my Discharge Doc.Dec. 2014             Opened a Secured CC with my CU with a $2000 CL A $300 Merrick Bank Secured CC survived the BK process opened in May 2014 Mar. 2015            Opened a $200 Secured CC with OpenSkyMar.2015             CreditOne offers me the 1st unsecured Visa with $400 CL which turns into $600 after the1st statementJune 2015            California Coast CU Refinances my Auto Loan from 19% to 4.98%AND offers me a unsecured Cash Rewards Visa with a $1000 CL    July 2015              I open my NFCU Account and qualify for an unsecured Visa with $1000 CL                                Discover approves me for an unsecured Chrome card with $1800 CL but high APR **All is cool until here… then a few roadblocks fall into place July 2015              My son’s vehicle breaks down and its $3000 to repair. Since the car is too old and not worth the repair cost we sell it for $600 and decide to go car shopping. He has no credit/thin file without a score with all 3 CB - and has only been at his recent job for 2 months. I suggest he apply with NFCU for a vehicle loan and they request a cosigner. At the end he gets a 16.99% APR on the loan and at this point the car is a done deal because he needs transportation for work. I ended up being the cosigner.. All is handy dandy here since my son is paying his loan but I now need another car for my soon to go to college daughter – This is where I am stuck… I have $2000 cash for my daughter but with that kind of money I can’t get any reliable car.. I am afraid to apply for another car loan because of the too recent Accounts that have been opened and also because I’m scared that I’ll get a high APR. I have $120k of equity on my home which I can’t figure out how to use but which would save me in paying off my son’s car loan and my daughter’s new car along with just paying off my auto loan so I get rid of that payment but with my scores and BK from 2014 I am afraid I can’t qualify.  NFCU told me that I have to apply first for them to even consider talking to me about qualifying or not qualifying because for a mortgage loan they pull all CR’s. I am afraid to have NFCU pull it – affect my score even more – andfinally get denied.. And this comes to my initial problem… I don’t know what to do or where to go now.. Can anyone please give me some sort of suggestion, recommendations, anything? I truly appreciate it..you all have been great in helping and I can’t thank you all enough. ps: In case you are wondering.. I am the only source income in my home :/

    That's interesting that it didn't work for you. I've had the opposite experience. I exchanged my white iPod Nano for a new one last week and decided to leave the plastic sticker on it for a few days. I finally pulled the plastic sticker off the front of it yesterday, and there was not a scratch on it. Looked perfect. Carried it to work this morning in one of my kids old "baby" socks and it still looks great!
    I've decided that I'm just going to be careful with it, and I'm not going to let a few scratches prevent me from enjoying the coolest iPod around.

  • HELP: New to Mavericks. Need advice on setting up secure user accounts

    Hi,
    I need advice on how to best set up user accounts on Mavericks.
    I must set up an Administrative account...Any suggestion for best settings here to protect against targeted malicious exploits?
    I would also like to set up two user accounts for everyday work with applications and Internet browsing done in such a way that the machine would be protected from malicious attacks but with a minimum of inconvience for the users ( myself and my wife ).
    Thanks

    Hi hassiman, any exploits will come in the form of users downloading suspect pieces of software like browser add-ons and extensions, device drivers and non-trusted apps.
    Make sure that you do not use the admin account for any day to day use
    Create two normal user accounts, one for each of you and use them day to day
    When using the admin account to set up your system, pay very careful attention to the System Preferences > Privacy & Security area. There are various things to set up properly here:
    There are three settings for how people can download software, 1) From Mac App Store only, 2) From App Store and registered developers and 3) from anyone. It defaults to 2) but check it and if you feel uncomfortable with that, set it to 1). This might prevent you from downloading and installing software you think you might need; but think carefully about wether you really need it and therefore wether you should temporarily allow it via a lower setting.
    For the firewall, if you dont have a firewalled internet gateway device (a wireless router or similar), make sure the firewall is turned on. Most internet connection equipment does have such a firewall; make sure it is blocking any incoming connections by using its admin tool (usually a web browser interface). Consult its documentation for details.
    Whenever OS X asks for a password to complete a task of any kind, look carefully at what is making it ask and if you aren't sure, don't go through with it; it is usually wanting the admin account name and ppassword to complete some kind of system modification (install, config etc.).
    Make sure that you are both aware of the danger of installing any software that wants to add itself to your system or web browser. Things like custom search bars, extensions etc. If you are viewing a web page and it says you need "x" to see it or use it properly, make sure you really need to use that web site; otherwise don't do it.
    It really all comes down to common sense; the worst security breaches and damage come from users who don't know what to do, but they still click "OK" when they should be clicking "cancel" or "close". Make sure you and your wife are fully aware that responsibility lies with yourselves. It is better to take a minute to decide wether to install something (even if it's 20 times a week) than spend days fixing a compromised system.

Maybe you are looking for

  • Can't Update/Restore/Use my iPod!!

    My iPod worked, with all my music, it updated and everything. Then I put iPod Linux on it, and it worked just fine, but then I tried to update it, and it gave me the error message: An error occurred while trying to update/restore iPod. So I uninstall

  • Can a user with Contribute privileges invoke SPFolder.SubFolders.Add(folder) Sharepoint 2010 API in a Webservice?

    We have a Webservice deployed on a Sharepoint 2010 deployment with a method as follows: public static string ensureParentFolder(SPWeb parentSite, string destinationUrl) destinationUrl = parentSite.GetFile(destinationUrl).Url; int index = destinationU

  • Curve 9320 does not sync with outlook 2010

    Well, I've seen some posts about this issue, yet, not found much in the way of solutions. I have a curve 9320, oldie but goodie.  I also have Outlook 2010 on this Win 7 Pro computer. The BB desktop software is v.7.1 bundle 2814. Now, when I ask the B

  • Oracle JDBC Connectivity

    I am trying to connect to oracle8.0.5 database from JDK1.3 on windows 2000 os my program code is as follows import java.sql.*; class JEmpt{ public static void main (String args [])      throws SQLException {      try           Class.forName("oracle.j

  • BAPI for invoking 'Stop Transaction'

    Hi, Is there any BAPI to stop the running of any function module or report after some time by specifying the time. If any FM or report goes running for long time need to invoke BAPI to stop the same. Regards, Ram