Problem creating in some attribute options for class through java API

Hello everyone,
I am successfully creating class and its attributes but i am not able to create attributes with its option like IS REQUIRED, IS INDEXED, IS SETTABLE and READ ONLY.....
public void create_class(String cname,String cdesc,String scname)
try
ClassObjectDefinition cod = new ClassObjectDefinition(csession);
cod.setSuperclassName(scname);
cod.setName(cname);
ClassObject co = (ClassObject)csession.createSchemaObject(cod);
AttributeDefinition ad2 = new AttributeDefinition(csession);
ad2.setAttributeByUpperCaseName("NAME",AttributeValue.newAttributeValue("Divya"));
ad2.setAttributeByUpperCaseName("DATATYPE",AttributeValue.newAttributeValue(Attribute.ATTRIBUTEDATATYPE_STRING));
ad2.setAttributeByUpperCaseName("DATALENGTH",AttributeValue.newAttributeValue(151));
ad2.setAttributeByUpperCaseName("DESCRIPTION",AttributeValue.newAttributeValue("This the attribute number 2"));
//here is some problem,,, Is Required is not been able to set
//ad2.setAttributeByUpperCaseName("REQUIRED",AttributeValue.newAttributeValue(true));
co.addAttribute(ad2);
catch(IfsException e)
e.printStackTrace();
}

Hi Kabilesh,
Could you please let me know the exast soution u had for this?
I even set the SHLIB_PATH in the environment, but still this problem persists.
I am compiling the program and making into a shared library as
cc -c -g -n +z -I$JAVA_HOME/include -I$JAVA_HOME/include/hp-ux -L/opt/java1.4/jre/lib/PA_RISC2.0/server -ljvm Test.c -o Test.o
ld -b Test.o -L/opt/java1.4/jre/lib/PA_RISC2.0/server -ljvm -o Test.slMy java code is looks like this :
void create_Jvm()
    JNIEnv * env;
    JavaVM * jvm;
    //JDK1_1InitArgs vm_args;
    /* Note : In JNI1.2 and Java2 SDK 1.4, the new structure JavaVMInitArgs has been introduced.*/
    JavaVMInitArgs vm_args;
    //JavaVMOption options[1];
    jint res;
    vm_args.nOptions = 0;
    vm_args.ignoreUnrecognized = JNI_TRUE;
    /* IMPORTANT: specify vm_args version # if you use JDK1.1.2 and beyond */
    vm_args.version = JNI_VERSION_1_4;
    //vm_args.version = JNI_VERSION_1_2;
    /*In JNI1.2 and Java2 SDK 1.4 the JNI_GetDefaultJavaVMInitArgs method call is not required.*/
    //JNI_GetDefaultJavaVMInitArgs( & vm_args);
    res = JNI_CreateJavaVM( &jvm, (void**)&env, &vm_args);
    if (res < 0) {
        fprintf(stderr, "Can't create Java VM\n Error is :%ld\n ", res);
        exit(1);
    iJvmInitialized = 1;
} hi
Check the lib path
May be u have not included : at the end of the lib
path that u have added
THis was the mistake that i did
kabilesh

Similar Messages

  • Where can I find the original code for class in Java API

    I am learning Java programming and wanted to see how professionals handel all cases. Can anyone tell me where I can find the original implementation code for classes in Java API? It would be a great help for me.

    the basic source is where you installed java in a file called java.src, its either in the main dir of one of the sub dirs ( mmm ), contains all the source code for all the classes in the api.

  • Example code for each and every class in java API

    hi,
    Is there any place where i can get example code for eacha and every class in java API.
    for eample...if i wanna find sample codes for all the clases in java.lang.*
    please let me know ASAP.
    thanks in advance

    Crossposted here: http://forum.java.sun.com/thread.jsp?thread=570264&forum=54&message=2820774

  • How to create a taxonomy using MDM 5.5 SP05 JAVA API?

    Hi ALL,
    I have a requirement in which i have to create a taxonomy using MDM 5.5 SP05 JAVA API.
    Can anyone tell me how that functionality can be achieved?
    Thanks in Advance.
    Rajat.

    HI, Rajat.
    For exposing hierarchy in WD view you need to use node with recursive children in the context and Tree/TreeNodeType UI elements in view layout.
    For load hierarchy records you have to use RetrieveLimitedHierTreeCommand. You can load whole hierarchy (as I know, SP05 API have a bug - only first 1000 record can be loaded) or load hierarchy nodes on demand (using OnLoadChildren action of TreeNodeType element).
    Refer to this example of loading child records:
    // Context structure:
    // Tree (model node, model class built from com.sap.mdm.data.Record interface)
    //  |-- Children (recursive child node repeating Tree node)
    //  |-- DisplayValue (string value attribute, TreeNodeType's text property bound here)
    //  |-- HasChildren (boolean value attribute, TreeNodeType's hasChildren property bound here)
    // parentElem is element of node Tree or Children for which we must load child records, null for first level of hierarchy
    private void fillNodeWithChildren(IPrivateHierarchySelectView.ITreeElement parentElem) {
         // Determining RecordId of parent record and context node to which child records belong
         RecordId parentRecordId = null;
         if (parentElem != null) parentRecordId = parentElem.modelObject().getId();
         IPrivateHierarchySelectView.ITreeNode parentNode =
              parentElem == null
                   ? wdContext.nodeTree()
                   : parentElem.nodeChildren();
         // Loading children with RetrieveLimitedHierTreeCommand
         try {
              RetrieveLimitedHierTreeCommand retTreeCmd = new RetrieveLimitedHierTreeCommand(...); // use suitable constructor
              if (parentRecordId != null) retTreeCmd.setRootNode(parentRecordId);
              retTreeCmd.setResultDefinition(...); // don't forget set ResultDefinition
              retTreeCmd.execute();
              HierNode subRoot = retTreeCmd.getTree()
              parentNode.invalidate();
              // Processing loaded child records - add elements into parentNode
              if (subRoot == null) return;
              IPrivateHierarchySelectView.ITreeElement childElem;
              HierNode childRecord;
              HierNode[] children = subRoot.getChildren();
              int count = children == null ? 0 : children.length;
              for (int i = 0; i < count; i++) {
                   childRecord = children<i>;
                   childElem = parentNode.createTreeElement(childRecord);
                   childElem.setDisplayValue(childRecord.getDisplayValue());
                   childElem.setHasChildren(!childRecord.isLeaf());
                   parentNode.addElement(childElem);
              if (parentElem != null) parentElem.setHasChildren(count > 0);
         } catch (/* Some MDM Exceptions */) {}
    Don't forget call fillNodeWithChildren(null) in wdDoInit for load first level of hierarchy.

  • Developing Application for third-party Java API (jar) libraries

    I need some of your inputs on architecting a web based solution to invoke Vantive java API using SAP Netweaver Technology. The API provides methods to connect, insert, update, fetch data from Vantive system using java classes. Pl. let me know which would be best way (webdynpro/ j2ee/java) to create & run web based forms to connect, insert and update data in Vantive using these Java APIs.

    I think there is your choice only that based on your experience with web technologies (in case of integration with portal as I understood) but the nominee with the best integration capabilities is Dynpro. Of course you can simply use standard JEE techniques (see the official JSR for official technology and release notes of official restrictions by SAP implementation). Third party integrations are available in both choices: Dynpro or not. In general your choice is better to be with an appropriate estimation, isn't it? Or try to define concretely criteria of such integration.

  • Default values for parameters in Java API

    I have a Crystal report formats with some input parameters set to default values. How do I retrieve them in the Crystal Java API?
    Thanks,
    Chandra Prakash

    I normally do not look at this forum as about all I know about Java is that it comes out of the coffee machine in the kitchen...
    But see if the following KBA will help, even though it is written specifically for .NET:
    1202315 - How do I get a parameters default value's description via the NET SDK?
    - Ludek
    SCN Moderator

  • Problem with opening various text files in notepad through java

    Hi friends,
    I need to open any .txt file in notepad by running the code in Java.I could open the notepad through java but not a perticular file.I dont even want to hard code my program that only one perticular file will open through it.I want it generalised...if anyone could help me,it would be really nice...
    thanks
    Vishal.

    If your program opens notepad I'll delete it because I set UltraEdit as my default editor. So if you already must use system-specific code, how about grabbing a Windows manual to find out how to use the editor registered for these files? (Hint "start").

  • Use of DISTINCT for CLOB through Java(Spring framework)

    Hello everyBody,
    How to use DISTINCT for a select query containing a column of type CLOB. I use to_char(column name) for that column name. It works fine on oracle command prompt , but not working thr my JAVA API(jdk 1.3) . It throws an exception saying InvalidFormat. I am using spring framework in Java. Is anyBody have solution to this? I am using oracle 9i. Please reply soon. Thankx in advance.

    I do realise the fact that you are using Spring probably indicates that you lack heavy duty SQL skills. But you really should try to learn to tune your queries properly.
    Cheers, APC

  • CS3: Having problems creating an Action to "Save for Web"

    Hello All,
      I'm trying to create an Action to convert my psd. files to JPEG's suitable for the web.  I'm using a Mac Pro running CS3.  My workspace is Adobe RGB (1998), all files begin as Canon CR2 RAW, are edited at 16 bits, and then saved as psd.  I created an Action the following way from an open psd. image in Photoshop:
    1) Windows>Actions
    2) Create New Action
    3) Re-named "Save For Web" then clicked Record
    4) Image>Duplicate>OK
    5) Edit>Convert to Profile
    6) Changed Destination Space to sRGB IEC61966-2.1>OK
    7) File>Save As
    8) Format> No JPEG option ??????????  What?
      Everything seemed fine until I reached the Format stage.  I had many choices, but JPEG was not one of them.  Can someone please tell me what I'm doing wrong?  Thank you!
    Mike

    Ramón G Castañeda wrote:
    MJCarnegie wrote:
    It never occured to me that I should convert back to 8-bit before saving, and truthfully I had no idea how to do that anyhow.  I know, what a Newbie, huh?
    Go to the Image menu in Photoshop:
    Image > Mode > 8 bits.   Pretty straight forward and fast.
    MJCarnegie wrote:
      …strange, in Matt's article…
    I'll pass on that.  Generally speaking, I'm not a fan of the Scott Kelby crowd, so I don't follow them regularly.
      Thanks again Ramon, I can't believe I've overlooked the Image>Mode>8 bit path for this long. 
    Cheers,
    Mike

  • Problems creating session ejbs in a startup class

    public class startupTest implements T3StartupDef
         private T3ServicesDef services;
         public startupTest()
         public String startup(String name, Hashtable args) throws Exception
         try{
              Context initialContext = getContext("t3://localhost:7001");
         DruckAuftragHome dah =     (DruckAuftragHome)initialContext.lookup(
    "DruckAuftrag" );
              javax.ejb.EJBObject o = dah.create();
              DruckAuftrag da = (DruckAuftrag) o;
              System.out.println("EEEEEEEEEEEEEEEEEEEEEEEE"+da.makePDF());
              catch(Exception e)
                   e.printStackTrace();
              return "";
    private static Context getContext(String wlUrl)
    throws javax.naming.NamingException
    Hashtable env = new Hashtable();
    env.put(Context.PROVIDER_URL, wlUrl);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    weblogic.jndi.WLInitialContextFactory.class.getName());
    Context ctx = new InitialContext(env);
    return ctx;
         public void setServices(T3ServicesDef services)
              this.services = services;
    Calling the Bean Method works form Servlets and form standalone Clients, but at
    startup
    java.lang.NullPointerException
    at weblogic.utils.io.UnsyncByteArrayInputStream.<init>(UnsyncByteArrayInputStream.java:57)
    at weblogic.rmi.internal.ServerRequest.getInputStream(ServerRequest.java:91)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:87)
    at com.bmw.tais.appserver.ipa.produkt.druckauftrag.DruckAuftragBeanHomeImpl_WLStub.create(DruckAuftragBeanHomeIm
    pl_WLStub.java:151)
    at com.bmw.tais.helper.startupTest.startup(C:/ipa_wa/IPA/com/bmw/tais/helper/startupTest.java:49)
    at weblogic.t3.srvr.StartupThread.runStartup(StartupThread.java:182)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:146)
    at weblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java:62)
    if i call the bean in a tread over and over again the first exception is a nullpointer
    (shown above) and then i get a ClassCastException calling
    the create Methode on the DruckAuftragBeanHomeImpl_WLStub.create(DruckAuftragBeanHomeIm
    pl_WLStub.java:151)
    any ideas?
    thanks
    regars robert

    Hi Robert,
    You need to let the server to warm up before
    starting using it's services. Check weblogic doc's
    for samples.
    Regards,
    Slava Imeshev
    "robert neumaier" <[email protected]> wrote in message
    news:[email protected]...
    >
    public class startupTest implements T3StartupDef
    private T3ServicesDef services;
    public startupTest()
    public String startup(String name, Hashtable args) throws Exception
    try{
    Context initialContext = getContext("t3://localhost:7001");
    DruckAuftragHome dah =(DruckAuftragHome)initialContext.lookup(
    "DruckAuftrag" );
    javax.ejb.EJBObject o = dah.create();
    DruckAuftrag da = (DruckAuftrag) o;
    System.out.println("EEEEEEEEEEEEEEEEEEEEEEEE"+da.makePDF());
    catch(Exception e)
    e.printStackTrace();
    return "";
    private static Context getContext(String wlUrl)
    throws javax.naming.NamingException
    Hashtable env = new Hashtable();
    env.put(Context.PROVIDER_URL, wlUrl);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    weblogic.jndi.WLInitialContextFactory.class.getName());
    Context ctx = new InitialContext(env);
    return ctx;
    public void setServices(T3ServicesDef services)
    this.services = services;
    Calling the Bean Method works form Servlets and form standalone Clients,but at
    startup
    java.lang.NullPointerException
    atweblogic.utils.io.UnsyncByteArrayInputStream.<init>(UnsyncByteArrayInputStre
    am.java:57)
    atweblogic.rmi.internal.ServerRequest.getInputStream(ServerRequest.java:91)
    atweblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:87)
    atcom.bmw.tais.appserver.ipa.produkt.druckauftrag.DruckAuftragBeanHomeImpl_WLS
    tub.create(DruckAuftragBeanHomeIm
    pl_WLStub.java:151)
    atcom.bmw.tais.helper.startupTest.startup(C:/ipa_wa/IPA/com/bmw/tais/helper/st
    artupTest.java:49)
    atweblogic.t3.srvr.StartupThread.runStartup(StartupThread.java:182)
    at weblogic.t3.srvr.StartupThread.doWork(StartupThread.java:146)
    atweblogic.t3.srvr.PropertyExecuteThread.run(PropertyExecuteThread.java:62)
    >
    if i call the bean in a tread over and over again the first exception is anullpointer
    (shown above) and then i get a ClassCastException calling
    the create Methode on theDruckAuftragBeanHomeImpl_WLStub.create(DruckAuftragBeanHomeIm
    pl_WLStub.java:151)
    any ideas?
    thanks
    regars robert

  • Javadoc bug or missing an option for class extending AbstractTableModel

    Hi Everybody,
    I am reviewing my javadoc before submission of my SCJD assignment and I noticed
    for my JTable model class HotelRoomTableModel that extends AbstractTableModel
    for all the overwritten methods like getValueAt(), getColumnCount(), getRowCount()
    that implement the TableModel interface where I am using javadoc comments of the form:
    * {@inheritDoc}
    @Override the HTML generated javadoc I see in my browser doesn't show anything
    for these methods other than the name and the signature of the method.
    Is that normal? Or is it a bug? Or perhaps did I miss anything?
    I would hope that it would show something like:
    "Specified by: methodName in interface InterfaceName"
    or
    "Overrides: methodMame in class ClassName".
    My environment:
    [auyantepui]</home/morillo/src/java/scjd/submission>% java -version
    java version "1.6.0_18"
    Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    Java HotSpot(TM) Server VM (build 16.0-b13, mixed mode)
    [auyantepui]</home/morillo/src/java/scjd/submission>% cat /etc/release
                           Solaris 10 5/09 s10s_u7wos_08 SPARC
               Copyright 2009 Sun Microsystems, Inc.  All Rights Reserved.
                            Use is subject to license terms.
                                 Assembled 30 March 2009
    [auyantepui]</home/morillo/src/java/scjd/submission>% uname -a
    SunOS auyantepui 5.10 Generic_139555-08 sun4u sparc SUNW,Sun-Blade-1000
    [auyantepui]</home/morillo/src/java/scjd/submission>%Any ideas?
    Thanks,
    Carlos.

    He quoted the Javadoc which says you have to have the source code available for the Javadoc you are trying to inherit. All I am doing here is restating that, which really is pointless and valueless.It needs the source so that it can copy the documentation you want to copy, which I would have thought was obvious in the first place >
    ejp, there is no need to be such an arrogant jerk responding. It is not my fault if you are having a bad day.
    I wrote above:
    TableModel interface is in javax.swing.table. It is not part of my source code.I am only asking for help and I thought that was the purpose of this forum.
    I am not here to get a smart ass response with such an arrogance and attitude.

  • Drag and drop option for hierarchy through Web Template

    Hi All,
    I have 2 hierarchies in one report. For example Product Hierarchy and Customer hierarchy. I would like to have an option in query where I can select the node from each hierarchy and the report is displayed only for the selected node/nodes. I am using Web Template. I used "Hierarchy filter" web item and was able to achieve this. But I would like to have a drag and drop option.
    I mean when I use Hierarchy filter web item, I have to select the particular node in the hierarchy. and then the report (Web Item - Table) is displayed based on the selection. But I would like to drag the node from the hierarchy and drop it to the report (Web Item - Table) and the report is displayed for the selected hierarchy node.
    Is this possible? How? Do I have to write any Java code or we can achieve this with BI Standard functionality.
    Regards.
    Parin Gandhi.

    This is not possible using Standard BI web functionality.
    If you are an expert with JavaScript and BI Web APIs you can probably write JS code to do this.

  • Problem with converting html to pdf using LiveCycle ES Java API

    I am using this code to convert html to pdf.
    * 1. adobe-generatepdf-client.jar
    * 2. adobe-livecycle-client.jar
    * 3. adobe-usermanager-client.jar
    * 4. adobe-utilities.jar
    * 5. wlclient.jar
    import java.io.File;
    import java.util.Properties;
    import com.adobe.idp.Document;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
    import com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient;
    import com.adobe.livecycle.generatepdf.client.HtmlToPdfResult;
    public class ConvertHTML {
       public static void main(String[] args)
            try{
            //Set connection properties required to invoke LiveCycle ES                             
            Properties connectionProps = new Properties();
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "t3://localhost:7001");
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,Service ClientFactoryProperties.DSC_EJB_PROTOCOL);       
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "WebLogic");
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
            connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
            //Create a ServiceClientFactory instance
            ServiceClientFactory factory = ServiceClientFactory.createInstance(connectionProps);
              //Create a GeneratePdfServiceClient object
            GeneratePdfServiceClient pdfGenClient = new GeneratePdfServiceClient(factory);
           //Get an HTML document to convert to a PDF document a
            String inputFileName = "http://www.adobe.com";
            //String inputFileName = "C:\\Documents and Settings\\venkat\\Desktop\\Adobe.htm";
            String securitySettings = "No Security";
            String fileTypeSettings = "Standard";
    System.out.println("one");
            //Convert HTML content to a PDF document
            HtmlToPdfResult result = pdfGenClient.htmlToPDF2(inputFileName, fileTypeSettings, securitySettings, null, null);
    System.out.println("two");         
            //Get the newly created document
            Document createdDocument = result.getCreatedDocument();
            //Save the PDF document as a PDF file
            createdDocument.copyToFile(new File("C:\\test.pdf"));
        catch (Exception e) {
            System.out.println("Error OCCURRED: " + e.getMessage());
            e.printStackTrace();
    I can able to compile this class but while running i am getting error like below.
    Error OCCURRED: Internal error.
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal error.
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.doSend(EjbMessageDispatcher.java
    :160)
            at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat
    cher.java:57)
            at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)
            at com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient.htmlToPDF2(GeneratePdfSer
    viceClient.java:666)
            at ConvertHTML.main(ConvertHTML.java:84)
    Caused by: java.rmi.RemoteException: Remote EJBObject lookup failed for 'ejb/Invocation'; nested exc
    eption is:
            org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 203  completed: No
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.initialise(EjbMessageDispatcher.
    java:101)
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.doSend(EjbMessageDispatcher.java
    :130)
            ... 4 more
    Caused by: org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 203  completed: No
            at com.sun.corba.se.impl.logging.ORBUtilSystemException.writeErrorSend(Unknown Source)
            at com.sun.corba.se.impl.logging.ORBUtilSystemException.writeErrorSend(Unknown Source)
            at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.writeLock(Unknown Source)
            at com.sun.corba.se.impl.encoding.BufferManagerWriteStream.sendFragment(Unknown Source)
            at com.sun.corba.se.impl.encoding.BufferManagerWriteStream.sendMessage(Unknown Source)
            at com.sun.corba.se.impl.encoding.CDROutputObject.finishSendingMessage(Unknown Source)
            at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.finishSendingRequest(Unknown Sour
    ce)
            at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete1(Unkno
    wn Source)
            at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete(Unknow
    n Source)
            at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.invoke(Unknown Source)
            at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.is_a(Unknown Source)
            at org.omg.CORBA.portable.ObjectImpl._is_a(Unknown Source)
            at weblogic.corba.j2ee.naming.Utils.narrowContext(Utils.java:126)
            at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialContextFact
    oryImpl.java:94)
            at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialContextFact
    oryImpl.java:31)
            at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:41)
            at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
            at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
            at javax.naming.InitialContext.init(Unknown Source)
            at javax.naming.InitialContext.<init>(Unknown Source)
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.initJndiContext(EjbMessageDispat
    cher.java:213)
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.getJndiContext(EjbMessageDispatc
    her.java:226)
            at com.adobe.idp.dsc.provider.impl.ejb.EjbMessageDispatcher.initialise(EjbMessageDispatcher.
    java:87)
            ... 5 more
    can u plz give me some way to do the convertion.

    Yes Sir.....Thanks for ur suggestion.....
    But i didn't find exact solution..well..yes i found some but not exactly there were not in the way i required...I jus need to convert HTML to PDF using iText API for java.....I already used some classes in that like HTMLParser.....etc..
    So Any thing else...Any one...Sure can help me in this................

  • How to run a .DLL(created in VB & VC++) in client machine through Java?

    Hi Guys,
    When i run the .DLL in the server machine through servlets, it opens a
    login screen created by .DLL.But I want to run the same .DLL (which inturn
    opens login screen) in the client machine in the distributed architecture.Let
    me know if u guys are having any suggestions at the earliest.
    Thanks in advance ,
    Venkat.

    Catch up some information on JNI, read the tutorial on
    http://java.sun.com/docs/books/tutorial/native1.1/concepts/index.html
    Very straight forward, you could make a decision and be on your way to achieve it within about an hour.
    Cheers and have a great year.

  • Accessing events for a Resource through Java API

    I need to display the calendar events for a Resource through a portlet preferably using Java WebServices API. I am trying to figure out if there is a way to authenticate as a Resource, similar to user authentication so that I can display events associated with that resource.
    Thanks,
    Niraj Dhondi

    login as sysop (connectAsSysop) and switch identity to the desired resource (setIdentity) .
    you may need to add the line
    allowsysoplogon_capi = TRUE
    to the [ENG] section in unison.ini .
    g.

Maybe you are looking for

  • Query about loops in an APEX calendar...

    Hi everyone,</br></br> I would like to know how to make a loop with the following settings:</br></br> 1. I have a calendar on Application Express 3.0.1.00.08.</br> 2. I do create some events on it, and got a start and end date.</br> 3. On the calenda

  • External monitor stopped working after 10.6.7 update

    I have a MacBook Pro, model identifier MacBookPro6,2 with an NVIDIA GeForce GT 330M. When I updated last night from 10.6.6 to 10.6.7 I stopped being able to use my Dell S2409W external monitor. I have tried resetting the pram, resetting the SMC, boot

  • Does the iPad support flash player yet?

    Does the iPad support flash player yet?

  • Remove trunking from a port in catos?

    All, Simple question: I want to remove all trunking from a port on a switch running catos. Clear Trunk seemed the obvious option, though it seems to just remove the vlans that are allowed to pass over the trunk port. Set Trunk mod/port Off doesn't do

  • Changing Field Labels texts: What happens after Upgrade?

    Hi All, my client would like to change some field label text of domains. The question I have is, what will happen after change of release? Will the texts be overwritten? And all have to be maintained again? Will I know which ones have been overwritte