WebService is not invoking from OAPage

Hi,
I created a BPEL WS which creates a employee in oracle EBS and deployed sucessfully.My requirement is to invoke this WS from a custom OAF page.I generated all STUB java classes and done all coding in the controller of the page.The problem is WS is not invoking,no error is throwing.
I am pasting my WSDL file and stub class
CreateEmployee WSDL
<?xml version="1.0" encoding="UTF-8"?>
<definitions
name="CreateEmployee"
targetNamespace="http://xmlns.oracle.com/CreateEmployee"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns="http://xmlns.oracle.com/CreateEmployee"
xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
xmlns:ns1="http://www.globalcompany.com/ns/sales"
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/CreateEmployee"
>
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.globalcompany.com/ns/sales"
xmlns:po="http://www.globalcompany.com/ns/sales"
elementFormDefault="qualified">
<annotation>
<documentation xml:lang="en">
Order Booking schema for GlobalCompany.com.
Copyright 2005 GlobalCompany.com. All rights reserved.
</documentation>
</annotation>
<element name="EmployeeDetails" type="po:EmployeeDetails"/>
<complexType name="EmployeeDetails">
<sequence>
<element name="EmployeeNumber" type="string"/>
<element name="DOB" type="date"/>
<element name="LastName" type="string"/>
<element name="Bgid" type="integer"/>
<element name="EffectiveDate" type="date"/>
<element name="Gender" type="string"/>
</sequence>
</complexType>
</schema>
<xs:schema targetNamespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" blockDefault="#all">
<!-- //////////////////// WS-Addressing //////////////////// -->
* <!-- Endpoint reference -->*
* <xs:element name="EndpointReference" type="wsa:EndpointReferenceType"/>*
* <xs:complexType name="EndpointReferenceType">*
* <xs:sequence>*
* <xs:element name="Address" type="wsa:AttributedURI"/>*
* <xs:element name="ReferenceProperties" type="wsa:ReferencePropertiesType" minOccurs="0"/>*
* <xs:element name="PortType" type="wsa:AttributedQName" minOccurs="0"/>*
* <xs:element name="ServiceName" type="wsa:ServiceNameType" minOccurs="0"/>*
* <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">*
* <xs:annotation>*
* <xs:documentation>*
* If "Policy" elements from namespace "http://schemas.xmlsoap.org/ws/2002/12/policy#policy" are used, they must appear first (before any extensibility elements).*
* </xs:documentation>*
* </xs:annotation>*
*</xs:any> *
* </xs:sequence>*
* <xs:anyAttribute namespace="##other" processContents="lax"/>*
* </xs:complexType>*
* <xs:complexType name="ReferencePropertiesType">*
* <xs:sequence>*
* <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>*
* </xs:sequence>*
* </xs:complexType>*
* <xs:complexType name="ServiceNameType">*
* <xs:simpleContent>*
* <xs:extension base="xs:QName">*
* <xs:attribute name="PortName" type="xs:NCName"/>*
* <xs:anyAttribute namespace="##other" processContents="lax"/>*
* </xs:extension>*
* </xs:simpleContent>*
* </xs:complexType>*
* <!-- Message information header blocks -->*
* <xs:element name="MessageID" type="wsa:AttributedURI"/>*
* <xs:element name="RelatesTo" type="wsa:Relationship"/>*
* <xs:element name="To" type="wsa:AttributedURI"/>*
* <xs:element name="Action" type="wsa:AttributedURI"/>*
* <xs:element name="From" type="wsa:EndpointReferenceType"/>*
* <xs:element name="ReplyTo" type="wsa:EndpointReferenceType"/>*
* <xs:element name="FaultTo" type="wsa:EndpointReferenceType"/>*
* <xs:element name="Recipient" type="wsa:EndpointReferenceType"/>*
* <xs:complexType name="Relationship">*
* <xs:simpleContent>*
* <xs:extension base="xs:anyURI">*
* <xs:attribute name="RelationshipType" type="xs:QName" use="optional"/>*
* <xs:anyAttribute namespace="##other" processContents="lax"/>*
* </xs:extension>*
* </xs:simpleContent>*
* </xs:complexType>*
* <xs:simpleType name="RelationshipTypeValues">*
* <xs:restriction base="xs:QName">*
* <xs:enumeration value="wsa:Response"/>*
* </xs:restriction>*
* </xs:simpleType>*
* <!-- Common declarations and definitions -->*
* <xs:complexType name="AttributedQName">*
* <xs:simpleContent>*
* <xs:extension base="xs:QName">*
* <xs:anyAttribute namespace="##other" processContents="lax"/>*
* </xs:extension>*
* </xs:simpleContent>*
* </xs:complexType>*
* <xs:complexType name="AttributedURI">*
* <xs:simpleContent>*
* <xs:extension base="xs:anyURI">*
* <xs:anyAttribute namespace="##other" processContents="lax"/>*
* </xs:extension>*
* </xs:simpleContent>*
* </xs:complexType>*
</xs:schema>
</types>
<message name="CreateEmployeeResponseMessage">
<part name="payload" element="ns1:EmployeeDetails"/>
</message>
<message name="CreateEmployeeRequestMessage">
<part name="payload" element="ns1:EmployeeDetails"/>
</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="CreateEmployeeCallback">
<operation name="onResult">
<input message="tns:CreateEmployeeResponseMessage"/>
</operation>
</portType>
<portType name="CreateEmployee">
<operation name="initiate">
<input message="tns:CreateEmployeeRequestMessage"/>
</operation>
</portType>
<binding name="CreateEmployeeCallbackBinding" type="tns:CreateEmployeeCallback">
<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="CreateEmployeeBinding" type="tns:CreateEmployee">
<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="CreateEmployee">
<port name="CreateEmployeePort" binding="tns:CreateEmployeeBinding">
<soap:address location="http://kbace12:8888/orabpel/default/CreateEmployee/1.0"/>
</port>
</service>
<service name="CreateEmployeeCallbackService">
<port name="CreateEmployeeCallbackPort" binding="tns:CreateEmployeeCallbackBinding">
<soap:address location="http://set.by.caller"/>
</port>
</service>
<plnk:partnerLinkType name="CreateEmployee">
<plnk:role name="CreateEmployeeProvider">
<plnk:portType name="tns:CreateEmployee"/>
</plnk:role>
<plnk:role name="CreateEmployeeRequester">
<plnk:portType name="tns:CreateEmployeeCallback"/>
</plnk:role>
</plnk:partnerLinkType>
</definitions>
CreateEmployeeStub.java
package mentor.oracle.apps.webservices;
import oracle.soap.transport.http.OracleSOAPHTTPConnection;
import org.apache.soap.encoding.soapenc.BeanSerializer;
import org.apache.soap.encoding.SOAPMappingRegistry;
import org.apache.soap.util.xml.QName;
import java.util.Vector;
import org.w3c.dom.Element;
import java.net.URL;
import org.apache.soap.Body;
import org.apache.soap.Envelope;
import org.apache.soap.messaging.Message;
import java.util.Properties;
public class CreateEmployeeStub
//public String endpoint = "http://172.16.1.157:8888/orabpel/default/CreateEmployee/1.0";
private OracleSOAPHTTPConnection m_httpConnection = null;
private SOAPMappingRegistry m_smr = null;
public CreateEmployeeStub()
m_httpConnection = new OracleSOAPHTTPConnection();
public void initiate(Element requestElem) throws Exception
URL endpointURL = new URL( "http://172.16.1.157:8888/orabpel/default/CreateEmployee/1.0");
Envelope requestEnv = new Envelope();
Body requestBody = new Body();
Vector requestBodyEntries = new Vector();
requestBodyEntries.addElement(requestElem);
requestBody.setBodyEntries(requestBodyEntries);
requestEnv.setBody(requestBody);
Message msg = new Message();
msg.setSOAPTransport(m_httpConnection);
msg.send(endpointURL, "initiate", requestEnv);
and Input to initiate method is in the form of XML
<ns1:EmployeeDetails>
<ns1:EmployeeNumber>6999</ns1:EmployeeNumber>
<ns1:DOB>2000-07-15</ns1:DOB>
<ns1:LastName>Manoj9334</ns1:LastName>
<ns1:Bgid>7577</ns1:Bgid>
<ns1:EffectiveDate>2009-07-15</ns1:EffectiveDate>
<ns1:Gender>M</ns1:Gender>
</ns1:EmployeeDetails>
that i created using org.w3c.dom.Element class before invoking the initiate method.
Please give solution to this problem
Thanks in Advance

You better ask this in the [OA Forum|http://forums.oracle.com/forums/forum.jspa?forumID=210]
Timo

Similar Messages

  • Adobe LiveCycle webservice button not invoking webservice

    Hi all,
             I am using Adobe Livecycle ES2.I was trying to invoke a webservice of my company for development purpose.I imported the wsdl file into the layout as new connection.I dragged and dropped the button and the request fields to the layout.But in the preview and in the saved pdf file i am not able to invoke the webservice when I click on the button.I tried the with different webservices both from wsdl file and also http location of some online webservices.It used to work fine for me in version 8 of adobe livecycle.Now i am unable to invoke any webservices at all .some please tell me if any settings needs to be enabled in the newer version so that button will invoke a webservice call.
    Thanks & Regards,
    Bince Mathew

    Hi BR001,
                   Thanks a lot for your help that i came to know its related to reader extensions.But now according to the post you shared i created a new pdf from acrobat pro in save as->Reader Extended PDF->Enable Additional Features.But still its not calling the webservice on pressing the button when i open it in reader.I can confirm this cos my webservice is in my company backbone and when i tested it in acrobat reader i was not connected to my company vpn.so every time when i press that button it will show me a pop up message stating that it cannot read from my webservice when it tries to call the service.But the same message is not popping up in adobe reader.
    1) In acrobat Reader pro
    2)Acrobat Reader
    Thanks in advance,
    Bince Mathew

  • InvokeODI webservice is not working from Weblogic Server 11gR1

    Hi,
    We have deployed axis2 (1.2) with invokeodi service to weblogic server 10.3.1.
    We have a BPEL process (using Jdeveloper/SOA 11gR1) which is invoking the invokeOdi webservice to
    invoke a scenario. The invoke is failed with the following fault.
    "Unable to access the following endpoint(s): http://www.oracle.com/"
    Complete Stack Trace:
    com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}remoteFault} parts: {{ summary=oracle.fabric.common.FabricInvocationException: Unable to access the following endpoint(s): http://www.oracle.com/ ,detail=Unable to access the following endpoint(s): http://www.oracle.com/ ,code=200 } at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:301) at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:935) at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.handleNormalInvoke(BPELInvokeWMP.java:440) at com.collaxa.cube.engine.ext.bpel.common.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:182) at com.collaxa.cube.engine.ext.bpel.common.wmp.BaseBPELActivityWMP.perform(BaseBPELActivityWMP.java:140) at com.collaxa.cube.engine.CubeEngine._performActivity(CubeEngine.java:2675) at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:2558) at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1256) at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:73) at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:188) at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:285) at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:4607) at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:828) at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:610) at com.collaxa.cube.engine.ejb.impl.CubeDeliveryBean.handleInvoke(CubeDeliveryBean.java:354) at sun.reflect.GeneratedMethodAccessor697.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310) at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182) at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149) at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131) at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119) at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37) at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54) at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50) at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89) at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131) at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119) at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) at $Proxy181.handleInvoke(Unknown Source) at com.collaxa.cube.engine.ejb.impl.bpel.BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.handleInvoke(BPELDeliveryBean_5k948i_ICubeDeliveryLocalBeanImpl.java:73) at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(InvokeInstanceMessageHandler.java:34) at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:139) at com.collaxa.cube.engine.dispatch.BaseDispatchTask.run(BaseDispatchTask.java:58) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) at java.lang.Thread.run(Thread.java:619)
    FYI, this is working fine with OC4J 10.1.3.4.
    Any help is greatly appreciated.
    Thanks in advance.
    Thanks & Regards,
    Rama Krishna. P
    Edited by: user4477725 on Aug 19, 2009 12:17 PM
    Edited by: user4477725 on Aug 19, 2009 12:39 PM

    I have developed one web application using Autocompleteextender ajax control and used webservice to get the values.
    It is working in local system where i can enter some text in textbox and it will show related word sear list in dropdown.
    But after hosting in production server, some time like 1 hr or 2 hr it will work. Then it will stop working means if i type test in text box  i will not get the list related to entered text.
    Where exactly the problem. Even i have added webreference of that service. Then also sometime it will work and after some time it will not work
    How to fix this issue. Please suggest me.
    Thanks in advance.

  • CF10 web services not "invokable" from CF9

    Here's my situation:
    1. first server with CF10 (just upgraded) running an application with this CFC making a wsdl web service:
    <cffunction name="myWS" access="remote" returntype="boolean" output="false">
          <!--- stuff.... --->
    </cffunction>
    2. second server with CF9.0.1 (last hotfixes) running the web service invocation like this:
    <cfinvoke webservice="http://www.firstserversite.xxx/api/folder/mycomp.cfc?wsdl" method="myWS" returnvariable="LOCAL.ret">
           <cfinvokeargument name="xxx" value="#xxx#" />
    </cfinvoke>
    Before upgrading first server to CF10, my two application servers talked each other the right way and that was working.
    Now I see this error:
    "Cannot generate stub objects for web service invocation"
    ERROR: Missing <soap:fault> element inFault
    It sounds like WSDL generated by cf10 is not compatible with what cf9-cfinvoke does expect!
    How can I workaround this?
    Many thanks to you, it's very urgent!!

    Could the first bug referenced on this page have a hand in this:
    http://helpx.adobe.com/coldfusion/kb/coldfusion-10-update-3.html
    3321512
    Web Services defaults to Axis 2 methods despite setting the Axis version to Axis 1 in ColdFusion Administrator.
    Sounds like CF10 only serves-up Axis 2 web services rather than serving up v1 ones when it's told to?
    Sadly 10.0.3 has been pulled due to it being buggy, but there should be a replacement soon.
    Adam

  • Webservice call by BPM from XI

    Hi all,
            I want to do a SOAP(WebService) to idoc scenario where the webservice should not invoke itself rather the webservice should be invoked by the XI.
    The requirement is like this --
    There should be a BPM that will poll for the Webservice data after a certain time.
    Otherwise its a SOAP to idoc scenario.
    Please give me suggestion on the BPM to be designed.

    Hey,
       Bpm cannot initiate on its own
       In order to initiate the BPM use a file reciever.
       BPM design
        Recieve step(abstract asynchronous) for file
          Send step(abstract synchronous) for the web service call
           transformation step(mapping between web service response and Idoc)
       Send step(abstract asynchronous) for idoc
    reward points if useful
    regards,
            Milan

  • "A technical error during invocation : Could not invoke service reference" Error message while calling a service from BPM

    Hi Experts,
    We are facing a issue while calling a Automated activity from BPM process, the process gets suspended and the BPM logs says "Process XYZ suspended, A technical error during invocation: Could not invoke service reference name fdhueoegghejietyhsjk6886 Component name ABC " We have already checked the mapped service reference and provider system. Gone through the below link, but no help.
    http://http://wiki.scn.sap.com/wiki/display/TechTSG/Sending+a+message+from+SAP+NetWeaver+BPM+process+to+PI+fails+via+automated+activity?original_fqdn=wiki.sdn.sap.com
    Any pointers or suggestions to fix up this issue will be highly appreciated. Thanks in advance.
    Regards,
    Mohit Jaju

    The details/ID in NWDS Service Reference must exactly match the SOA configuration. Sometimes it's possible you have changed the reference or the group itself and something changed to become mismatched.
    It's possible they don't match - but the SG itself will show green in NWA since the service exists and responds on the target system. Does the ID listed in the error match what is shown in the NWDS project?
    regards, Nick

  • SES Release Strategy not invoked in Backend from SRM confirmation posting

    Hi,
    I have configured a SES release strategy based on vendor number in R/3. When a SES is created in R/3 via ML81N the release strategy is invoked as expected. However, when a confirmation is entered in SRM for that vendor, the SES that is created in the backend system is created in accepted status and the release strategy is not invoked.
    Can anyone advise how to get this to work the same way as ML81N?
    I would expect that the SES would be created in the backend from the confirmation without acceptance and the release procedure to be the same as ML81N.
    thanks,
    Michelle.

    Hi,
    The SRM confirmation in EBP is the goods receipt(MIGO) and not the service entry sheet entry (ML81N) as we do in Materials management.
    As per my understanding there is no provision of service entry sheet entry in SRM 5.0 as of now  and SRM 7.0 has this option coming up :
    In SRM 7.0 ,
    "Supplier-maintained confirmation (service entry sheet) for services performed based on the service items within a purchase order
    Confirmation supporting hierarchical structure of service items"
    are added.
    Look for this information in the thread which speaks about SRM 7.0
    Re: Benefits of upgrading to SAP SRM 2007
    which gives the info in slide 11, Delta SRM 7.0, Service procurement -2
    Best regards,
    Sridhar.

  • Oracle Server 11.2.0.1.0 64-bit fails when invoked from InstallShield

    I'm trying to install the Oracle Server 11.2.0.1.0 64-bit on Windows 2008 SP1 from the InstallShield 2010.
    The installation is silent. Invoked by command line:
    J:\Oracle_11.2.0_x64\OracleServer_11.2.0.1_x64\setup.exe ORACLE_HOME_NAME="ARAXI_11" -silent -nowelcome -force -nowait -noconsole -loglevel fine -noconfig -ignoreSysPrereqs use_prereq_checker=false -responseFile C:\Oracle\11.2.0\installation\scripts\SVRCUSTOM11.2.0.rsp
    The problem is that when the command is invoked from command line (cmd), the installation is successful.
    However, when the same command is invoked from under the InstallShield, the installation fails on Architecture requirement check:
    INFO: *********************************************
    INFO: Architecture: This is a prerequisite condition to test whether the system has a certified architecture.
    INFO: Severity:CRITICAL
    INFO: OverallStatus:OPERATION_FAILED
    INFO: All forked task are completed at state performChecks
    INFO: Completed background operations
    INFO: Moved to state <performChecks>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating state <performChecks>
    INFO: Using default Validator configured in the Action class oracle.install.ivw.db.action.PrereqAction
    INFO: Adding ExitStatus PREREQUISITES_NOT_MET to the exit status set
    SEVERE: [FATAL] [INS-13013] Target environment do not meet some mandatory requirements.
    CAUSE: Some of the mandatory prerequisites are not met. See logs for details. C:\Oracle\Inventory\logs\installActions2011-05-19_12-58-13PM.log
    ACTION: Identify the list of failed prerequisite checks from the log: C:\Oracle\Inventory\logs\installActions2011-05-19_12-58-13PM.log. Then either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.
    INFO: Advice is ABORT
    INFO: Adding ExitStatus INVALID_USER_INPUT to the exit status set
    The questions:
    1. Why the requirement checks give different results when installation is invoked from CMD and from InstallShield?
    2. Why the requirement checks are done despite the parameters "-ignoreSysPrereqs" and "use_prereq_checker=false"?
    3. What should I do to get the installation pass (either remove the check or make it satisfying)?
    PS. The 32 bit Oracle Server installation on Windows 2003 works without problem when invoked from InstallShield.

    Please use 2008R2 if you want to install 11gR2 versionThank you for that update. Possibly it will help me to solve another trouble.
    Regarding the problem I described, the issue is that I install Oracle Client 32 bit prior to trying to install Oracle Servier 64 bit.
    The Oracle Client setup had started RemoteExecService.exe 32 bit process. And the process remained running after the installation completed.
    The Oracle Server setup utilizes the running RemoteExecService.exe process. Since the process is 32 bit, the architecture requirement check had failed.
    I've added to my script killing the process
    taskkill /F /IM RemoteExecService.exe
    before invoking the Oracle Server installation.
    That way the Oracle Server setup starts another RemoteExecService.exe process and the new process is 64 bit.
    The architecture requirement succeed.

  • JDev generated webservices encodes XML output from PL/SQL procedure

    I have a PL/SQL packaged procedure which takes some input parameters and produces one output parameter. The output parameter is of type CLOB and after the procedure has run, it contains a big piece of XML data.
    Using JDeveloper 10.1.3.1, I've published this packaged procedure as a webservice. The generated webservice is fine and works, except for one tiny little issue: the XML that is taken from the output parameter is encoded.
    Here is an example of the SOAP message that the webservice returns:
    <?xml version="1.0" encoding="UTF-8"?>
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:ns0="http://gbv0300u/GBV0300U.wsdl/types/"><env:Body><ns0:gbv0300uResponse
    Element><ns0:result><ns0:obvglijstOut> & gt;type>GBV0001& gt ;/type& lt;
    & gt;diensten& lt;
    & gt;dienst>some value& gt;/dienst& lt;
    & gt;/diensten& lt;
    </ns0:obvglijstOut></ns0:result></ns0:gbv0300uResponseElement></env:Body></env:Envelope>
    (I've manually added an extra space between the & and lt; or gt; to make sure a browser will not translate it into a < or >!)
    The contents of the <ns0:obvglijstOut> element are filled with the output parameter from the PL/SQL package.
    How can I change the generated webservice, so the output from the PL/SQL package is used as is instead of being encoded?

    Update: I've tested a bit more by adding some output statements to the java code that JDeveloper generated. I'm now 100% sure the PL/SQL code gives the XML data correctly to the webservice.
    At this moment my guess is that somewhere in the WSDL definition there is something that enables the encoding of the data. But I'm not sure.
    Any help is greatly appreciated.

  • How can I get a parameter back into a servlet invoked from an IMG tag ?

    I'm using a servlet to create several graphical plots per JSP i.e. per HTML page. Each graph is supposed to be different, according to a parameter which I want to pass back from my JSP. I'm getting several plots but they're all the same!
    I've tried setting an attribute in the session object before each IMG SRC= , but all I get is each plot the same! In fact, my debugging efforts show that the servlet is only called once despite 3 calls, each with a different session parameter value. I'm not sure the session parameter values are getting used properly.
    I just can't find a way of getting a parameter back into my servlet which is invoked from the IMG tag (i.e. SRC= "servlet name").
    Can anyone tell me the best way to pass a parameter back into a servlet which is invoked from an IMG tag? Can the request object be used? I can't, at the moment, see how it could be used?
    I'll certainly be very grateful if anyone can help with this - could even be useful for others as well!

    You said that, "by moving a copy of Mobile Docs back to the Library, from which I had moved it, my documents reapperared in Cloud." That says that you actually moved it. Obviously, I can't tell exactly what you did, but it sounds like you may have thought you were just putting it in the sidebar, but you actually put it somewhere else. The sidebar is not a location to put things, just a way to create a quick shortcut to access a file or folder, so you can't put things "back" from there.

  • Scrip Error when Action invoked from Bridge Image Processor

    I am running Photoshop CC and while I can create a new simple Action and execute it successfully, if the same Action is invoked from the Image processor in Bridge, the Action fails witha script error and messaeg "Sorry, I could not proecess the following file: xxxxxxxxxxxx"  In CS6 this used to be related to History entry size  but it is not the same in CC.  I can execute other actions but NOT the one I just created, no matter how simple it is.  Help! 

    After renew settings in preferences the basic set from PS is active. Go trough it and look around what you can use, explore it.
    Most important is scratch disk setting, ammount of RAM and I find it useful to change the cursor setting to the last checkboxes.
    Read the manual that came with your copy and or try one of the thousands tutorials that are available either free or for sale. There are very good DVD's that shows you the screen from the teacher on your own screen and so you can see what he or she does. Total Training is a good start but there are others.
    start here and find your way: http://www.adobe.com/training/

  • Adapter Module is not Invoking

    Hi
    I have done one adapter module and i have given that in Sender Communication Channel. I have written audit log as well. But its not invoking.I am not getting any thing on Audit Log. My Scenario is working normally. Actually i have to get Host name at destination side but i am not getting
    I ave created on jar file. I have extrancted that jar file and i found the following files
    <javafile>.class
    <javafile>.java
    ejb-j2ee-engine.xml
    ejb-jar.xml
    but i have extract other in built adapter module jar file their i found manifest.mf apart from above mention files.
    I have create the jar files using nwds version 7.0
    My Adapter module is not working. I have done everything fine.Can anyone tell me the solution
    Best Regards
    Ravi Shankar B
    Message was edited by:
            RaviShankar B

    Hi,
    Ur module name shud b like this
    localejbs/<yourEJBClassName>
    If you specify an incorrect or non-existing module name, it is simply ignored.
    Check the following:
    1. Your stateless session bean should implement SessionBean and Module.
    2. The bean should have the following method
        public ModuleData process()
    Try to create a file in XI Server directory from your adapter module code and this way check whether your module is called or not.
    <i>[Reward if helpful]</i>
    Regards,
    Prateek

  • DVD Player encountered an error it could not recover from

    When I try to play a disk that has been burned on a VCR/DVD combo machine, I very often get an error message that says:
    "DVD Player encountered an error it could not recover from
    There was an error reading from disc. It might be scratched or dirty. [-36]"
    and then it quits. Sometimes I have been able to play a disc, after several tries, as it errors later and later, but also sometimes not.
    PowerBook G4   Mac OS X (10.3.9)   Processor: 1.25 GHz PowerPC G4; Memory: 512 MB SDRAM

    When the player quit yesterday one time it brought up the report to Apple window, so I got the error code. Here it is:
    Date/Time: 2007-04-05 17:23:45 -0500
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: DVD Player
    Path: /Applications/DVD Player.app/Contents/MacOS/DVD Player
    Version: 4.0 (4.0)
    PID: 603
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0xf47c0800
    Thread 0 Crashed:
    0 <<00000000>> 0xf47c0800 0 + 0xf47c0800
    1 com.apple.DVDPlayer 0x0003f8c4 0x1000 + 0x3e8c4
    2 com.apple.CoreFoundation 0x901c45f8 __CFRunLoopDoTimer + 0xf4
    3 com.apple.CoreFoundation 0x901c1958 __CFRunLoopRun + 0x5c8
    4 com.apple.CoreFoundation 0x901c5e6c CFRunLoopRunSpecific + 0x148
    5 com.apple.HIToolbox 0x92885f60 RunCurrentEventLoopInMode + 0xac
    6 com.apple.HIToolbox 0x9288c6c8 ReceiveNextEventCommon + 0x17c
    7 com.apple.HIToolbox 0x928ae1a0 AcquireNextEventInMode + 0x48
    8 com.apple.HIToolbox 0x928e2514 _TrackMouseLocationReturningEvent + 0x120
    9 com.apple.HIToolbox 0x9292dd28 _ZN6HIView18BasicTrackInternalERK7CGPointmsPFvP16OpaqueControlRefsEhPK10GlyphSt atePm + 0x258
    10 com.apple.HIToolbox 0x92916928 _ZN6HIView9TrackSelfEP14OpaqueEventRefPs + 0x1d8
    11 com.apple.HIToolbox 0x92884958 _ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 0x828
    12 com.apple.HIToolbox 0x92881fa0 DispatchEventToHandlers + 0x150
    13 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    14 com.apple.HIToolbox 0x92886694 SendEventToEventTargetWithOptions + 0x28
    15 com.apple.HIToolbox 0x9291fa2c _Z19SendControlDefTrackP6HIViewRK7CGPointPmPFvP16OpaqueControlRefsEPs + 0xdc
    16 com.apple.HIToolbox 0x92945308 _ZN6HIView13ClickInternalERK7CGPointmPFvP16OpaqueControlRefsEb + 0x5c
    17 com.apple.HIToolbox 0x9294b05c _ZN6HIView9ClickSelfEP14OpaqueEventRef + 0x124
    18 com.apple.HIToolbox 0x92885944 _ZN6HIView12EventHandlerEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv + 0x1814
    19 com.apple.HIToolbox 0x92881fa0 DispatchEventToHandlers + 0x150
    20 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    21 com.apple.HIToolbox 0x928946bc SendEventToEventTarget + 0x28
    22 com.apple.HIToolbox 0x9294ae10 _ZN6HIView5ClickEP14OpaqueEventRef + 0x10c
    23 com.apple.HIToolbox 0x92999394 HIViewClick + 0x38
    24 com.apple.HIToolbox 0x92966a74 HandleClickAsHIView + 0x9c
    25 com.apple.HIToolbox 0x92934bd4 HandleWindowClick + 0x204
    26 com.apple.HIToolbox 0x92915f40 HandleMouseEvent + 0x1b8
    27 com.apple.HIToolbox 0x928d7c60 StandardWindowEventHandler + 0xa8
    28 com.apple.HIToolbox 0x92881fa0 DispatchEventToHandlers + 0x150
    29 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    30 com.apple.HIToolbox 0x928946bc SendEventToEventTarget + 0x28
    31 com.apple.HIToolbox 0x928a2d3c _Z25HandleMouseEventForWindowP15OpaqueWindowPtrP14OpaqueEventReft + 0x144
    32 com.apple.HIToolbox 0x929c3524 _Z16HandleMouseEventP14OpaqueEventRef + 0x170
    33 com.apple.HIToolbox 0x92892c5c _Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRefP v + 0x1e8
    34 com.apple.HIToolbox 0x9288205c DispatchEventToHandlers + 0x20c
    35 com.apple.HIToolbox 0x92882214 SendEventToEventTargetInternal + 0x174
    36 com.apple.HIToolbox 0x928946bc SendEventToEventTarget + 0x28
    37 com.apple.HIToolbox 0x928985d8 ToolboxEventDispatcher + 0x5c
    38 com.apple.HIToolbox 0x928b57e4 HLTBEventDispatcher + 0x10
    39 com.apple.HIToolbox 0x928ab680 RunApplicationEventLoop + 0x98
    40 com.apple.DVDPlayer 0x0005b104 0x1000 + 0x5a104
    41 com.apple.DVDPlayer 0x00013a4c 0x1000 + 0x12a4c
    42 com.apple.DVDPlayer 0x00013a00 0x1000 + 0x12a00
    43 com.apple.DVDPlayer 0x000097c0 0x1000 + 0x87c0
    44 com.apple.DVDPlayer 0x00009634 0x1000 + 0x8634
    Thread 1:
    0 libSystem.B.dylib 0x90018e18 semaphoretimedwait_signaltrap + 0x8
    1 libSystem.B.dylib 0x9000e9d4 pthread_condwait + 0x268
    2 com.apple.dvdplayback 0x8a70ec14 DVDWakeUp + 0x35874
    3 com.apple.dvdplayback 0x8a70cc94 DVDWakeUp + 0x338f4
    4 com.apple.dvdplayback 0x8a70efb4 DVDWakeUp + 0x35c14
    5 com.apple.dvdplayback 0x8a6cfeb8 dyldstub_bindinghelper + 0x8c6a8
    6 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    Thread 2:
    0 libSystem.B.dylib 0x90007878 machmsgtrap + 0x8
    1 libSystem.B.dylib 0x900073f8 mach_msg + 0x38
    2 com.apple.CoreFoundation 0x901c16e0 __CFRunLoopRun + 0x350
    3 com.apple.CoreFoundation 0x901c5e6c CFRunLoopRunSpecific + 0x148
    4 com.apple.audio.CoreAudio 0x90762f80 _ZN10HALRunLoop9OwnThreadEPv + 0x104
    5 com.apple.audio.CoreAudio 0x907691e0 ZN9CAPThread5EntryEPS + 0x30
    6 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    Thread 3:
    0 libSystem.B.dylib 0x900147a8 semaphorewaittrap + 0x8
    1 com.apple.dvdplayback 0x8a6cf9f8 dyldstub_bindinghelper + 0x8c1e8
    2 com.apple.dvdplayback 0x8a6630a4 dyldstub_bindinghelper + 0x1f894
    3 com.apple.dvdplayback 0x8a68486c dyldstub_bindinghelper + 0x4105c
    4 com.apple.dvdplayback 0x8a6cfeb8 dyldstub_bindinghelper + 0x8c6a8
    5 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    Thread 4:
    0 libSystem.B.dylib 0x900147a8 semaphorewaittrap + 0x8
    1 com.apple.dvdplayback 0x8a6cf9f8 dyldstub_bindinghelper + 0x8c1e8
    2 com.apple.dvdplayback 0x8a664278 dyldstub_bindinghelper + 0x20a68
    3 com.apple.dvdplayback 0x8a6cfeb8 dyldstub_bindinghelper + 0x8c6a8
    4 libSystem.B.dylib 0x90024910 pthreadbody + 0x28
    PPC Thread State:
    srr0: 0xf47c0800 srr1: 0x4200f030 vrsave: 0x00000000
    cr: 0x24222422 xer: 0x20000002 lr: 0x0006de08 ctr: 0xf47c0803
    r0: 0x00000000 r1: 0xbfffe250 r2: 0x0004c57b r3: 0x018ff200
    r4: 0xbfffe294 r5: 0x00000054 r6: 0x00000000 r7: 0x448ac000
    r8: 0x444a0000 r9: 0xa28a8670 r10: 0x929455e4 r11: 0x44222224
    r12: 0xf47c0803 r13: 0x00000000 r14: 0x00000000 r15: 0x00000001
    r16: 0x00000000 r17: 0x00000000 r18: 0xa01c13a8 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x0040aa90 r23: 0x0040aba8
    r24: 0xa01c450c r25: 0xa00016b4 r26: 0x0000003f r27: 0x34ab91ed
    r28: 0x004e7390 r29: 0x018ff200 r30: 0x00000000 r31: 0x0045e460
    Binary Images Description:
    0x1000 - 0xf3fff com.apple.DVDPlayer 4.0 /Applications/DVD Player.app/Contents/MacOS/DVD Player
    0x76f000 - 0x770fff com.apple.aoa.halplugin 2.5.0 /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x427a000 - 0x431dfff com.apple.audio.units.Components 1.3.2 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x439f000 - 0x43dbfff com.apple.iSightAudio 6.5.2 /Library/Audio/Plug-Ins/HAL/iSightAudio.plugin/Contents/MacOS/iSightAudio
    0x4966000 - 0x4966fff com.apple.applescript.component 1.9.3 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x497c000 - 0x4982fff com.apple.ATIRadeon9700GA 1.3.42 (3.4.2) /System/Library/Extensions/ATIRadeon9700GA.plugin/Contents/MacOS/ATIRadeon9700G A
    0x498c000 - 0x498e7fa cssloader2Í PEF binary: cssloader2Í
    0x49c0000 - 0x4a18fff com.apple.AppleVADriver 2.3.13 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x4a83000 - 0x4adbfff com.apple.AppleVADriver 2.3.13 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x4b46000 - 0x4b9efff com.apple.AppleVADriver 2.3.13 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x8a640000 - 0x8a7a3fff com.apple.dvdplayback 4.1.5 (4150) /System/Library/Frameworks/DVDPlayback.framework/Versions/A/DVDPlayback
    0x8b6e0000 - 0x8b6e3fff com.apple.VSP.framework 2.1 /System/Library/PrivateFrameworks/VSP.framework/VSP
    0x8be9d000 - 0x8bea2fff com.apple.AppleVAFramework 2.3.13 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x8f000000 - 0x8f00afff com.apple.DVDFramework 3.3.0 /System/Library/PrivateFrameworks/DVD.framework/DVD
    0x8f060000 - 0x8f105fff com.apple.applescript 1.9.3 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026dfff com.apple.CoreFoundation 6.3.7 (299.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9071d000 - 0x9072cfff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x90733000 - 0x90740fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90750000 - 0x907b7fff com.apple.audio.CoreAudio 2.1.2 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908f5000 - 0x90912fff com.apple.audio.SoundManager 3.8 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.6 (500.58) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90c70000 - 0x90c8afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90cb0000 - 0x90d12fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8cfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90db0000 - 0x90dbbfff com.apple.opengl 1.3.8 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x910e0000 - 0x91133fff com.apple.bom 1.2.5 (63.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91141000 - 0x91141fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91251000 - 0x9125afff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x914ad000 - 0x9156ffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x915e0000 - 0x91699fff com.apple.QD 3.4.67 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916f0000 - 0x91728fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91890000 - 0x918aafff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x918d0000 - 0x918e0fff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x919e7000 - 0x91a1ffff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91b10000 - 0x91b10fff com.apple.audio.units.AudioUnit 1.3.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91bb0000 - 0x91d45fff com.apple.QuickTime 6.5.2 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92357fff com.apple.security 2.4 (179) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.2 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92859fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.7 (743.36) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93680000 - 0x93958fff com.apple.CoreGraphics 1.203.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93a50000 - 0x93a64fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93a6a000 - 0x93a84fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93c00000 - 0x93ca3fff com.apple.audio.toolbox.AudioToolbox 1.3.2 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93cec000 - 0x93d04fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x94580000 - 0x9458bfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94593000 - 0x9459ffff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x946ed000 - 0x94700fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94e0b000 - 0x94e1efff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a6dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96de0000 - 0x96df0fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96ee0000 - 0x96ee8fff libbsm.dylib /usr/lib/libbsm.dylib
    0x97345000 - 0x973b2fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib

  • ORACLE ADF 11g /JSF TO  serviet (Service method) not invoking

    Hi,
    ORACLE ADF 11g /JSF TO serviet (Service method) not invoking
    My project name is : ComplProject
    inside the project im having 1 jsp say x.jsp
    work environment : (oracleADF 11g) jdev11 and weblogic server 10.3
    in x.jsp im displaying 1 go link -> when ever we click on GO link it should go to ComplServlet.java
    i tried like,
    FacesContext.getCurrentInstance().getExternalContext().redirect("/servlet/ComplServlet");
    the "ComplServlet" is an URL pattern in web.xml which points to servlet.
    but not working
    i pointed to faces-config.xml also , not working
    i tried to forward like
    FacesContext context = FacesContext.getCurrentInstance();
    ServletContext sContext = (ServletContext)context.getExternalContext().getContext();
    ServletRequest request = (ServletRequest)context.getExternalContext().getRequest();
    System.out.println("third line...............");
    HttpServletResponse response = (HttpServletResponse)context.getExternalContext().getResponse();
    response.sendRedirect("/servlet/ViewDocument");
    sContext.getRequestDispatcher("/servlet/ViewDocument").include(request, response);
    brief
    (from jsf page) after clicking on GO LINK i need to redirect or control should go to servlet ->service method
    thanks in advance
    regards,
    sandeep

    Hi,
    i tried like,
    FacesContext.getCurrentInstance().getExternalContext().redirect("/servlet/ComplServlet");
    the "ComplServlet" is an URL pattern in web.xml which points to servlet.
    but not workingUse like following.
        public HttpServletRequest getServletRequest() {
            return (HttpServletRequest)facesContext.getExternalContext().getRequest();
        public redirect(String url){
           getServletRequest().sendRedirect(getServletRequest().getContextPath() + "/servlet/ComplServlet");
        }If you are using golink as frank suggested then use it like this.
    <af:goLink text="ComplServlet" destination="/servlet/ComplServlet"/>no need of using context when using goLink,
    Regards,
    Santosh.

  • Searching LOV is not invoking any method

    Hello JHeadstart team:
    I have the following behaviour with my LOVs generated from JHeadstart (10.1.2)
    The "Go" button seems to not invoke anything, just give back the same page, not doing any filter.
    By watching the log window in JDeveloper, seems like no event is invoked.
    Also, I don't see in the generated lov.uix page an event called lovFilter under handlers (should I have one?)
    When the page is invoked from the parent page, I have the following log, and the advancedSearch is being invoked giving me the filter, if I typed something before clicking the flashlight:
    12:01:56 DEBUG (JhsActionServlet) -Setting current HttpServletRequest on jhsUserRoles wrapper object on session to allow EL access to request.isUserInRolefunction
    12:01:56 DEBUG (JhsActionServlet) -Request class: com.evermind.server.http.EvermindHttpServletRequest
    12:01:56 DEBUG (JhsActionServlet) -Request URI: /BugTracker-ViewController-context-root/LovUpdProcess2.do
    12:01:56 DEBUG (JhsActionServlet) -Request Character Encoding: windows-1252
    12:01:56 DEBUG (JhsActionServlet) -Parameter baseUIModel: MeineFMUIModel
    12:01:56 DEBUG (JhsActionServlet) -Parameter searchText: <Unbekannt>
    12:01:56 DEBUG (JhsActionServlet) -Parameter multiSelect: false
    12:01:56 DEBUG (JhsActionServlet) -Parameter event: lovFilter
    12:01:56 DEBUG (JhsActionServlet) -Parameter lovUsage: form
    12:01:56 DEBUG (JhsActionServlet) -Parameter searchAttribute:
    12:01:56 DEBUG (JhsActionServlet) -Parameter contextURI: /BugTracker-ViewController-context-root
    12:01:56 DEBUG (JhsActionServlet) -Parameter pageTimeStamp: ignore
    12:01:56 DEBUG (JhsActionServlet) -Parameter source: VB_MeineFMProzess
    12:01:56 DEBUG (JhsActionServlet) -Parameter enc: windows-1252
    12:01:56 DEBUG (JhsActionServlet) -Parameter configName: BaseUIPBCfg1
    12:01:56 DEBUG (JhsDataAction) -Executing action /LovUpdProcess2
    12:01:56 DEBUG (JhsDataAction) -MultiSelect stored on session Context with value false
    12:01:56 DEBUG (JhsDataAction) -lastIssuedPageTimeStamp NOT updated because pageTimeStamp parameter has value 'ignore'
    12:01:56 DEBUG (JhsDataAction) -Found existing searchBean for UpdProcess2UIModel
    12:01:56 DEBUG (JhsDataAction) -Stored searchBean for UpdProcess2UIModel on request
    12:01:56 DEBUG (JhsDataAction) -No commit event in request and multiRowUpdateEvent request param not set, multi-row update NOT executed
    12:01:56 DEBUG (JhsDataAction) -executing onLovFilter
    12:01:56 DEBUG (JhsDataAction) -Lov icon clicked, clear searchText in searchBean
    12:01:56 DEBUG (JhsDataAction) -executing onQuickSearch
    12:01:56 DEBUG (JhsDataAction) -Populating bean: searchBean
    12:01:56 DEBUG (JhsApplicationModuleImpl) -executing advancedSearch for ProzessList
    12:01:56 DEBUG (JhsDataAction) -Storing table binding factory under key jhsTableBindings on request
    12:01:56 DEBUG (JhsDataAction) -Forward set by parameter property returned: /WEB-INF/page/LovUpdProcess2.uix
    But nothing happens when clicking "Go". Is it a bug? Do I have any workaround?

    Here goes my workaround. JHeadstart Team, please check if what I'm doing is right. If yes, I believe this is an important correction for future releases:
    Reason:
    The LOV page generated has in the <listOfValues> tag the attribute searchAreaMode="filter".
    The onLovFilter event has the code:
    String searchAreaMode = request.getParameter(SEARCH_AREA_MODE);
    if ("advanced".equals(searchAreaMode))
    onAdvancedSearch(daContext);
    else if ("simple".equals(searchAreaMode))
    onQuickSearch(daContext);
    else
    // if we get here, we are not yet in the LOV page, the user
    // has invoked the page through clicking on the lov icon.
    // we must clear the search text so it is not displayed as search
    // criterium in the lov (searchAttribute is already empty when
    // clicking the lov icon)
    // And onQuickSearch should only execute the query if iterator
    // is not inf find mode. To signal to the onQuickSearch method that
    // this check is needed and to clear the search text, we set a
    // request attribute
    request.setAttribute(LOV_CHECK_FIND_MODE, "true");
    mLog.debug("Lov icon clicked, clear searchText in searchBean");
    onQuickSearch(daContext);
    But this code is setting the LOV_CHECK_FIND_MODE to true when searchArea = "filter", making the onQuickSearch event to set the searchText to null
    I overriden the whole event adding also the
    else if ("filter".equals(searchAreaMode))
    onQuickSearch(daContext);
    and now is working fine.
    In my previous post I mentioned that also the attribute was wrong, but this was my mistake in the ApplicationStructure file.

Maybe you are looking for