Closed Thread
Results 1 to 4 of 4

Thread: Urgent Help on Currency Converter!

  1. #1
    tanxp002 is offline Newbie
    Join Date
    Dec 2007
    Posts
    4
    Rep Power
    0

    Urgent Help on Currency Converter!

    I have encountered problem in this project

    Design and construct a java program (consisting of a java class or classes) which is able to discover the available web services from a web service registry server and execute the service required and then shows the result in your GUI.

    I do not know how to create the GUI and also SOAP. Someone pls help me...

    Thanks and Regards!

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    jtaleric is offline Newbie
    Join Date
    Jul 2006
    Posts
    7
    Rep Power
    0
    Mind giving some more information into this? You can build a GUI with NetBeans or one of those bloated IDE's... Just take your pick..

    I am assuming you guys are using Apache Axis for your SOAP?

    In your Java file you need to include the stubs that Axis creates...
    Here is an example..
    Code:
    //This is just a example, I write a chat client that used a SOAP protocol... I had PHP interface with the Java server side. 
    import polaris.cs.wcu.ChatServer_jws.ChatServerServiceLocator;
    import polaris.cs.wcu.ChatServer_jws.ChatServerService;
    import polaris.cs.wcu.ChatServer_jws.ChatServer;
    import org.apache.axis.client.*;
    
    ...
    
    // Locating the service....
    ChatServerService service = new ChatServerServiceLocator(); 
    // Our WebService to contact
    String endpoint = "http://polaris.cs.wcu.edu:8180/axis/"+
                    "jtalerico/ChatServer.jws"; 
    
    ...
    To find out what services that are currently provided look at the .jws with the query 'wsdl' so it will look like..

    somefile.jws?wsdl
    Maybe post some code you have already written so we can get a good idea where you need help.

  4. #3
    tanxp002 is offline Newbie
    Join Date
    Dec 2007
    Posts
    4
    Rep Power
    0
    Hi jtaleric, as i am new to programming. I'm still unsure. as requested i can't use PHP to code. Do you mind reading my code first?

  5. #4
    jtaleric is offline Newbie
    Join Date
    Jul 2006
    Posts
    7
    Rep Power
    0
    The code i posted was not php. It was java

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. currency converter.vbs
    By tsmitt in forum Visual Basic Programming
    Replies: 3
    Last Post: 04-27-2011, 06:07 AM
  2. Replies: 1
    Last Post: 11-12-2010, 06:02 AM
  3. Currency converter!!!!
    By PascalNouma in forum Java Help
    Replies: 2
    Last Post: 03-30-2009, 12:34 PM
  4. Basic C Help -- Currency Converter
    By liljp617 in forum C and C++
    Replies: 12
    Last Post: 09-07-2008, 03:45 PM
  5. Urgent Help on Currency Converter!
    By tanxp002 in forum MarketPlace
    Replies: 3
    Last Post: 12-24-2007, 06:52 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts