CommunityDiscussion/Forum built in Java......

Good Afternoon,
I need a tool for creating community discussions and searched google, sourceforge, etc for one built in Java. I found the one used here called Jive that was originally an open source project. The Jive open source page was moved to the jivesoftware site where you can buy it. I like what is offered by Jive and would not mind paying the $1500 bucks or so for the license. But, if there is open source I would much rather contribute source code contributions than bucks.
Does anyone know of a similar tool written in Java and open source? Or not open source? One key feature is allowing a user to see only those forums they are authorized to see.
Many Thanks!
Al

Hi Kevin,
Unfortunately, no. I found a few and most were in early stages of development with really basic features. There are some good ones, but not in Java.
We have settled on Jive and will be coughing up the bucks. It seems to be worth it.
Al

Similar Messages

  • Installing programs built with Java

    I have a client who installed programs [applications] we built in Java. One person has no problem installing and running the programs. Another can install and run two of the three programs. The third program does not open a dialog box for them to register the program with us. The third person can open one program [the second installs with the first but will not open]; and the third program does not install at all. They all use Windows 2000 5.00.2195 with Service Pack 3. For the program that will not install the task manager indicates that 100% cpu processing time is involved. For the other programs that will not run, they get the javaw.exe error message. A fourth person with Service Pack 4 cannot install any of the programs and gets the wjview.exe generated error and the computer shuts down. This represents money to us if we can solve this problem. I would appreciate any help or suggestions.
    Thanks
    Donna

    * You ship your own JRE for your app
    * You get errors from wjview.exe
    Based on these 2 evidences, your app is not launched
    with your shipped JRE correctly. Perhaps it is
    launching the default java and not the full path to
    your JRE location? That is at least one of your
    problem you need to fix there.
    I suggest two probabilities
    1) As lichudang says above, launching is not correct. wjview.exe is a component of MS Java, not Sun Java.
    2) Possibly these client machines have acquired spyware/adware/viruses. Using wjview to launch these buggers is somewhat common.
    Take a look at this thread http://forum.java.sun.com/wireless/thread.jsp?forum=8&thread=351762&start=30&range=15&tstart=0&trange=15 which talks about (2) above.
    This Google search turns up quite a few references, try refining it with additional terms
    http://www.google.com/search?num=100&hl=en&lr=lang_en&ie=UTF-8&c2coff=1&q=%22wjview.exe&btnG=Search

  • How can i built a java application using java debug class on Log4J

    Hi,
    As java API support the MethodEntryEvent, using which I can get the automatic logging statements when the method is entered or exited as HelloExample.main(with argument type).
    Where HelloExample is the class name.
    Main is the method entered with its argument types.
    In some cases I have the o/p as
    -- VM Started --
    ====== main ======
    main -- HelloExample
    callerMethod -- HelloExample
    ====== main end ======
    -- The application exited --
    By using Log4J is there any possibility of getting these sort of o/p along with the loggers supported by Log4J. i mean to say can i built an java application which supports the MethodEntryEvent and MethodExitEvent from java API and also uses the Log4J debugging. I took an e.g. trace example, which (in J2SE 1.4.x or 5.x) will be found in $JAVA_HOME/demo/jpda/examples.jar and unpacking it by
    jar -xvf $JAVA_HOME/demo/jpda/examples.jar i found the com/sun/tools/example/trace/Trace.java and passed the class constructed with logger taken from Log4J. In this case the logging message is displayed on the console. As per the requirement i need to transfer the whole o/p to an output file along with Log4J logger statements. in this case i should not give any command in the cosule except compiling and executing the programme. the programm also should able to run without the main() as i need to integrate Log4J with an application and the code must me application server independent. i need the output as i got using MethodEnteryEvent (shown as above) in case of java application built using Log4J.
    Can any one help me in this regard. can any one give me some suggestion or any programme of this sort. All suggestions are welcomed.
    Thanks & Regards,

    hi,
    can someone help me how to implement logging for method entry parameters and
    method exit return value.
    can someone help me how to use log4j and integrate it to the method entry
    logging and method exit logging.
    Here what i need is without writing the log statements for the method entry and
    method exit i need to log it to the file
    along with other log4j debug statements i provide in the file.I should be able
    to configure whether to enable/disable the logging
    for method entry and method exit. In method entry i should be able to log the
    parameters the method take and in method exit
    i should be able to log te return value to the log file, before the method is
    returned to the callee.
    i hope i am clear
    Thanks in advance.

  • How to parse a string in CVP 7.0(1). Is there a built-in java class, other?

    Hi,
    I need to parse,in CVP 7.0(1), the BAAccountNumber variable passed by the ICM dialer.  Is there a built-in java class or other function that would help me do this?
    Our BAAccountNumber variable looks something like this: 321|XXX12345678|1901|M. In IP IVR I use the "Get ICM Data" object to read the BAAccountNumber variable from ICM and then I use the "token index" feature to parse the variable (picture below).
    Alternately, IP IVR also has a Java class that allows me to do this; the class is "java.lang.String" and the method is "public int indexOf(String,int)"
    Is there something equivalent in CVP 7.0(1)?
    thanks

    Thanks again for your help.  This is what I ended up doing:
    This configurable action element takes a string seperated by two "|" (123|123456789|12)
    and returns 3 string variables.
    you can add more output variables by adding to the Setting array below.
    // These classes are used by custom configurable elements.
    import com.audium.server.session.ActionElementData;
    import com.audium.server.voiceElement.ActionElementBase;
    import com.audium.server.voiceElement.ElementData;
    import com.audium.server.voiceElement.ElementException;
    import com.audium.server.voiceElement.ElementInterface;
    import com.audium.server.voiceElement.Setting;
    import com.audium.server.xml.ActionElementConfig;
    public class SOMENAMEHERE extends ActionElementBase implements ElementInterface
         * This method is run when the action is visited. From the ActionElementData
         * object, the configuration can be obtained.
        public void doAction(String name, ActionElementData actionData) throws ElementException
            try {
                // Get the configuration
                ActionElementConfig config = actionData.getActionElementConfig();
                //now retrieve each setting value using its 'real' name as defined in the getSettings method above
                //each setting is returned as a String type, but can be converted.
                String input = config.getSettingValue("input",actionData);
                String resultType = config.getSettingValue("resultType",actionData);
                String resultEntityID = config.getSettingValue("resultEntityID",actionData);
                String resultMemberID = config.getSettingValue("resultMemberID",actionData);
                String resultTFNType = config.getSettingValue("resultTFNType",actionData);
                //get the substring
                //String sub = input.substring(startPos,startPos+numChars);
                String[] BAAcctresults = input.split("\\|");
                //Now store the substring into either Element or Session data as requested
                //and store it into the variable name requested by the Studio developer
                if(resultType.equals("Element")){
                    actionData.setElementData(resultEntityID,BAAcctresults[0]);
                    actionData.setElementData(resultMemberID,BAAcctresults[1]);
                    actionData.setElementData(resultTFNType,BAAcctresults[2]);
                } else {
                    actionData.setSessionData(resultEntityID,BAAcctresults[0]);
                    actionData.setSessionData(resultMemberID,BAAcctresults[1]);
                    actionData.setSessionData(resultTFNType,BAAcctresults[2]);
                actionData.setElementData("status","success");
            } catch (Exception e) {
                //If anything goes wrong, create Element data 'status' with the value 'failure'
                //and return an empty string into the variable requested by the caller
                e.printStackTrace();
                actionData.setElementData("status","failure");
        public String getElementName()
            return "MEDDOC PARSER";
        public String getDisplayFolderName()
            return "SSC Custom";
        public String getDescription()
            return "This class breaks down the BAAccountNumber";
        public Setting[] getSettings() throws ElementException
             //You must define the number of settings here
             Setting[] settingArray = new Setting[5];
              //each setting must specify: real name, display name, description,
              //is it required?, can it only appear once?, does it allow substitution?,
              //and the type of entry allowed
            settingArray[0] = new Setting("input", "Original String",
                       "This is the string from which to grab a substring.",
                       true,   // It is required
                       true,   // It appears only once
                       true,   // It allows substitution
                       Setting.STRING);
            settingArray[1] = new Setting("resultType", "Result Type",
                    "Choose where to store result \n" +
                    "into Element or Session data",
                    true,   // It is required
                    true,   // It appears only once
                    false,  // It does NOT allow substitution
                    new String[]{"Element","Session"});//pull-down menu
            settingArray[1].setDefaultValue("Session");
            settingArray[2] = new Setting("resultEntityID", "EntityID",
              "Name of variable to hold the result.",
              true,   // It is required
              true,   // It appears only once
              true,   // It allows substitution
              Setting.STRING);  
            settingArray[2].setDefaultValue("EntityID");
            settingArray[3] = new Setting("resultMemberID", "MemberID",
                    "Name of variable to hold the result.",
                    true,   // It is required
                    true,   // It appears only once
                    true,   // It allows substitution
                    Setting.STRING);  
            settingArray[3].setDefaultValue("MemberID");
            settingArray[4] = new Setting("resultTFNType", "TFNType",
                      "Name of variable to hold the result.",
                      true,   // It is required
                      true,   // It appears only once
                      true,   // It allows substitution
                      Setting.STRING);  
            settingArray[4].setDefaultValue("TFNType");    
    return settingArray;
        public ElementData[] getElementData() throws ElementException
            return null;

  • Is it possible to run a website built in Java and applet from Safari browser in iPad

    Is it possible to run a website built in Java and applet from Safari browser in iPad?

    Java isn't supported on the iPad

  • External SOAP client Accessing Webservice using built in Java Data type

    We have built a webservice and deployed it on WLS. We accessed this from a swing
    client it works fine.The webservice methods uses non-built in JAVA data types
    as parameters.These are Value Objects and the JAVA Serializer and Deserializer
    classes are generated using Ant task itself.The client coding uses Value objects
    given by the Client_jar (generated using <Clientgen> ant task) to pass to the
    webservice. We dont want to go by this way.Is there anyway were in we can pass
    parameters to the method which expects non-built in java datatypes?
    Why i am asking this is, i want to know how an external client (.Net client )
    will be able to exceute my webservice (i.e., passing the required Object which
    the method is expecting)?

    Hi Anish,
    Well first off, your web service doesn't send or receive "objects". It only sends
    and recieves XML, which is in turn converted to/from Java objects at invocation
    time. Second, a .NET (or Perl, or Python, or C++) client will be able to call
    your web service, because the wsdl.exe tool (for .NET) will generate "programming
    language specific" objects from the <types><schema> elements, in the WSDL of your
    web service :-) The wsdl.exe tool will create C# objects from the WSDL, that will
    convert XML to/from C# when your web service is called. That's the beauty of XML
    schema - it's a "universal typing system", so it's not tied to a particular programming
    language. The only issue is whether or not the web services platform vendor's
    XML Schema/WSDL processor, can successfully process the WSDL. Some vendors have
    more complete implementations of the WSDL and XML Schema specs than others, so
    expect varying success here. The one in WLS 7.0 is pretty good, so you shouldn't
    have too many problems consuming WSDL generated by .NET tools (or any other tool
    for that matter).
    Regards,
    Mike Wooten
    "Anish" <[email protected]> wrote:
    >
    We have built a webservice and deployed it on WLS. We accessed this from
    a swing
    client it works fine.The webservice methods uses non-built in JAVA data
    types
    as parameters.These are Value Objects and the JAVA Serializer and Deserializer
    classes are generated using Ant task itself.The client coding uses Value
    objects
    given by the Client_jar (generated using <Clientgen> ant task) to pass
    to the
    webservice. We dont want to go by this way.Is there anyway were in we
    can pass
    parameters to the method which expects non-built in java datatypes?
    Why i am asking this is, i want to know how an external client (.Net
    client )
    will be able to exceute my webservice (i.e., passing the required Object
    which
    the method is expecting)?

  • Our Java application is built with java 1.4 version and oracle 10g

    Our Java application is built with java 1.4 version and oracle 10g version database, is it possible to upgrade oracle database to 11g?

    is it possible to upgrade
    Yes. SE and the other editions have a migration/upgrade utility, not seeing any mention of that program in the XE license docs. To upgrade to 11gR2 from 10g, the 10g instance must be at patch 10.2.0.2 or higher.
    So if you're a GUI dba, might be out of luck. But the the XE install has the catalog upgrade scripts that need to be run, there is a MOS note explaining the manual upgrade steps.
    Or set up a brand new 11g database instance and datapump your user schema(s) from the 10g instance to the new 11g instance. The database doesn't care what java version you're using, it just does what its told with the data. DDL, DCL, DML ... its not much different. Quite a few new features in 11g.
    But if you're after JVMs that piece is not supported with XE.

  • Can't enter text in certain forum dialog boxes (java?)

    On certain forums and sites, I am unable to click on a dialog box and enter text. When I click in the box, it either highlights the line or the whole box but does not allow me to enter any text - the keyboard does not appear. I do not have an option to paste text either. The text/dialog boxes look similar to the one I am writing in right now. For my online classes, I use Moodle, and that's one of the sites that causes this issue. It was an issue also on my iPhone but I was hopeful that it would work differently on the iPad.
    There are two methods I've found to enter text. One is through HTML and the second is unreliable -sometimes if I click in the box while I refresh, I can get the keyboard to pop up.
    Any thoughts or suggestions? Java is enabled and I've tried clearing everything.

    According to what I read on another forum entry - to do with WYSIWYG editors - this is a problem with Safari. Apparently, it doesn't handle Javascript correctly in all cases. I administer Joomla sites and Safari on a standard machine, let alone an iPad, gives me a lot of grief. So, on any other machine I use Chrome or FireFox. Sadly, this isn't an option on an iPad. We're stuck with Safari - whether we like it or not!

  • Retrieving cookies when logging into java forums through a java application

    Hello --
    I am currently working on a spider application that will have the ability to login to sites of interest and then begin crawling.
    I thought an easy place to start would be to login to java forums. However, I have run into a bit of a snag with all of the cookies....
    The following is the information that I am posting:
    action = "login"
    url = "http://forum.java.sun.com/index.jsp"
    UserId     // my username
    Password // my password
    Submit = "Log in"
    AutoLogin = "1"
    I am doing this using HttpURLConnection that was created using http://developer.java.sun.com/servlet/SessionServlet as the URL. Then I create an output stream etc:
    OutputStream os = huc.getOutputStream();
    os.write(sb.toString().getBytes("US-ASCII")); // where sb is a StringBuffer which contains the above information separated with &'s
    os.close();
    This is when I run into my problem...Next, I try to obtain the session cookies (using the same HttpURLConnection that I posted with) but I am not getting all of the cookies.
    As a test, I set my browser to prompt for cookies and I found that when you submit your login information three cookies are set: JDC, JSessionId, and SessionCredentials. Then two more cookies are set JSessionId again and jiveUserLastVisited -- I think these cookies are actually set while getting the http://forum.java.sun.com/index.jsp page. Anyway the only cookies that I get through my program are JSessionId and jiveUserLastVisited.
    So to remedy this I tried setting followRedirects to false on my HttpURLConnection (before I perform my post) and then I tried to get the Set-Cookie header immediately following my post. What I found was after calling getFieldHeader() my connection has changed -- when I do a getConnection on my HttpURLConnection the connection has changed to the second page (http://forum.java.sun.com/index.jsp) even with redirects set to false.
    I guess my inexperience with web applications has caught up with me. Does anybody have any ideas?
    Thanks,
    Lisa

    Lisa
    Did you get any reply on this ?? I am also writing a similar web crawler and i also ran into similar problems.
    let me know if you found the solution. thanks.
    -P

  • Forum software in java

    Hello everyone,
    First of all i am not sure if i should post this here, sorry if it is the wrong place.
    I have been googling looking for forums software made in java but i could not find anything at all. I was wondering if any of you could tell me a good forum software i could use for a web site (open source if possible...)
    Thanks in advance

    Actually this is a rather nice product. It's the custom features created by (or for) Sun that cause the problems.

  • Logging into forum through a java app

    I am trying to write a program to log into a forum..
    I do have some experience working with java, and I have been able to figure out how to connect to the URL, but I can't figure out how to input the user/pass through the java program.
    <table border="0" cellpadding="0" cellspacing="3" width="500"><tbody><tr>
    <td colspan="2" width="500"><b>Error:</b> You must login to access this forum. 
    Please login below, or <a href="http://*****.com/index.cgi?action=register">register</a>
    for an account.<br><br></td></tr><tr><td width="175">Username:</td><td width="175">
    <input name="username" size="20" tabindex="1" maxlength="18" type="text"></td><td width="150">
    <a href="http://*********.com/index.cgi?action=register">Create New Account</a></td></tr><tr><td width="175">Password:</td>
    <td width="175"><input name="password" size="20" tabindex="2" type="password"></td><td width="150"><a href="http://*****.com/index.cgi?action=forgotpassword">Forgot Your Password?</a></td></tr><tr>
    <td width="175">Stay logged in for:</td><td width="175"><select name="minutes" tabindex="3">
    <option value="15">15 minutes</option><option value="30">30 minutes</option><option value="60">1 hour</option>
    <option value="120">2 hours</option><option value="240">4 hours</option><option value="360" selected="1">6 hours</option>
    <option value="720">12 hours</option><option value="1440">1 day</option><option value="10080">1 week</option><option value="-1">Forever</option></select></td><td width="150"></td></tr><tr><td width="175"></td>
                                <td width="175"><font size="2">
                                  <input name="submit" type="submit" tabindex="4" value=" Login ">
                                </font></td>
                                <td width="150"></td></tr></tbody></table>that's the table for the login.
    any help would be appreciated, thanks!
    -Reid

    I am trying to write a program to log into a forum..
    I do have some experience working with java, and I have been able to figure out how to connect to the URL, but I can't figure out how to input the user/pass through the java program.
    <table border="0" cellpadding="0" cellspacing="3" width="500"><tbody><tr>
    <td colspan="2" width="500"><b>Error:</b> You must login to access this forum. 
    Please login below, or <a href="http://*****.com/index.cgi?action=register">register</a>
    for an account.<br><br></td></tr><tr><td width="175">Username:</td><td width="175">
    <input name="username" size="20" tabindex="1" maxlength="18" type="text"></td><td width="150">
    <a href="http://*********.com/index.cgi?action=register">Create New Account</a></td></tr><tr><td width="175">Password:</td>
    <td width="175"><input name="password" size="20" tabindex="2" type="password"></td><td width="150"><a href="http://*****.com/index.cgi?action=forgotpassword">Forgot Your Password?</a></td></tr><tr>
    <td width="175">Stay logged in for:</td><td width="175"><select name="minutes" tabindex="3">
    <option value="15">15 minutes</option><option value="30">30 minutes</option><option value="60">1 hour</option>
    <option value="120">2 hours</option><option value="240">4 hours</option><option value="360" selected="1">6 hours</option>
    <option value="720">12 hours</option><option value="1440">1 day</option><option value="10080">1 week</option><option value="-1">Forever</option></select></td><td width="150"></td></tr><tr><td width="175"></td>
                                <td width="175"><font size="2">
                                  <input name="submit" type="submit" tabindex="4" value=" Login ">
                                </font></td>
                                <td width="150"></td></tr></tbody></table>that's the table for the login.
    any help would be appreciated, thanks!
    -Reid

  • How to create a forum based on java

    Hi.
    I'm new and maybe that's the wrong place, but I've got an urgent question. I wanna create a forum without php. Is there any open source solution I can use?
    Thanks

    http://www.mvnforum.com/mvnforumweb/index.jsp

  • Error while passing non built in java type as parameter to webservice

    Hi,
    I am using Weblogic8.1 to deploy my webservice. I have designed Dynamic Proxy client to invoke my webservice. While calling webservice, i am passing array of my POJO class as an input parameter to my webservice and getting below error -
    [java] java.lang.reflect.UndeclaredThrowableException
    [java] at $Proxy0.lookup(Unknown Source)
    [java] at cititru.scan.transScan.createGiService(transScan.java:64)
    [java] at cititru.scan.transScan.main(transScan.java:26)
    [java] Caused by: java.rmi.RemoteException: Failed to invoke; nested exception is:
    [java] javax.xml.rpc.JAXRPCException: web service invoke failed: javax.xml.soap.SOAPException: failed to serialize class [Lcititru.api.interdict.gi.ScannedTextData;weblogic.xml.schema.binding.SerializationException: mapping lookup failure. class=class [Lcititru.api.interdict.gi.ScannedTextData; class context=TypedClassContext{schemaType=['java:cititru.api.interdict.gi']:ArrayOfScannedTextData}
    [java] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    [java] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    [java] at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    [java] at weblogic.webservice.core.rpc.StubImpl.throwRemoteException(StubImpl.java:266)
    [java] at weblogic.webservice.core.rpc.StubImpl.invoke(StubImpl.java:251)
    [java] ... 3 more
    In above error message ScannedTextData is my POJO class which i am passing as an array to my webservice.I am using servicegen and clientgen ant task to generate my service. Also i am setting generateTypes=True to generate Serialization class automatically. Please anyone can tell me what's need to be done to resolve the above error.
    I am also pasting code snippet of my Dynamic Proxy client.
    import javax.xml.namespace.QName;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.rpc.encoding.TypeMappingRegistry;
    import javax.xml.rpc.encoding.TypeMapping;
    import java.net.URL;
    import java.util.StringTokenizer;
    import java.util.ArrayList;
    import cititru.api.interdict.gi.*;*
    *import cititru.interdict.gi.*;
    String wsdlURL = "http://localhost:7001/ws_gi_server/GiService?WSDL";
    String namespace = "http://www.bea.com/ws_gi_server";
    String serviceName = "GiService";
    String portName = "GiServicePort";
    ServiceFactory serviceFactory = ServiceFactory.newInstance();
    QName service_Name = new QName(namespace, serviceName);
    Service sampleService = serviceFactory.createService(new URL(wsdlURL), service_Name);
    TypeMappingRegistry tmr = sampleService.getTypeMappingRegistry();
    TypeMapping tm = (TypeMapping)tmr.createTypeMapping();
    tm.register(ScannedTextData.class, service_Name, new ScannedTextDataCodec(), new ScannedTextDataCodec());
    /* Service access */*
    *GiServerInterface gi = (GiServerInterface) sampleService.getPort(new QName(namespace, portName),*
    *GiServerInterface.class);*
    */* Service invocation */
    bluReplyData = gi.lookup("MUMBAI",ruleSet,"EXECUTOR1",std);-----
    Regards,
    Ankit

    Hi,
    I am using Weblogic8.1 to deploy my webservice. I have designed Dynamic Proxy client to invoke my webservice. While calling webservice, i am passing array of my POJO class as an input parameter to my webservice and getting below error -
    [java] java.lang.reflect.UndeclaredThrowableException
    [java] at $Proxy0.lookup(Unknown Source)
    [java] at cititru.scan.transScan.createGiService(transScan.java:64)
    [java] at cititru.scan.transScan.main(transScan.java:26)
    [java] Caused by: java.rmi.RemoteException: Failed to invoke; nested exception is:
    [java] javax.xml.rpc.JAXRPCException: web service invoke failed: javax.xml.soap.SOAPException: failed to serialize class [Lcititru.api.interdict.gi.ScannedTextData;weblogic.xml.schema.binding.SerializationException: mapping lookup failure. class=class [Lcititru.api.interdict.gi.ScannedTextData; class context=TypedClassContext{schemaType=['java:cititru.api.interdict.gi']:ArrayOfScannedTextData}
    [java] at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    [java] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    [java] at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    [java] at weblogic.webservice.core.rpc.StubImpl.throwRemoteException(StubImpl.java:266)
    [java] at weblogic.webservice.core.rpc.StubImpl.invoke(StubImpl.java:251)
    [java] ... 3 more
    In above error message ScannedTextData is my POJO class which i am passing as an array to my webservice.I am using servicegen and clientgen ant task to generate my service. Also i am setting generateTypes=True to generate Serialization class automatically. Please anyone can tell me what's need to be done to resolve the above error.
    I am also pasting code snippet of my Dynamic Proxy client.
    import javax.xml.namespace.QName;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.ServiceFactory;
    import javax.xml.rpc.encoding.TypeMappingRegistry;
    import javax.xml.rpc.encoding.TypeMapping;
    import java.net.URL;
    import java.util.StringTokenizer;
    import java.util.ArrayList;
    import cititru.api.interdict.gi.*;*
    *import cititru.interdict.gi.*;
    String wsdlURL = "http://localhost:7001/ws_gi_server/GiService?WSDL";
    String namespace = "http://www.bea.com/ws_gi_server";
    String serviceName = "GiService";
    String portName = "GiServicePort";
    ServiceFactory serviceFactory = ServiceFactory.newInstance();
    QName service_Name = new QName(namespace, serviceName);
    Service sampleService = serviceFactory.createService(new URL(wsdlURL), service_Name);
    TypeMappingRegistry tmr = sampleService.getTypeMappingRegistry();
    TypeMapping tm = (TypeMapping)tmr.createTypeMapping();
    tm.register(ScannedTextData.class, service_Name, new ScannedTextDataCodec(), new ScannedTextDataCodec());
    /* Service access */*
    *GiServerInterface gi = (GiServerInterface) sampleService.getPort(new QName(namespace, portName),*
    *GiServerInterface.class);*
    */* Service invocation */
    bluReplyData = gi.lookup("MUMBAI",ruleSet,"EXECUTOR1",std);-----
    Regards,
    Ankit

  • Built in java files

    Hello everyone,
    I just installed jdk1.5 on my linux server. However, in the /lib/ directory there are only about 6 .jar files.
    Do i have to unjar these files so i can view the class files, such as the io and things like this?
    Gary.

    Hello everyone,
    I just installed jdk1.5 on my linux server. However,
    in the /lib/ directory there are only about 6 .jar
    files.
    Do i have to unjar these files so i can view the
    class files, such as the io and things like this?
    Gary.You can see what files are in the .jar file by opening with WinZip or equivalent.
    Openning the individual .class files would not do much good as they are byte code and not easily human-readable.
    The .jar files do not need to be unzipped for Java to use them (part of the beauty of .jar files).
    Is this what you were looking for?

  • Where is the built in Java runtime and development environment in my MAC???

    I keep reading that my macintosh (dual G5 with OSX 10.4.10) came with a fully configured and ready-to-use Java runtime and development environment, however I cannot find, nor do I know how to open it. Doe anyone know how to open this up? thanks so much!

    Your JRE should already be configured so that when you double-click a self-executing jar or open a page with an Applet it will run.
    Your compiler (javac) should be available through your sheel in your terminal application.
    If none of this helps you (and it may well not) you may want to consider installing an IDE. Eclipse for example has a Mac OS version, I am sure there are others but I do not develop on Mac so I can't tell you about them.
    http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/20071103/eclipse-java-europa-fall2-macosx-carbon.tar.gz

Maybe you are looking for

  • Does Thunderbolt work with the Mini Displayport to DVI adapter?

    I just ordered a new 13" MacBook Pro with Retina Display to replace my Mid-2010 15" MacBook Pro.  I've been using the Mini Displayport to DVI adapter to extend my screen to an older 20" Cinema Display.  From what I can find online, and I'm here askin

  • How do I sync address book?

    While in my Mail, I noticed that my address book is almost empty. This doesn't make sense as my Address Book application is quite full. I then see a notice to sync it with my desktop Address book. I follow the directions to open System Preferences -

  • Bluetooth problem with hands free device

    I had paired by 9300 with my Vauhall Zafira hands free connection and everything was going well. But all of a sudden my 9300 wont pair up. It conects and then the next second it disables. I have tried a few times and the same thing happens. I have ch

  • Cant find movie from videora

    i just transfered my movie into a mp.4 using videora but i cant find the new file to add to my itunes library. on the one site that shows step by step instructions for videora it says the new file will be located in the " output video to: " folder, c

  • Resizine image for drop zone

    Hi. I have an image I want in a drop zone (Drive-in 2), but no matter how many times I scale it down, it still won't show the whole image on the drive-in screen. In fact, it seems to be showing the exact same portion of the image each time. Could any