BPEL locator apis in 11g

Is the locator apis for invocation of BPEL process using rmi deprecated in 11g? can anybody give me more input about the same? What is the recommended way of invoking BPEL processes?

In 11g technology preview the BPEL process cannot be created as per the info in the forums. I wanted to clarify myself regarding that.
This is going to be added later.

Similar Messages

  • Retrieving BPEL callback response using BPEL Locator or webservice proxy

    Hi all,
    I am in the middle of a project delivery and got stuck with a strange situation.I have a BPEL asynchronous process and I have a java class calling this process.I need to get the response from the BPEL process on callback in the java class.In the BPEL locator API I find there is mention of retrieving an instance on the basis of conversation ID,however the same is declared final in the API and can't be assigned any value.I tried generating proxy out of the BPEL wsdl,however when generating proxy in the JDeveloper wizard two seperate operations got exposed(the actual service & the callback service).Hence this option has to be ruled out since maintaining correlation would really be a big problem.Please can anybody help me on what should be the procedure to recieve response from callbacks in BPEL?Please note I am using 10.1.3.1 version of SOA suite.This is really urgent.Any help would be appreciated.
    Thanks.

    WSDL Of the BPEL
    <?xml version="1.0" encoding="UTF-8" ?>
    - <definitions name="TestAsynchLocator" targetNamespace="http://xmlns.oracle.com/TestAsynchLocator" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://xmlns.oracle.com/TestAsynchLocator" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:client="http://xmlns.oracle.com/TestAsynchLocator">
    - <types>
    - <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/TestAsynchLocator" schemaLocation="TestAsynchLocator.xsd" />
    </schema>
    - <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" schemaLocation="http://CALTP8BB25:8888/orabpel/xmllib/ws-addressing.xsd" />
    </schema>
    </types>
    - <message name="TestAsynchLocatorResponseMessage">
    <part name="payload" element="tns:TestAsynchLocatorProcessResponse" />
    </message>
    - <message name="TestAsynchLocatorRequestMessage">
    <part name="payload" element="tns:TestAsynchLocatorProcessRequest" />
    </message>
    - <message name="WSARelatesToHeader">
    <part name="RelatesTo" element="wsa:RelatesTo" />
    </message>
    - <message name="WSAReplyToHeader">
    <part name="ReplyTo" element="wsa:ReplyTo" />
    </message>
    - <message name="WSAMessageIDHeader">
    <part name="MessageID" element="wsa:MessageID" />
    </message>
    - <portType name="TestAsynchLocatorCallback">
    - <operation name="onResult">
    <input message="tns:TestAsynchLocatorResponseMessage" />
    </operation>
    </portType>
    - <portType name="TestAsynchLocator">
    - <operation name="initiate">
    <input message="tns:TestAsynchLocatorRequestMessage" />
    </operation>
    </portType>
    - <binding name="TestAsynchLocatorCallbackBinding" type="tns:TestAsynchLocatorCallback">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="onResult">
    <soap:operation style="document" soapAction="onResult" />
    - <input>
    <soap:header message="tns:WSARelatesToHeader" part="RelatesTo" use="literal" encodingStyle="" />
    <soap:body use="literal" />
    </input>
    </operation>
    </binding>
    - <binding name="TestAsynchLocatorBinding" type="tns:TestAsynchLocator">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="initiate">
    <soap:operation style="document" soapAction="initiate" />
    - <input>
    <soap:header message="tns:WSAReplyToHeader" part="ReplyTo" use="literal" encodingStyle="" />
    <soap:header message="tns:WSAMessageIDHeader" part="MessageID" use="literal" encodingStyle="" />
    <soap:body use="literal" />
    </input>
    </operation>
    </binding>
    - <service name="TestAsynchLocator">
    - <port name="TestAsynchLocatorPort" binding="tns:TestAsynchLocatorBinding">
    <soap:address location="http://CALTP8BB25:8888/orabpel/default/TestAsynchLocator/1.0" />
    </port>
    </service>
    - <service name="TestAsynchLocatorCallbackService">
    - <port name="TestAsynchLocatorCallbackPort" binding="tns:TestAsynchLocatorCallbackBinding">
    <soap:address location="http://set.by.caller" />
    </port>
    </service>
    - <plnk:partnerLinkType name="TestAsynchLocator">
    - <plnk:role name="TestAsynchLocatorProvider">
    <plnk:portType name="tns:TestAsynchLocator" />
    </plnk:role>
    - <plnk:role name="TestAsynchLocatorRequester">
    <plnk:portType name="tns:TestAsynchLocatorCallback" />
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    WSDL of the Webservice
    <?xml version="1.0" encoding="UTF-8" ?>
    - <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns0="http://callbackresponsewebservice/types/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://callbackresponsewebservice/" name="MyWebService1" targetNamespace="http://callbackresponsewebservice/">
    - <types>
    - <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://callbackresponsewebservice/types/" targetNamespace="http://callbackresponsewebservice/types/" elementFormDefault="qualified">
    - <element name="holdResponseElement">
    - <complexType>
    - <sequence>
    <element name="String_1" type="string" nillable="true" />
    </sequence>
    </complexType>
    </element>
    </schema>
    </types>
    - <message name="MyWebService1_holdResponse">
    <part name="parameters" element="tns0:holdResponseElement" />
    </message>
    - <portType name="MyWebService1">
    - <operation name="holdResponse">
    <input message="tns:MyWebService1_holdResponse" />
    </operation>
    </portType>
    - <binding name="MyWebService1SoapHttp" type="tns:MyWebService1">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
    - <operation name="holdResponse">
    <soap:operation soapAction="http://callbackresponsewebservice//holdResponse" />
    - <input>
    <soap:body use="literal" />
    </input>
    </operation>
    </binding>
    - <service name="MyWebService1">
    - <port name="MyWebService1SoapHttpPort" binding="tns:MyWebService1SoapHttp">
    <soap:address location="http://caltp8bb25:8888/TestApplication1-CallBackResponseWebService-context-root/MyWebService1SoapHttpPort" />
    </port>
    </service>
    </definitions>
    Audit Console Data
    <process>
    <sequence>
    receiveInput
    [2008/06/04 15:27:37] Received "inputVariable" call from partner "client"less
    View xml document
    <TestAsynchLocatorProcessRequest xmlns="http://xmlns.oracle.com/TestAsynchLocator">
    <input>Soumyajit</input>
    </TestAsynchLocatorProcessRequest
    Assign_1
    [2008/06/04 15:27:37] Updated variable "outputVariable"less
    -<outputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload">
    -<TestAsynchLocatorProcessResponse xmlns="http://xmlns.oracle.com/TestAsynchLocator">
    <result>HelloSoumyajit
    </result>
    </TestAsynchLocatorProcessResponse>
    </part>
    </outputVariable>
    callbackClient (faulted)
    [2008/06/04 15:27:37] Faulted while invoking operation "onResult" on provider "client".less
    -<messages>
    -<input>
    -<outputVariable>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload">
    -<TestAsynchLocatorProcessResponse xmlns="http://xmlns.oracle.com/TestAsynchLocator">
    <result>HelloSoumyajit
    </result>
    </TestAsynchLocatorProcessResponse>
    </part>
    </outputVariable>
    </input>
    -<fault>
    -<remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message transmission failure, response code: 500
    </summary>
    </part>
    </remoteFault>
    </fault>
    </messages>
    [2008/06/04 15:27:37] "{http://schemas.oracle.com/bpel/extension}remoteFault" has been thrown.less
    -<remoteFault xmlns="http://schemas.oracle.com/bpel/extension">
    -<part name="summary">
    <summary>
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message transmission failure, response code: 500
    </summary>
    </part>
    </remoteFault>
    </sequence>
    [2008/06/04 15:27:37] "BPELFault" has not been caught by a catch block.
    [2008/06/04 15:27:37] BPEL process instance "390006" cancelled
    </process>

  • DOS 11g SOA have the Locator API's - How to Invoke a BPEL process from Java

    In BPEL 10.1.3.1, a java client could use the "Locator" API's to look up a BPEL service and invoke it directly from Java,
    Is that still present in SOA 11g ? Or is there another way to look up the BPEL process ...
    Here's an example of the 10g BPEL Service locator facilities :
    Get the BPEL service locator. This is retrieved as follows:
    loc = new Locator(domain, domainPassword);
    The initial installation BPEL domain is "domain" and the initial password is "bpel". We then use the locator to get the delivery service. We could also use the locator to retrieve the workflow service.
    IDeliveryService svc = (IDeliveryService)loc.lookupService(IDeliveryService.SERVICE_NAME);
    Now we have the delivery service we can "deliver" requests to the BPEL process. To do this we first need to create a new message.
    NormalizedMessage msg = new NormalizedMessage();
    String content = "<SyncHelloWorldProcessRequest xmlns=\"http://antony.blog/SyncHelloWorld\">"+
    "<input>"+
    name+
    "</input>"+
    "</SyncHelloWorldProcessRequest>";
    msg.addPart(msgPart, content);

    Can you please tell me how to include adf binding.ws in composite.xml ? My composite.xml for your ref:
    <?xml version="1.0" encoding="UTF-8" ?>
    <!-- Generated by Oracle SOA Modeler version 1.0 at [11/1/10 5:41 PM]. -->
    <composite name="BPEL2"
    revision="1.0"
    label="2010-11-01_17-41-11_593"
    mode="active"
    state="on"
    xmlns="http://xmlns.oracle.com/sca/1.0"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:orawsp="http://schemas.oracle.com/ws/2006/01/policy"
    xmlns:ui="http://xmlns.oracle.com/soa/designer/">
    <import namespace="http://xmlns.oracle.com/CallBPEL_jws/BPEL2/BPELProcess1"
    location="BPELProcess1.wsdl" importType="wsdl"/>
    <service name="bpelprocess1_client_ep" ui:wsdlLocation="BPELProcess1.wsdl">
    <interface.wsdl interface="http://xmlns.oracle.com/CallBPEL_jws/BPEL2/BPELProcess1#wsdl.interface(BPELProcess1)"/>
    <binding.ws port="http://xmlns.oracle.com/CallBPEL_jws/BPEL2/BPELProcess1#wsdl.endpoint(bpelprocess1_client_ep/BPELProcess1_pt)"/>
    </service>
    <component name="BPELProcess1">
    <implementation.bpel src="BPELProcess1.bpel"/>
    </component>
    <wire>
    <source.uri>bpelprocess1_client_ep</source.uri>
    <target.uri>BPELProcess1/bpelprocess1_client</target.uri>
    </wire>
    </composite>
    Eric, when I select the BPEL wsdl file in "Create Web Service Data Control" wizard, immediately I am getting the error. When I click 'OK', the 'Service' dropdown is disabled and blank in the wizard.
    Thanks for pointing to the sample application URL. But it is built in jdev 10g. Can I migrate it to 11g?
    Thanks both of you!

  • Oracle BPEL PM API : Failed to create "ejb/collaxa/system/ServerBean"

    I am getting the following error when I try to use the Oracle BPEL PM API :
    java.lang.Exception: Failed to create "ejb/collaxa/system/ServerBean" bean; exception reported is: "javax.naming.NoInitialContextException: Need to specify class name in environment or system property,
    or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupServerBean(BeanRegistry.java:95)
         at com.oracle.bpel.client.auth.ServerAuthFactory.authenticate(ServerAuthFactory.java:73)
         at example2.Application1.run(Application1.java:50)
         at example2.Application1.main(Application1.java:67)
    It looks like a JNDI/RMI JNDI issue, but it could be another problem. If it is my java.naming.provider.url value.
    The values are found by the following methods:
    <opmn-request-port> : 6003 - Found in opmn.xml, OPMN request port
    <oc4j-instance-name> : oc4j_soa - Found in enterprise manager
    <oc4j-application-name> : orabpel
    The code is
    import com.oracle.bpel.client.BPELDomainStatus;
    import com.oracle.bpel.client.Server;
    import com.oracle.bpel.client.auth.ServerAuth;
    import com.oracle.bpel.client.auth.ServerAuthFactory;
    import com.oracle.bpel.client.ServerException;
    import com.oracle.bpel.client.Locator;
    import com.oracle.bpel.client.dispatch.IDeliveryService;
    Properties props = new java.util.Properties();
    props.put("orabpel.platform", "ias_10g" );
    props.put("java.naming.factory.initial",
    "oracle.j2ee.rmi.RMIInitialContextFactory" );
    props.put("java.naming.provider.url",
    "opmn:ormi://rrsl00024:6003:oc4j_bpel/orabpel" );
    props.put ("dedicated.rmicontext", "true");
    props.put("java.naming.security.principal", "oc4jadmin" );
    props.put("java.naming.security.credentials", "oracle1" );
    securityCredentials = "oracle1";
    auth = ServerAuthFactory.authenticate(securityCredentials, null, props);
    Server srv = new Server(auth);
    BPELDomainStatus domainList[] = srv.getAllDomainStatus();
    for (int i=0; i<domainList.length; i++ ) {
    System.out.println( "Domain ID="+domainList.getDomainId() );
    Environment:
    BPEL Designer     10.1.3.3.0 (Build 070615.0525)
    Java(TM) Platform     1.5.0_06
    Oracle IDE     10.1.3.41.57

    I am getting the following error when I try to use the Oracle BPEL PM API :
    java.lang.Exception: Failed to create "ejb/collaxa/system/ServerBean" bean; exception reported is: "javax.naming.NoInitialContextException: Need to specify class name in environment or system property,
    or as an applet parameter, or in an application resource file: java.naming.factory.initial
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.oracle.bpel.client.util.BeanRegistry.lookupServerBean(BeanRegistry.java:95)
         at com.oracle.bpel.client.auth.ServerAuthFactory.authenticate(ServerAuthFactory.java:73)
         at example2.Application1.run(Application1.java:50)
         at example2.Application1.main(Application1.java:67)
    It looks like a JNDI/RMI JNDI issue, but it could be another problem. If it is my java.naming.provider.url value.
    The values are found by the following methods:
    <opmn-request-port> : 6003 - Found in opmn.xml, OPMN request port
    <oc4j-instance-name> : oc4j_soa - Found in enterprise manager
    <oc4j-application-name> : orabpel
    The code is
    import com.oracle.bpel.client.BPELDomainStatus;
    import com.oracle.bpel.client.Server;
    import com.oracle.bpel.client.auth.ServerAuth;
    import com.oracle.bpel.client.auth.ServerAuthFactory;
    import com.oracle.bpel.client.ServerException;
    import com.oracle.bpel.client.Locator;
    import com.oracle.bpel.client.dispatch.IDeliveryService;
    Properties props = new java.util.Properties();
    props.put("orabpel.platform", "ias_10g" );
    props.put("java.naming.factory.initial",
    "oracle.j2ee.rmi.RMIInitialContextFactory" );
    props.put("java.naming.provider.url",
    "opmn:ormi://rrsl00024:6003:oc4j_bpel/orabpel" );
    props.put ("dedicated.rmicontext", "true");
    props.put("java.naming.security.principal", "oc4jadmin" );
    props.put("java.naming.security.credentials", "oracle1" );
    securityCredentials = "oracle1";
    auth = ServerAuthFactory.authenticate(securityCredentials, null, props);
    Server srv = new Server(auth);
    BPELDomainStatus domainList[] = srv.getAllDomainStatus();
    for (int i=0; i<domainList.length; i++ ) {
    System.out.println( "Domain ID="+domainList.getDomainId() );
    Environment:
    BPEL Designer     10.1.3.3.0 (Build 070615.0525)
    Java(TM) Platform     1.5.0_06
    Oracle IDE     10.1.3.41.57

  • How to disable BPEL java api logging in SOAP mode?

    Hi,
    I have build an 11g ADF based application using the Oracle BPEL java API to access the BPEL and workflow engine. Since i am unable to make it running with the REMOTE_CLIENT on Weblogic 10.3 we run it in SOAP_CLIENT mode. This generates a lot of logging which i want to turn of in our production environment. Does anybody know how to achieve that? Or even better, how to use the bpel api in REMOTE_CLIENT mode from a 11g adf application?
    Kind Regards,
    Andre

    No you dont have to change your startManagedServer.cmd/.sh everytime you need to have a Java Embedding activity. You only need it in case of using Log4J. As log4j requires a configuration xml viz log4j.debug.xml and log4j.dtd you need to let the soa managed server know about it. The best way to load this configuration files is using the JAVA_OPTIONS command during server startup.
    Hope the explanation helps.

  • Problems with async callback with the BPEL Java API (Urgent- pls help)

    Hi,
    I have an async BPEL process and I invoke it form a JSP page using BPEL java API.
    I have followed the tutorials and docs at:
    $SOA_HOME/bpel\samples\tutorials\102.InvokingProcesses\rmi\com\otn\samples\async
    I can inititiate successfully the process, but when I try to get the result using getResult() or getField(String fieldName) methods I get the error:
    Oct 2, 2007 2:35:16 PM oracle.j2ee.rmi.RMIMessages EXCEPTION_ORIGINATES_FROM_THE_REMOTE_SERVER
    WARNING: Exception returned by remote server: {0}
    java.lang.ExceptionInInitializerError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:242)
         at com.evermind.io.ClassLoaderObjectInputStream.resolveClass(ClassLoaderObjectInputStream.java:33)
         at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1538)
         at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1460)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1693)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:339)
         at com.evermind.server.rmi.RMIClientConnection.handleMethodInvocationResponse(RMIClientConnection.java:856)
         at com.evermind.server.rmi.RMIClientConnection.handleOrmiCommandResponse(RMIClientConnection.java:287)
         at com.evermind.server.rmi.RMIClientConnection.dispatchResponse(RMIClientConnection.java:242)
         at com.evermind.server.rmi.RMIClientConnection.processReceivedCommand(RMIClientConnection.java:224)
         at com.evermind.server.rmi.RMIConnection.handleCommand(RMIConnection.java:152)
         at com.evermind.server.rmi.RMIConnection.listenForOrmiCommands(RMIConnection.java:127)
         at com.evermind.server.rmi.RMIConnection.run(RMIConnection.java:107)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.util.MissingResourceException: Can't find bundle for base name com.collaxa.cube.i18n.exception_cube, locale en_US
         at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:836)
         at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:805)
         at java.util.ResourceBundle.getBundle(ResourceBundle.java:699)
         at com.collaxa.cube.CubeException.getResourceBundle(CubeException.java:142)
         at com.collaxa.cube.CubeException.<clinit>(CubeException.java:82)
         ... 17 more
    07/10/02 14:35:16 java.lang.ClassCastException: java.util.MissingResourceException
    07/10/02 14:35:16      at com.oracle.bpel.client.delivery.ext.async.thread.AsyncInstanceWatchdog.run(AsyncInstanceWatchdog.java:152)
    I check for the result only after I have checked that the instance is closed (completed or faulted) by using IInstanceHandle:getState() and InstanceHandle.STATE_CLOSED_COMPLETED, or IInstanceHandle.STATE_CLOSED_FAULTED
    I would like to add that so far I had no problems with invocation and geting result of sync BPEL processes. I do not what is missing for async processes.
    Any kind of help is appreciable.
    Thanks and best regards,
    Evanela

    Hi again,
    i managed to solve the problem:) Totally stupid.. the process variable name was not specified correctly..., but more stupid sounds the error message:))))
    Best Regards,
    Evanela

  • BPEL tutorial or Jdeveloper 11g ?

    Hi all,
    I have just installed SOA suite 11g.I am trying to create a sample BPEL process,I am unable to find create new BPEL project in Jdev 11g. Can anyone kindly post the link for bepl development tutorial in j developer 11g ?
    Thank You

    Hi,
    1. Here is the link for 11g developers Guide
    http://download.oracle.com/docs/cd/E11036_01/integrate.1013/b28981.pdf
    2. You need to apply a patch on jdeveloper before you start making soa proj/Appl in jdev 11g...
    Follow the steps:
    Open Jdev->go to help->click on check for updates->click next->click next->select oracle soa composite editor->next finish.
    Regards,
    Satish

  • Can't locate API module structure `mod_auth_ntlm_winbind'

    Hi, I am trying to use modauth_ntlmwinbind with OS X Server 10.5.7. I can compile it for the four architectures with:
    sudo ./configure APXS_CFLAGS='-arch ppc -arch ppc64 -arch i386 -arch x86_64' APXSLDFLAGS='-arch ppc -arch ppc64 -arch i386 -arch x86_64' --with-apxs=/usr/sbin/apxs
    otool -fv modauth_ntlmwinbind.so
    Fat headers
    fat_magic FAT_MAGIC
    nfat_arch 4
    architecture ppc7400
    cputype CPUTYPEPOWERPC
    cpusubtype CPUSUBTYPE_POWERPC7400
    capabilities 0x0
    offset 4096
    size 22792
    align 2^12 (4096)
    architecture ppc64
    cputype CPUTYPEPOWERPC64
    cpusubtype CPUSUBTYPE_POWERPC64ALL
    capabilities 0x0
    offset 28672
    size 23000
    align 2^12 (4096)
    architecture i386
    cputype CPUTYPEI386
    cpusubtype CPUSUBTYPE_I386ALL
    capabilities 0x0
    offset 53248
    size 22336
    align 2^12 (4096)
    architecture x86_64
    cputype CPUTYPE_X8664
    cpusubtype CPUSUBTYPE_X86_64ALL
    capabilities 0x0
    offset 77824
    size 22872
    align 2^12 (4096)
    When I start Apache with httpd or apachectl I get:
    httpd: Syntax error on line 93 of /private/etc/apache2/httpd.conf: Can't locate API module structure `modauth_ntlmwinbind' in file /usr/libexec/apache2/modauth_ntlmwinbind.so: dlsym(0x100200560, modauth_ntlmwinbind): symbol not found
    It is not fixed by commenting out the DYDLDLIBRARYPATH env variable.
    line 93 in httpd.conf
    LoadModule modauth_ntlmwinbind libexec/apache2/modauth_ntlmwinbind.so
    LoadModule authnfilemodule libexec/apache2/modauthnfile.so
    line 94 works and is included to show it is the same. I'm stumped. What symbol is it looking for?
    Thank you for any help.

    It really doesn't matter that the other libraries/modules are built as UBs. The OS is going to load only those portions that work with the specific hardware/OS capabilities. It will not load/run a x86_64 binary on a PPC64 machine.
    A question; are you trying to compile an x86 module on a PPC machine or a PPC module on a PPC64 machine? If you are you aren't going to get this to work without cross-compiling. The module may build correctly but won't load/run because the machine code is going to be wrong.

  • How to use Landmark & LandmarkStore classes in Location API

    hi
    i have some problem to use Landmark & landmarkStore classes in location api . any one give source link to use these calsses.

    1) why not simply create two different timer objects, one for one image, the other for the other. I would caution you that you may wish to limit the area of your repaint so as not to slow down your app repainting everything when you only need to repaint the area around your sprites.
    [http://www.java-forums.org/awt-swing/14590-how-use-multiple-timer-classes-swings.html]
    2) Please note that cross-posting can frustrate anyone who tries to help you only to find out later that the same answer was given hours ago in a cross-posted thread. No one likes wasting their time, especially a volunteer. The polite thing to do would be to not do this, but if you feel that you absolutely must, to at least provide links in both cross-posts to each other.

  • Java Embedingin BPEL of SOA suite 11g

    Hi,
    To remove namespace of a soap element we are using java embedding in BPEL of SOA suite 11g.
    Added related libraries in jdev project properties and deployed to generate a sar while.
    When i am trying to deploy this SAR through em console to SOA server following error is diasplayed.
    Deploying on "/Farm_SOA_domain/SOA_domain/soa_server1" ...
    Deploying on "/Farm_SOA_domain/SOA_domain/soa_server1" failed!
    Error during deployment: Error occurred during deployment of component: CallOIM to service engine: implementation.bpel for composite: SOAComposite1: ORABPEL-01005
    Failed to compile bpel generated classes.
    failure to compile the generated BPEL classes for BPEL process "CallOIM" of composite "default/SOAComposite1!55*91c4a2eb-240d-4a6f-968c-fa7ff516ef51".
    The class path setting is incorrect.
    Ensure that the class path is set correctly. If this happens on the server side verify that the custom classes or jars which this BPEL process is depending on are deployed correctly. Also verify that the run time is using the same release/version.
    jars are deployed properly on the server. Any pointers on the same will be more helpful.
    Thanks,
    Sowmya

    I haven't done it in 11g but I'm sure it is the same.
    you need to import the java classes. to do this add the following to you .bpel source code
    <bpelx:exec import="java.util.*"/>
    <bpelx:exec import="java.lang.*"/>
    <bpelx:exec import="java.math.*"/>
    place it between the lines:
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <!--
    PARTNERLINKS
    e.g.
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <bpelx:exec import="java.util.*"/>
    <bpelx:exec import="java.lang.*"/>
    <bpelx:exec import="java.math.*"/>
    <!--
    PARTNERLINKS
    Also from memory the System.out.println never worked for me, or it printed in the logs which wasn't helpful. What you can do is assign it to another variable, e.g.
    String input = (String)getVariableData("InputSring");
    setVariableData("OutputSring",input);
    OutputString is my variable defined in BPEL.
    cheers
    James

  • How to use Location API .

    What is reqired to use Location API on Mobile Phone.
    Please Help me.

    do visit
    http://developers.sun.com/techtopics/mobility/apis/articles/location/
    and search this web site lots of information is avlb here
    bye

  • Setting 'ReplytoAddress' in NormalizedMessage using BPEL client API-failing

    Hi all,
    I tried specifying 'Reply to Address' property in Normalized Message using BPEL Client API to receive response from Asynchronous BPEL process but it's not working.
    I am facing the following situations:-
    1.Just setting 'Reply To address'-raises
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message transmission failure, response code: 500
    2.Specifying both 'Reply to address' and 'Reply To PortType' is sending the entire process to an infinite wait state in receiving response from the worklist task service.
    My BPEL process has a human worklist and this workflow on completion can't callback my BPEL process for carrying out Step -2 mentioned above.
    Reply to Address = webservice SOAP endpoint URI
    Reply to Porttype= the porttype name in the WSDL file.
    Please any help will be appreciated.I have a project delivery.
    Thanks

    Hi all,
    I tried specifying 'Reply to Address' property in Normalized Message using BPEL Client API to receive response from Asynchronous BPEL process but it's not working.
    I am facing the following situations:-
    1.Just setting 'Reply To address'-raises
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message transmission failure, response code: 500
    2.Specifying both 'Reply to address' and 'Reply To PortType' is sending the entire process to an infinite wait state in receiving response from the worklist task service.
    My BPEL process has a human worklist and this workflow on completion can't callback my BPEL process for carrying out Step -2 mentioned above.
    Reply to Address = webservice SOAP endpoint URI
    Reply to Porttype= the porttype name in the WSDL file.
    Please any help will be appreciated.I have a project delivery.
    Thanks

  • Java Location API,  Siemens SK65,  Irish network operators

    Hi,
    I'm a senior java developer, just starting to experiment with J2ME.
    I wrote a real simple Midlet to request my location from the Java Location API.
    It runs in the emulator (Eclipse, WTK 2.3) but hangs on my Siemens SK65 phone, which supports JSR 179 ( the java location api ).
    Anyone got any experience of the Java Location API.
    I've a couple of suspects...
    a) that the Irish phone network ( O2 ) doesn't support location based
    services. I previously tried listening for nearby cell broadcasts, but O2
    don't seem to send them out.
    b) that the phone needs GPRS and/or bluetooth settings enabled (tried both)
    This isn't urgent, simply experimenting, but if anyone has any information to point me in the right direction, it'd be appreciated.
    regards,
    Owen

    Cheers deepspace,
    I'll do some research into "AGPS".
    Failing that, I've seen an application "PlaceLabs" which looks interesting, and seems to triangulate your position based on Cell ids.
    duke dollars on their way :-)
    regards,
    Owen

  • JSR 169 - Location API

    Hello,
    Would Nokia series 40 supports JSR 169?

    u should see mobile phone's configuration of jsr before using jsr 179 i.e location api..
    s40 is not concerned but mobiles supporting jsr file is of main concern.
    well jsr 179 used for location based services. so u mite b working for lbs..
    i m also analyzing for lbs application.. if u have any updates then feel free.

  • Porting location api to own device

    Hello,
    I am currently looking into the possibilities of porting the j2me location api (jsr 179) on my own device. So far I found out, that I have to port the cldc reference implementation first, to have a VM that runs on my device. But now I am not sure how to continue. Is there any example sourcecode available how the api works, or do I have to implement it on my own, specifially for my device? If I do have to program it myself, would I do that in C and add it to the CLDC sources, or would I do that in java as a library?
    Thanks in advance

    Hi,
    You should google on Fortuna GPS ClipOn and API
    Kaj

Maybe you are looking for