CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Deliverance

Page 1 of 18 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: Flex + Java + BlazeDS: java instances on srvr unable to Flex

    have you tried using the spring-flex examples?

    http://www.springsource.org/spring-flex

    As another side-note, I did this in the past by creating a custom authentication command in my...
  2. Replies
    2
    Views
    2,278

    Re: user's activities logger using java

    1) Asking 1 sentence for a problem for something of very large scope wont' get you anything.

    2) This is the function of 'Computer Management' that windows already uses. when you are a member of a...
  3. Replies
    1
    Views
    1,833

    Re: Unable to Upload file to FTP.

    Look what the connect method is doing. If you paste that in your browser, is that path found, and can you authenticate against it?

    As an edit also, you should probably re-work your main method to...
  4. Re: Implenting arrays and method call into current code

    It's not very clear what it is that you are trying to do.

    What is your requirement and maybe we can help you with showing what and how to use arrays and writing additional methods.
  5. Replies
    4
    Views
    5,791

    Re: I know Java. What's Next?

    Syntactically knowing java and its data structures are only small pieces.

    - Build a web app
    - learn the java servlet api
    - jsp pages
    - use hibernate / jpa to store some data in a db.
    - least...
  6. Re: JAAS implementaion for web application with tomcat

    http://en.wikipedia.org/wiki/Java_Authentication_and_Authorization_Service

    That's not good enough?
  7. Replies
    20
    Views
    6,637

    Re: Attempting to log into website from java

    Also, double check that the implementation of your http connection can handle passing cookies back. I got burned by this once when I was running unit/integration testing against a project of mine...
  8. Replies
    20
    Views
    6,637

    Re: Attempting to log into website from java

    In general you should be passing the headers untouched back to you as they may have added things in there (such as your session id). As long as it's passed the next time, you should still be able to...
  9. Replies
    6
    Views
    2,259

    Re: Dump jsp applet reply to readable format

    tcpmon can work great for that
  10. Replies
    20
    Views
    6,637

    Re: Attempting to log into website from java

    Is the middleware token some kind of nonce? Does it change when you re-negotiate a session or it becomes invalidated?
  11. Replies
    20
    Views
    6,637

    Re: Attempting to log into website from java

    For starters you're doing the post wrong. You need to find out how the username and password are sent across the wire. They're not posted in plain text for all the world to see. Most common is a base...
  12. Re: help with delay, execute second system command

    5000l (letter 'L')
  13. Thread: Swing

    by Deliverance
    Replies
    7
    Views
    1,542

    Re: Swing

    :| ?

    My train of thought (and it may be a little convoluted) on this is that everyone else knows the American equivalent of all these words. I'm a Canadian myself (and originally from Europe) and...
  14. Re: Accept Connect Request and Read Broadcast

    Exactly. You hand over your server, your client, and a configuration document and leave the element of some kind of user configuration in there. Think about your web browser for example, you don't...
  15. Thread: Swing

    by Deliverance
    Replies
    7
    Views
    1,542

    Re: Swing

    I like to think that only technical North American English is used in software development.
  16. Thread: Swing

    by Deliverance
    Replies
    7
    Views
    1,542

    Re: Swing

    for the record, it is spelled T-I-R-E :D
  17. Re: How to change a filetype of a file using Java?

    See the http://java.sun.com/javase/6/docs/api/java/io/File.html class
  18. Re: Accept Connect Request and Read Broadcast

    I guess first thing is ask yourself how far the life of this project is expected to go. If this is for academic purposes and you always can guarantee that you will be running the server from the same...
  19. Thread: Jtapi

    by Deliverance
    Replies
    2
    Views
    2,888

    Re: Jtapi

    First, What PBX are you hooking into? For example, freeswitch has mod_java which you can use to interact with it




    1) Personally, I would look to integrate or attach a module to the PBX
    2)...
  20. Re: Could I have some critique of this mobile java code please

    1) use an enum for comparing your mode not an int
    2) instead of command having a label, you could have also used an enum for comparing against this. the display label should only be for representing...
  21. Replies
    7
    Views
    7,688

    Re: help with rc5 algorithm implementation

    Just to add to my fire and forget point:

    http://www.java-forums.org/new-java/27040-help-rc5-algorithm-implementation.html

    cross posted which looks like a big clone of:
    ...
  22. Replies
    7
    Views
    7,688

    Re: help with rc5 algorithm implementation

    I wouldn't ask a question like this. I would research my topic, and if I cannot find an explanation or I cannot understand the words, then I ask about the topic / concept but not with a specific...
  23. Replies
    15
    Views
    4,229

    Re: need help urgent please

    I also tried without getting it to work. Mostly because I don't know what a SD2054 module is, and I don't care to look it up myself.

    Let's see what you tried and what didn't work instead.
  24. Replies
    5
    Views
    11,196

    Re: ArrayList to int Array

    .toArray(new Integer[0])
  25. Re: How can windows xp any file delete or folder delete application in java?

    If this is a java application:

    http://java.sun.com/javase/6/docs/api/java/io/File.html

    File class has
    isDirectory() and
    delete() methods for you.
Results 1 to 25 of 427
Page 1 of 18 1 2 3 4





Click Here to Expand Forum to Full Width

Featured