Search:

Type: Posts; User: ZX81

Search: Search took 0.11 seconds.

  1. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    Yes I think I will be spending a few more late nights trying to solve this. But I will add some additional printlns and see what it shows.
  2. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    I need this server to work with the TFTP clients that are coded into routers and switches opperating systems, also with the Windows 7 built in TFTP client that runs from the command line. I just...
  3. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    Sorry for the delay in answering your questions, it seems to partially work when connecting to the server using a client (code above) that came as part of this server template. But it still will not...
  4. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    Found this client code if it helps:


    package tftpclient;
    import java.net.*;
    import java.io.*;
    import java.util.*;

    /**
    *
  5. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    I have to go to work now, so any more advice would be mostly appreciated and I will reply to any questions later.
  6. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    As well as command line prompt.
  7. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    Its just a stand alone server so I have been using Tftpd32 App TFTPD32 : an opensource IPv6 ready TFTP server/service for windows : TFTP server , to connect to the server this running on a Virtual...
  8. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    No the print out is just a println I placed there as a debug. This shows that the server gets the clients request but it goes no further.
  9. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    Sorry Here is full code:


    package tftps;
    import java.net.*;
    import java.io.*;
    import java.util.*;

    /**
    *
  10. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    Did some more debugging the server is getting to here:


    public int getInt(int offset) {
    System.out.println("Getting to GetInt");
    // Fix to avoid sign extension

    // Remember what...
  11. Replies
    19
    Views
    2,003

    Re: TFTP Server not allowing data transfer

    I have used WireShark while connecting with a client but all it shows is the client requesting a "Write Request", the server just does not respond, resulting in the client timing out. The server and...
  12. Replies
    19
    Views
    2,003

    TFTP Server not allowing data transfer

    Hi all, my TFTP server I want to use as a template will not alllow me to send or recieve data. Any advice would be great as I don't know if its possibly a folder access problem on my PC. Here is the...
Results 1 to 12 of 12