Connector for MQ in CE Java EE

Hi,
   Im attempting to create a resource adapter for connection to MQ from CE 7.1
In NWDS I have created a SAP Connector project and followed what instructions I can find importing libs from file system including;
1. com.ibm.mq.jar
3. com.ibm.mqjms.jar
The issue I have is that I cant seem to find a definative resource for how to set up the connector project so I am able to reference by JNDI in the calling code.
The ra.xml would seem to be the deployment descriptor I need but how to get the correct information referencing the mq libs eludes me. (connection factory/impl)
The help doco seems to glaze over the actual values (generic not specific)  in the config in the ra.xml and connector-j2ee-engine.xml.
overview of data flow
Servlet -> resource adapter -> MQ JMS queue
any help would be greatly appreciated ..
It appears the RA.XML is the key to get the MQ RAR libs deployed, if anyone has a link to a valid MQ ra.xml that would be a step in the right direction.
Edited by: Richard McArthur on May 28, 2010 7:55 AM

Hello Richard,
Not shure if that's still a topic for you after solving it via Web Service Wrapper.
There's a more "lean" approach for connecting an external JMS (here alike MQ) Provider.
You can define a Resource Reference in NWA to your external Provider and use it from your code
with a local JNDI Reference, which saves you from the need to have any connection details in your code.
Haven't done it with CE yet, but with older Java Web AS Versions (7.0/7.1) and MQ Series. It should be quite the same.
See here:
http://help.sap.com/saphelp_nwce72/helpdata/en/45/49c5f692cf4d35e10000000a114a6b/frameset.htm
and
http://help.sap.com/saphelp_nwce72/helpdata/en/45/49c5f692cf4d35e10000000a114a6b/frameset.htm
With best regards
                Sebastian

Similar Messages

  • OIM connector for OpenLdap?

    Hello,
    Connectors for OID and Sun Java System Directory are included with the 9.0.4.1 collection -- will either of these operate with OpenLdap (even if it's a subset of functionality)? Better approach?
    Thank you!
    Scott

    The LDAP lib that is used by the connector will work fine with OpenLDAP or any other LDAPv3 compliant LDAP server. I did some provisioning to OpenLDAP using the same lib a couple of years ago.
    You will probably run into some minor issues with how the higher layers of the connector interacts with the LDAP server so I would recommend getting a good packet analyzer (for example Wireshark). This will make it possible for you to inspect the LDAP commands that the connector is generating as they are sent to the LDAP server.
    Best regards
    /M

  • Sun Java System Connector for Microsoft Outlook 7.3 Update 1

    Good Day,
    Could somebody please advise me where I can download:
    Sun Java System Connector for Microsoft Outlook 7.3 Update 1
    Thanks,
    Gilbert

    Gilbert_Gerber wrote:
    I thought it is suppose to be part of Sun Java Communications Suite 6 update1?You can download it from the following location:
    http://wikis.sun.com/display/CommSuite6U1/Get+the+Software
    Select the Download Link => Platform: Windows
    Regards,
    Shane.

  • Developing 3rd party UWL Connectors for People soft system or other Java sy

    Hi Everyone
    We have one requirement that is u201CDeveloping 3rd party UWL Connectors for People soft system or other Java systemu201D and get the workflows from those system and display in portal though UWL.
    We used u201CUWL Custom Connector APIu201D and written all the required methods.
    Could any one help us u201CWhere can we specify the 3rd party system details?u201D
    If possible please send some sample coding for it.
    Thanks in advance
    Sat

    Hi Satya!
    Like the default SAP backend UWL connectory your 3rd-party connector should make use of a PCD System Object. This system is a mere java component with nothing more than a portalapp.xml defining all the system properties.
    Create a system in the portal system landscape based on the System PAR you depoyed.
    For every UWL connector you create in portal you define a system alias. This alias has to match the one of your new system object.
    And now for the sad part: I didn't find any clue yet about how to access the system from a custom UWL connector. The system alias is available in the method getItems(), but no hint whatsoever how to get the system object to the alias.
    I'm still investigating this, since i'm exactly at this point.
    Regards,
      Juergen

  • SCOM Connector for java

    Hi,
    I am trying to create a connector for Microsoft SCOM(2007) . The wsdl is accessible at server and able to generate stub using JWSDP. But When i try to connect using the generated stub, I am getting an error,
    Error..The security context token is expired or is not valid. The message was not processed.
    javax.xml.ws.soap.SOAPFaultException: The security context token is expired or is not valid. The message was not processed.
    at com.sun.xml.ws.encoding.soap.ClientEncoderDecoder.toMessageInfo(ClientEncoderDecoder.java:80)
    at com.sun.xml.ws.encoding.soap.client.SOAPXMLDecoder.toMessageInfo(SOAPXMLDecoder.java:200)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.receive(SOAPMessageDispatcher.java:549)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.doSend(SOAPMessageDispatcher.java:288)
    at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.send(SOAPMessageDispatcher.java:153)
    at com.sun.xml.ws.encoding.soap.internal.DelegateBase.send(DelegateBase.java:85)
    at com.sun.xml.ws.client.EndpointIFInvocationHandler.implementSEIMethod(EndpointIFInvocationHandler.java:176)
    at com.sun.xml.ws.client.EndpointIFInvocationHandler.invoke(EndpointIFInvocationHandler.java:105)
    at $Proxy27.setup(Unknown Source)
    at Test.OmcfProxy.main(OmcfProxy.java:238)below is the code part:
    ConnectorFrameworkDataAccess connectorFrameworkDataAccess = new ConnectorFrameworkDataAccess(new URL("http://a3a-mspoctst1:51905/ConnectorFramework?wsdl"),new QName("http://tempuri.org/","ConnectorFrameworkDataAccess"));
    IConnectorFramework port = (IConnectorFramework)connectorFrameworkDataAccess.getPort(IConnectorFramework.class);
    connectorInfo.setName(objectFactory.createConnectorInfoName("Test OMCF"));
    String connectionResult = port.setup(ObjectFactory.createConnectorInfo(connectorInfo));Thanks for any help,
    Thej

    I've made it!
    Here is the code (if it can help someone else...):
    // Esegue la funzione di callback
    try {                    
         // Creazione della destinazione
         JCoDestination dest = JCoDestinationManager.getDestination("MY_DESTINATION");
         // Recupero della RFC
         JCoFunction rfc = dest.getRepository().getFunction("MY_RFC_FUNCTION");
         // Impostazione parametri di input
         rfc.getImportParameterList().setValue("PROTNR", id);
         rfc.getImportParameterList().setValue("STATO", stato);
         rfc.getImportParameterList().setValue("GRUPPO", gruppo);
         // Esecuzione della RFC
         rfc.execute(dest);
    catch (Throwable e) {
         isBackendCallSuccessful = false;
    DEPENDENCIES: tc/bl/jco/api
    Edited by: pietro.m on Apr 5, 2011 12:27 PM

  • Error while deploying MDM Java Connector for EP

    Hi,
    i am a newbie to MDM.i am trying to develop a portal component with the blog "Using MDM5.5 Java Connector with SAP Enterprise Portal 6.0" as reference.
    i created an MDM system in portal and the connection tests passed.
    But when i deploy the code i get the following exception-
    java.lang.NullPointerException
         at com.sap.mdm.connector.connection.MdmConnectionFactory.getConnectionEx(MdmConnectionFactory.java:170)
         at com.sap.portal.ivs.internalconnector.ConnectionProvider.getConnection(ConnectionProvider.java:304)
         at com.sap.portal.ivs.internalconnector.ConnectionProvider.getConnection(ConnectionProvider.java:258)
         at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:478)
         at com.sapportals.portal.ivs.cg.ConnectorService.getConnection(ConnectorService.java:85)
         at com.cts.mdm.MDMtestcomp.doContent(MDMtestcomp.java:36)(this points to the line <b>connection = cgService.getConnection("MDM_SYSTEM_ALIAS", prop);</b>)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    This is my code-
    IConnectorGatewayService cgService = (IConnectorGatewayService)
                   PortalRuntime.getRuntimeResources().getService(IConnectorService.KEY);
              ConnectionProperties prop =
              new ConnectionProperties(request.getLocale(), request.getUser());
                   IConnection connection = null;
                   connection = cgService.getConnection("MDM_SYSTEM_ALIAS", prop);
         INative nativeInterface = connection.retrieveNative();
                        CatalogData catalog = new CatalogData();
                             catalog = (CatalogData)
                   nativeInterface.getNative(CatalogData.class.getName());
                        ResultSetDefinition rsd = new ResultSetDefinition("Customers");
              rsd.AddField("Name");
              Search search = new Search("Customers");
              A2iResultSet rs = null;
                             rs = catalog.GetResultSet(search,rsd,"Name",true,0);
    response.write(rs.GetFields().toString());
    Have i missed anything?
    Should i deploy any .jar file? (i've already deployed MDM4J.jar) and referenced it in portalapp!
    Thanks in advance
    SwarnaDeepika

    Hello Swarna:
    I believe than rather than deploying the MDM4J.jar, you should deploy this components:
    com.sap.mdm.tech.mdm4j.sda
    com.sap.mdm.tech.connector.sda
    BPMDMTECHN00_0.sca
    BPMDMAPPLI00_0.sca
    Once you deploy those, you should have no problems. Another solution would be to take your MDM4J.jar and wrap it into an SDA, then deploy, but that would be pretty much the same.
    Those components are included on your MDM CD. Please ensure you use the same Version/support package/hotfix all over your landscape.
    I hope that helps
    Alejandro

  • Error while adding a connector for SSL..help!!!

    i'm getting this error when i added a connector for SSL and restarted tomcat
    my connector tag is
    <Connector keystorePass="kalima" scheme="https" port="8443" sslProtocol="TLS" redirectPort="-1" enableLookups="true" keystoreFile="Mykeystore" protocol="TLS" keystore="C:\Documents and Settings\santhoshyma\Mykeystore" clientauth="false" algorithm="SunX509" keypass="changeit" secure="true" keytype="JKS">
          <Factory className="org.apache.coyote.tomcat5.CoyoteServerSocketFactory" keystorePass="kalima" keystoreFile="C:\SSLTest\Mykeystore"/>
        </Connector>
    LifecycleException:  Protocol handler instantiation failed: java.lang.NullPointe
    rException
            at org.apache.coyote.tomcat5.CoyoteConnector.initialize(CoyoteConnector.
    java:1368)
            at org.apache.catalina.core.StandardService.initialize(StandardService.j
    ava:609)
            at org.apache.catalina.core.StandardServer.initialize(StandardServer.jav
    a:2384)
            at org.apache.catalina.startup.Catalina.load(Catalina.java:507)
            at org.apache.catalina.startup.Catalina.load(Catalina.java:528)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:250)
            at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:424)

    The question is answered in CRM 7.0 forum:
    Getting error while adding a custom field (with input help) through AET

  • Error while creating the Generic Connector for flatfile

    Hi All,
    I was trying to create the Generic connector for the flat file reconciliation. But i was throwed into errors. I'm using 11.1.1.3 OIM and as well as SOA also. I have been following the OIM 9 document to create the GENERIC connector.
    i'm copying the error i got
    <Mar 14, 2012 3:48:12 PM IST> <Warning> <XELLERATE.SERVER> <BEA-000000> <readme.txt is not a valid connector resource file.>
    <Mar 14, 2012 3:48:12 PM IST> <Warning> <XELLERATE.SERVER> <BEA-000000> <readme.txt is not a valid connector resource file.>
    <Mar 14, 2012 3:48:12 PM IST> <Error> <XELLERATE.WEBAPP> <BEA-000000> <Class/Method: CreateConnectorAction/imageScreen encounter some problems: >
    java.lang.NullPointerException
    at oracle.iam.platform.utils.OIMMessageResourcesUtil.getConnectorResourcesFromFile(OIMMessageResourcesUtil.java:964)
    at oracle.iam.platform.utils.OIMMessageResourcesUtil.getConnectorResourceBundle(OIMMessageResourcesUtil.java:778)
    at oracle.iam.platform.utils.OIMMessageResourcesUtil.getConnectorResources(OIMMessageResourcesUtil.java:764)
    at com.thortech.xl.webclient.util.tcMessageResourcesUtil.getConnectorResources(tcMessageResourcesUtil.java:215)
    at com.thortech.xl.webclient.util.tcMessageResourcesUtil.getMsgFromConnectorRes(tcMessageResourcesUtil.java:238)
    at com.thortech.xl.webclient.util.tcMessageResourcesUtil.getLocalizedText(tcMessageResourcesUtil.java:66)
    at com.thortech.xl.webclient.util.UIFacade.getUserDefLocalizedLabels(UIFacade.java:3024)
    at com.thortech.xl.webclient.actions.CreateConnectorAction.imageScreen(CreateConnectorAction.java:1250)
    at com.thortech.xl.webclient.actions.CreateConnectorAction.goNext(CreateConnectorAction.java:521)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:269)
    at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(tcLookupDispatchAction.java:133)
    at com.thortech.xl.webclient.actions.tcActionBase.execute(tcActionBase.java:894)
    at com.thortech.xl.webclient.actions.tcAction.execute(tcAction.java:213)
    at com.thortech.xl.webclient.actions.CreateConnectorAction.execute(CreateConnectorAction.java:135)
    at org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
    at org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
    at org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
    at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
    at org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:305)
    at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
    at org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1913)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:462)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.security.am.agent.wls.filters.OAMServletAuthenticationFilter.doFilter(OAMServletAuthenticationFilter.java:260)
    at oracle.security.am.agent.wls.filters.OAMValidationSystemFilter.doFilter(OAMValidationSystemFilter.java:133)
    at oracle.security.wls.oamagent.OAMAgentWrapperFilter.doFilter(OAMAgentWrapperFilter.java:121)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at com.thortech.xl.webclient.security.XSSFilter.doFilter(XSSFilter.java:103)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at com.thortech.xl.webclient.security.CSRFFilter.doFilter(CSRFFilter.java:61)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:115)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:100)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    i'm just using a flat file which contents are normal.
    #GTC Trusted Source
    login,firstName,lastName,eMail,organization
    RDUDE,Robert,Dude,[email protected],Xellerate Users
    Can somebody help where i have done wrong for this. All my deployment is in oracle linux 4.5
    Thanks,
    Venkatesh

    Follow the doc for 11g, guide you might be missing something:
    http://docs.oracle.com/cd/E17904_01/doc.1111/e14309.pdf
    Highlevel configuration steps (not all and exact) are:
    -> Give it Name
    -> select Reconciliation
    -> Select Transport Provider and format provides
    -> select Trusted Source Reconciliation
    ->provide flat file details
    -> Source reconciliation staging and mapping
    ->finish
    regards,
    GP

  • Help needed with connectors for Netbeans and Forte

    Im using Forte for Java
    my biggest obstacle is connecting sub j-frames to the main j-frame
    i have created a main J-frame and sub j-frames in one package
    in the Main J-frame there are buttons that you click to go to the next frame the same way "a-href" in HTML works in the same window and back
    what my problem is how to declare the connectors for each button to go to the sub-frame
    what code generators are required and the process and how to lable each sub-frame to be called
    my project is a finance program
    i.e
    Main Frame
    Menu:- ( TVM) ----------> button
    (simple interest)-------> button
    etc
    when you click the (TVM) button
    it should open the TVM frame (subframe in the same window)
    this is my problem your help please this is a project which i have a deadline to meet ive done research through out but couldn't come across any useful or relevent material
    this is a lot easier with pascal but Forte is a compulsory and java
    if you want the screenshots ill post it thru mail just drop your adress and ill forward it
    thank you

    matt010385 wrote:
    Thanks
    I have already tried all of the things that site suggests, there is nothing wrong with the servers, or the service, I have tried all the work arounds that they suggest, but I still cannot get it to work.
    Having a quick read i see from a link there that you might need to open ports(port forwarding).
    Are you using a HH3, if so, I believe that it does have trouble with port forwarding, you can try a search here.
    I am not into games as such, so will have to leave it for others to possibly help with some info.
    toekneem
    http://www.no2nuisancecalls.net
    (EASBF)

  • Can we use JDK in ERP Connector for tranferring data between two DBs?

    HI ALL,
    Iam using ERP connector for transferring the data between Proectserver 2003 and R/3 system.
    In Erp connector Previously they are using SDK in .net
    My assumption is Can We use the jdk for this.
    Thanks in advance.
    Regards
    BHI
    Message was edited by: BHI BHI

    hello bhi,
    you want a connector for R/3 that runs in java?
    if it is, you case use SAP JCo. I don't have any
    idea however, if this connector could connect
    ProjectServer and R/3.
    regards
    jo

  • Is the OPA connector for Siebel OS independent?

    Are there different versions of OPA connector for Siebel depending on the Operating System? Or is it OS independent?
    In the installation guide it is mentioned that the system requirements are checked with the CRM base only.
    In e-delivery the connector for Siebel is present in the Windows section only.

    1009094 wrote:
    Are there different versions of OPA connector for Siebel depending on the Operating System? Or is it OS independent?
    In the installation guide it is mentioned that the system requirements are checked with the CRM base only.
    In e-delivery the connector for Siebel is present in the Windows section only.The OPA Connector for Siebel is Operating System independent. It uses Java or .NET for the the OPA runtime, and the Siebel part of the connector just runs on the standard Siebel server.
    * To install the OPA Connector for Siebel you will need to run Siebel Tools and Siebel Web Client from a Windows machine (32 or 64)
    * To author interviews you need to run Oracle Policy Modeling on a Windows machine (32 or 64).
    Cheers
    Frank

  • Web Services Connector for JMX available

    We are glad to announce that the Reference Implementation of our Web-Services Connector for JMX Agents, being defined by JSR 262, is available in Early Access on http://ws-jmx-connector.dev.java.net/. This major milestone is aligned with the second Early Draft Review of the Specification in the Java Community Process.
    The WS-Connector for JMX is based on the WS-Management protocol, defined by the DMTF. Its greatest benefit is to provide interoperability between a variety of client applications compliant with this standard, including those not based on the Java platform, and any JMX-based instrumentation.
    This week, at JavaOne, we will demonstrate examples of this interoperability on stage during the technical session "TS 2656 - JMX Technology: Who's Doing What". We will show in particular how Windows Vista's management tools can use the JVM telemetry instrumentation. Join Eamonn McManus and Jean-Francois Denise, or watch their blogs, for more details on this.
    We encourage you to use and provide feedback on the WS-Connector RI early access, which is fully functional and, we believe, already pretty stable.
    Note that our implementation of the WS-Management protocol is based on the Wiseman open source project, which lives at http://wiseman.dev.java.net/.
    The JMX Team.

    We are glad to announce that the Reference Implementation of our Web-Services Connector for JMX Agents, being defined by JSR 262, is available in Early Access on http://ws-jmx-connector.dev.java.net/. This major milestone is aligned with the second Early Draft Review of the Specification in the Java Community Process.
    The WS-Connector for JMX is based on the WS-Management protocol, defined by the DMTF. Its greatest benefit is to provide interoperability between a variety of client applications compliant with this standard, including those not based on the Java platform, and any JMX-based instrumentation.
    This week, at JavaOne, we will demonstrate examples of this interoperability on stage during the technical session "TS 2656 - JMX Technology: Who's Doing What". We will show in particular how Windows Vista's management tools can use the JVM telemetry instrumentation. Join Eamonn McManus and Jean-Francois Denise, or watch their blogs, for more details on this.
    We encourage you to use and provide feedback on the WS-Connector RI early access, which is fully functional and, we believe, already pretty stable.
    Note that our implementation of the WS-Management protocol is based on the Wiseman open source project, which lives at http://wiseman.dev.java.net/.
    The JMX Team.

  • Announcing New! Oracle Policy Automation Connector for Oracle CRM on Demand

    Hi all,
    We are very pleased to announce the immediate availability of the new OPA connector for Oracle CRM on Demand. You can find more information and the link to download this connector on the OPA pages on OTN here:
    http://www-content.oracle.com/technetwork/apps-tech/policy-automation/overview/index.html.
    Feel free to post to this forum with questions or comments on this new connector. We welcome your feedback.
    Kind regards,
    Davin Fifield
    VP Product Development, OPA

    1. Oracle Policy Automation Connector for Siebel v10.2 requires rulebases to be created with Oracle Policy Modeling 10.2.
    2. Siebel and OPA are separate applications with their own system requirements. There is no need for them to be deployed on the same operating systems / application servers.
    3. The siebel-data-adapter.properties file is found in, for example, the siebel-wd-embedded.war files (for Java) in the location described in the documentation, and in the corresponding .zip files (for .NET).
    Note that Oracle Policy Automation Connector for Siebel v10.3 is planned to be available on E-Delivery within a few weeks.
    Davin.

  • Connector for OUTLOOK (vista)

    hi all,
    i am using the sun java system connector for microsoft outlook version 7.3.10.2
    and created the exe , that exe works with XP but do not execute properly on vista ,
    can any one suggest me
    regards
    Adeel

    adeelarifbhatti wrote:
    UNABLE TO INSTALL SUN JAVA SYSTEM MAPI SERVICES PROVIDER.This error could occur for any number of reasons and may have nothing to do with your use of Vista. There is an existing bug for a similar problem:
    bug #6785111 - "Unable to install OC 7.2.409 with Outlook 2007 after upgrading from Outlook 2003"
    Try enabling debug installer logging and see if there is any other indication from the logs of the root cause.
    Regards,
    Shane.

  • Livecycle connector for sharepoint Set Document Content for Office documents

    Hi,
    I'm trying to figure out how the LiveCycle 9.5 connector for sharepoint works. It all works like a charm, exept for the set document content activity in a LiveCycle process.
    When I have a file named  test.txt on my Sharepoint server, and I execute the process with the "set document content" activity to replace the content with the content of the same test.txt files' content which I changed for the experiment, it gets updated without any problems.
    Yet, when I have a file named  test.docx on my Sharepoint server, and I try to replace the content with that of the content of the same test.docx file with altered content, the document content doesn't get updated to the new content.
    Is there a certain configuration that I need to do, to make this work or is this a known issue of the connector?
    Thanks in advance for your answer
    Kind Regards,
    Ronald Kamp
    Junior Flex/Java/LiveCycle Consultant at iDA MediaFoundry.

    Hi Ronald,
    I could not get this reproduced at my end. We were successfully able to replace contents of a .docx file as well.
    Can you please attach the livecycle process along with the thread in case issue has not yet been resolved at your side?
    Thanks
    Raghu

Maybe you are looking for

  • Iphoto booth has no image s

    Somehow I lost my camera image in iphoto booth. I see it is also lost on my ichat. Can someone help with this problem on my imac?

  • Hyperion SmartView VB Macro Issue

    I am trying to use smart view "HypMenuVSubmitData" function to submit the data in Webform through Macro. I am using the below Macro Private Declare Function HypMenuVSubmitData Lib "HsAddin"() As Long Sub MSubmit() X=HypMenuVSubmitData() End Sub I hav

  • Installing Cintiq with Imac; trapped in dual-screen **** -please help!

    Attempting to install a Cintiq 12X on my Imac for the benefit of my artist daughter. There appears to be something wrong with the Cintiq, but that's not my problem. I switched my main screen from the Imac to the Cintiq, just to see if my desktop woul

  • How to save processed photo

    I know I just started using Aperture, but my question shouldn't be this difficult.  If I process a photo in Aperture (use Noise Reduction as an example), it gets saved and I only see one version of the picture in my Library (the processed version)...

  • Can FCPX imports MPEG-2 4:2:2 50Mbps Codec ?

    Hi there, Just wondering, according to the link below, the Canon XF100 & XF105 records in Mpeg-2  4:4:2 50Mbps Codec. http://media.canon-asia.com/shared/live/products/EN/XA10_XF100-105-050412.pdf So, can FCPX import this format directly? Thanks