Where to set SET_MAX_TIME property in BPEL?

I am writing a simple synchronous service in my jdeveloper. i want to change the max waiting time property(default 45 sec) to 2 min. where can i set this?

I'm supposing you are talking about 11g version.
You can set the SyncMaxWaitTime parameter in MBean Browser, from Enterprise Manager.
Click with the right mouse button on soa-infra > SOA Administration > BPEL Properties
In this page follow the link at the page botton to open More BPEL Configuration Properties, to open the MBean browser filtering by oracle.as.soainfra.config:name=bpel,*
In the right pane you will find the SyncMaxWaitTime  property.
Please have a look on this page:http://docs.oracle.com/cd/E15523_01/integration.1111/e10224/bp_sync.htm#BABCAGIA

Similar Messages

  • Revision property in bpel.xml file in jar

    Hi!
    I've been trying to set revision property for my BPEL process in JDeveloper but had no success. Even if I set this property in bpel.xml file like this:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase revision="1.0">
    </BPELSuitcase>This property is not set in bpel.xml file in jar file after the build, but it is composed of date, time and build number.
    I can change this property by renaming jar file to zip, unpack, change the property in bpel.xml, pack back to zip and rename back to jar. This way the deployed version is 1.0 as I want it to be.
    Isn't there a way to set this in JDeveloper while developing the process?
    Thanks.
    BB

    Hi Dietrich!
    Thanks for your help. I did what you suggested but had to provide some more property values in build.properties:
    admin.user
    admin.password
    http.hostname and
    http.port
    Without this I couldn't make the build.
    But I don't like this solution, the admin.password is now in clear-text in this file plus I can't use the same jar file for our development server, test server and then production server.
    Is there another way just to set revision property and leave others default?
    BB

  • How  to Set JMS property and Read JMS property in BPEL using JMS adapter

    Does any one know how to set or read more than one JMS property in BPEL using JMS adapter. My queue server is Oracle JMS server.
    Any help and sample is well appreciated

    Hi Van
    I have noted that only the attribute "type" is missing. It seems that when you create a "string" property, the attribute "type" is droped from the XML. If you use another type (as "integer" or "double") it stays there.
    If you try to read your properties, except for the "type" attribute, you should be successful, as I am. If you need, please tell me your email, I can send you my code.
    Source Code:
    in ASSIGN activity (process which SENDS the JMS message):
    <assign name="TESTES">
    <copy>
         <from expression="'string'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[1]/@type"/>
    </copy>
    <copy>
         <from expression="'name'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[1]/@name"/>
    </copy>
    <copy>
         <from expression="'value1'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[1]/@value"/>
    </copy>
    <bpelx:append>
         <bpelx:from>
         <Property name="" type="" value=""
              xmlns="http://xmlns.oracle.com/pcbpel/adapter/jms/"/>
         </bpelx:from>
         <bpelx:to variable="HeaderJms" part="outboundHeader"
              query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties"/>
    </bpelx:append>
    <copy>
         <from expression="'string'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[2]/@type"/>
    </copy>
    <copy>
         <from expression="'name2'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[2]/@name"/>
    </copy>
    <copy>
         <from expression="'value2'"/>
         <to variable="HeaderJms" part="outboundHeader"
         query="/ns5:JMSOutboundHeadersAndProperties/ns5:JMSOutboundProperties/ns5:Property[2]/@value"/>
    </copy>
    </assign>
    in ASSIGN activity (process which READS the JMS message)
    <assign name="Assign_1">
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[10]/@name"/>
    <to variable="temp"/>
    </copy>
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[10]/@value"/>
    <to variable="temp"/>
    </copy>
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[12]/@name"/>
    <to variable="temp"/>
    </copy>
    <copy>
    <from variable="Variable_1" part="inboundHeader"
    query="/ns3:JMSInboundHeadersAndProperties/ns3:JMSInboundProperties/ns3:Property[12]/@value"/>
    <to variable="temp"/>
    </copy>
    </assign>
    Note that I do not try to read the "type" attribute, otherwise it will fail.
    Here is the JMS Header Message received:
    <inboundHeader>
    <JMSInboundHeadersAndProperties xmlns="http://xmlns.oracle.com/pcbpel/adapter/jms/">
    <JMSInboundHeaders>
    <JMSCorrelationID>
    bpel://localhost/pi_lms-c001e/BpelPiAtualizacaoC001E~1.0/3200025-BpInv0-BpSeq1.6-2
    </JMSCorrelationID>
    <JMSDeliveryMode>2</JMSDeliveryMode>
    <JMSExpiration>0</JMSExpiration>
    <JMSMessageID>ID:467DFA1FA1ED459EBF37F51F596C3F12</JMSMessageID>
    <JMSPriority>4</JMSPriority>
    <JMSRedelivered>false</JMSRedelivered>
    <JMSType>com.mercurio.lms.integration.c001eip.c001EIntegrationPoint</JMSType>
    <JMSTimestamp>1201552046253</JMSTimestamp>
    </JMSInboundHeaders>
    - <JMSInboundProperties>
    <Property name="JMSXDeliveryCount" type="integer" value="1"/>
    <Property name="JMSXRecvTimestamp" type="long" value="1201552046698"/>
    <Property name="JMSXUserID" value="lms_dev_int_v1_user"/>
    <Property name="JMS_OracleDeliveryMode" value="2"/>
    <Property name="JMS_OracleTimestamp" type="long" value="1201552046253"/>
    <Property name="JMS_OracleDelay" type="long" value="0"/>
    <Property name="JMSXState" type="integer" value="0"/>
    <Property name="IAS_VERSION" value="10.1.3"/>
    <Property name="JMS_OracleDeliveryMode" value="2"/>
    <Property name="name" value="value1"/> ("type" attribute was droped!!!)
    <Property name="JMS_OracleTimestamp" type="long" value="1201552046253"/>
    <Property name="name2" value="value2"/> ("type" attribute was droped!!!)
    </JMSInboundProperties>
    </JMSInboundHeadersAndProperties>
    </inboundHeader>
    Regards
    Marcelo

  • DspMaxRequestDepth property in bpel 10.1.3.5

    Hi
    Can anyone please let me know how and where do I configure dspMaxRequestDepth property in bpel 10.1.3.5 version. In BPEL 10.1.3.3 this property is set at the domain level - Domain configuration.
    Thanks
    Edited by: 869271 on May 10, 2013 12:44 PM

    You can generate a plan for each instance.
    For example in build.xml add something like this:
    <target name="Generate_Deployment_Plans"
            depends="validateTask, compile, Generate_DEV, Generate_TEST, Generate_PROD"/>
        <target name="Generate_DEV">
            <generateplan planfile="DPlan_DEV.xml"
               verbose="true" overwrite="false" descfile="${process.dir}/bpel/bpel.xml"/>
        </target>
        <target name="Generate_TEST">
            <generateplan planfile="DPlan_TEST.xml"
               verbose="true" overwrite="false" descfile="${process.dir}/bpel/bpel.xml"/>
        </target>
        <target name="Generate_PROD">
            <generateplan planfile="DPlan_PROD.xml"
               verbose="true" overwrite="false" descfile="${process.dir}/bpel/bpel.xml"/>
        </target>Not sure if this is what you are asking for though.

  • Windows installer sets VersionNT property to 603

    Hello,
    OS: Windows 10 Technical Preview
    I've got msi package, which has LaunchConditions based on VersionNT(64) property, but installer sets this property to 603 (corresponding to Win8.1\2012r2). I wrote custom action, where I call VerifyVersionInfo function, and on 9879 build it worked,
    but starting from 9926 It doesn't. It seems that VerifyVersionInfo now requires proper GUID in manifest file, that is not possible for binary custom action. What is the proper way to detect Windows 10 version in msi package?
    I tried to ask this question at Windows Insider Program, but i was suggested to ask it here.
    Thank you.

    Hello,
    OS: Windows 10 Technical Preview
    I've got msi package, which has LaunchConditions based on VersionNT(64) property, but installer sets this property to 603 (corresponding to Win8.1\2012r2). I wrote custom action, where I call VerifyVersionInfo function, and on 9879 build it worked, but starting
    from 9926 It doesn't. It seems that VerifyVersionInfo now requires proper GUID in manifest file, that is not possible for binary custom action. What is the proper way to detect Windows 10 version in msi package?
    I tried to ask this question at Windows Insider Program, but i was suggested to ask it here.
    Thank you.
    Hello,
    1. Windows 10 has not been official released that there is not a solid version for us to detect, and currently issues related to windows 10 are not supported, you could consider submitting this feedback with the
    Give us feedback part shared in the following document.
    http://windows.microsoft.com/en-us/windows/preview-updates-feedback-pc
    2. It's not clear which publishment you are using, if possible, you could share the detailed information like the tool to publish your project and the configuration in that feedback.
    Thanks for your understanding.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Access composite level property in BPEL

    Hi,
       I have a composite level "auditLevel" property defined in composite.xml as given below. Can anyone suggest a way to access that property in BPEL process ?
    <composite name="SetInstanceTitle"
                   revision="1.0"
                   label="2015-04-12_18-52-43_897"
                   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/CompositeSamples/SetInstanceTitle/SetInstanceTitleWithCondition"
                  location="SetInstanceTitleWithCondition.wsdl" importType="wsdl"/>
          <service name="setinstancetitlewithcondition_client_ep"
                   ui:wsdlLocation="SetInstanceTitleWithCondition.wsdl">
            <interface.wsdl interface="http://xmlns.oracle.com/CompositeSamples/SetInstanceTitle/SetInstanceTitleWithCondition#wsdl.interface(SetInstanceTitleWithCondition)"/>
            <binding.ws port="http://xmlns.oracle.com/CompositeSamples/SetInstanceTitle/SetInstanceTitleWithCondition#wsdl.endpoint(setinstancetitlewithcondition_client_ep/SetInstanceTitleWithCondition_pt)"/>
          </service>
         <property name="auditLevel" many="false">Off</property>
      <component name="SetInstanceTitleWithCondition" version="1.1">
        <implementation.bpel src="SetInstanceTitleWithCondition.bpel"/>
       </component>
    Thanks in advance,
    Saba

    Hi AnatoliAtanasov,
      Thank you for your reply.
    My requirement is to set composite instance title by retrieving SOA Audit Level settings in BPEL process.
    Need to set composite instance title If "auditLevel" is not "Off" or "Inherit".
    If I use this composite level property "<property name="auditLevel" many="false">Off</property>", it is getting reflected in EM Console. Also this property value get change if do auditLevel change from EM console.
    So I thought, I can use this property to control composite instance title setting in BPEL process dynamically.
    Please advise me any possible solution to achieve my requirement.
    Thanks in advance,
    Saba

  • Setting the property "Cache Level" of the pcd object to "None".

    Hi all
    I have an EP 6.0 on NW04 SPS 17. I need to solve a problem and found note 960975. My question is, how could we change the setting the property "Cache Level" of the pcd object to "None"? Where should I go? Is it on the NWA, Visual Admin, Configtool or somewhere else?
    Many thanks before.
    Regards
    Agoes
    Message was edited by:
            Agoes Boedi Poerwanto

    Hi Agoes,
    By using the tool Support Desk -> Portal Content Directory -> PCD Administration you can do this. Please note that this tool should only be used in debugging situations.
    There is a new section "Release a Unit from the cache cluster wide" in this tool. With this new functionality, you can remove an object from the cache on all nodes in the cluster. If the object is still in use, it will be reread immediately from the database
    Releasing the entire PCD cache can severely affect performance. Hence, if there are inconsistencies suspected with a single object, e.g. a role or an iview, the new section "Release a Unit from the cache cluster wide" can be used to evict the given object from the cache on all nodes in the cluster.
    Cheers,
    shyam

  • Exception: cannot set unrecognized property:

    Hi guys,
    I am doing a PoC of Connection between BPEL PM 10.1.3.4 running over WLS 9.2 SP3 calling a HelloWorld WebService (a very simple one without authentication or security) that is deployed over a WLS 10.3 server.
    The problem is when I execute the BPEL process and it invokes the partner link that pointos to my WebService I get an exception of that type below.
    Exception: cannot set unrecognized property: disable.must.understand on a Call object.
    I looked inside the logs of AdminServer, ManagedServer and Domain Server and the output files and nothing new came in from them.
    Any ideas? Please...
    The sourcecode of this PoC is here
    http://download.yousendit.com/Y1RyeW55VnN0TW14dnc9PQ
    receiveInput
    [2009/09/25 11:29:41] Received "inputVariable" call from partner "client" More...
    Assign_1
    [2009/09/25 11:29:41] Updated variable "Invoke_1_getGreeting_InputVariable" More...
    Invoke_1 (faulted)
    [2009/09/25 11:29:41] Faulted while invoking operation "getGreeting" on provider "HelloWorldServiceDefinitions".menos
    Daniel
    ORABPEL-00000
    Exception not handled by the Collaxa Cube system.
    An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "cannot set unrecognized property: disable.must.understand on a Call object
         at oracle.j2ee.ws.client.dii.BasicCall.setProperty(BasicCall.java:490)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.setCallContext(WSIFOperation_JaxRpc.java:2769)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.invokeRequestResponseOperation(WSIFOperation_JaxRpc.java:1524)
         at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.executeRequestResponseOperation(WSIFOperation_JaxRpc.java:1210)
         at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:478)
         at com.collaxa.cube.ws.WSInvocationManager.invoke2(WSInvocationManager.java:437)
         at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:251)
         at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:826)
         at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:402)
         at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:199)
         at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3698)
         at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1655)
         at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:217)
         at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:314)
         at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5765)
         at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1087)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:133)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:162)
         at com.collaxa.cube.engine.ejb.impl.CubeEngineBean_2rw8jy_ELOImpl.syncCreateAndInvoke(CubeEngineBean_2rw8jy_ELOImpl.java:75)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:547)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:464)
         at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:133)
         at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:95)
         at com.collaxa.cube.ejb.impl.DeliveryBean_uhics8_EOImpl.request(DeliveryBean_uhics8_EOImpl.java:279)
         at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:106)
         at jsp_servlet.__ngdoinitiate_ws._jspService(__ngdoinitiate_ws.java:517)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         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:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:126)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:531)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:459)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:159)
         at jsp_servlet.__displayprocess._jspService(__displayprocess.java:1851)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         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:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:126)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:531)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:266)
         at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:222)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3242)
         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:2010)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    Exception: cannot set unrecognized property: disable.must.understand on a Call object
    Handled As: com.collaxa.cube.CubeException
    [2009/09/25 11:29:41] There is a system exception while performing the BPEL instance, the reason is "cannot set unrecognized property: disable.must.understand on a Call object". Please check the error log file for more infromation.
    Edited by: Daniel Ferreira Castro on 25/09/2009 12:20

    I think you took my comment out of context. I was referring to deployments on developer PCs to have a standalone version to play with. This is not common as it requires more PC power which not many people have.
    10g and 11g are different products. In 11g you are correct SOA Suite is installed on WLS, as there is no 11g oc4j. So in that respect I would agree that WLS as the app server is mainstream.
    In 10g I would have to disagree. It was a message that Oracle had to say that SOA Suite can be deployed on WLS and this was our stragic app server going forward. It would be a customer decision as to what path they would take. From my experience not many did this because the WLS version was 9.2 not the 10.3 which OSB ran on. There were limited customers to provide references on this architecture. Typically what we saw if customer were BEA customers they went down this path otherwise they went with oc4j. Oracle sold WebLogic Suite which included oc4j so from a licensing perspective they were covered, and technically they could run any Oracle product. For new licenses you needed WebLogic Suite as part of SOA Suite this does not mean that people deployed SOA Suite on WLS in 10g.
    10.1.3.5 certification with WLS was going to solve the version issue as it is going to be on 10.3, but 10.1.3.5 was release after 11g and the WLS certifications still hasn't been released.
    The 10g WLS deployment was never going to be like that in 11g so WLS customers would need the same kind of architectual changes and oc4j customer would have. The differnce being ops people would not need to learn oc4j so there would be less need for training.
    But I would like to clarify my comment was for stand alone deployments on developer PCs, this is not common to have the WLS deployment.
    cheers
    James

  • Get value from table record and set Disabled property...

    Hi! I have table in my JSPX page. I search for records and then press on one of the records with right click, see: http://my.jetscreenshot.com/2677/20120203-fas1-30kb
    I set disabled property like this of my commandMenuItem:
    #{row.GenResGrupa != 'true'}But as You can see from my picture above, the disabled property do not work. Where I am wrong with my code:
    <af:commandMenuItem text="#{sampleBundle.pases}"
                                                  id="commandMenuItem1"
                                                  action="adfMenu_pasesDati"
                                                  actionListener="#{bindings.setCurrentRowWithKeyValue.execute}"
                                                  disabled="#{row.GenResGrupa != 'true'}"/> Please correct me! If You need some other information, please let me know.
    Best regards, Debuger!

    Dear fedor! Popup is in facet contextMenu. contentDelivery="lazyUncached" for my popup:
    <af:popup id="p1" contentDelivery="lazyUncached">
                            <af:menu text="menu 1" id="menu1">
                              <af:commandMenuItem text="#{sampleBundle.pases}"
                                                  id="commandMenuItem1"
                                                  action="adfMenu_pasesDati"
                                                  actionListener="#{bindings.setCurrentRowWithKeyValue.execute}"
                                                  disabled="#{row.bindings.GenResGrupa.inputValue != 'true'}"/>
                            </af:menu>
                          </af:popup>In my pageDef I have this code:
    <bindings>
        <tree IterBinding="LVAIMeklesanaIterator" id="LVAIMeklesana">
          <nodeDefinition DefName="kokaugi.model.view.LVAIMeklesana"
                          Name="LVAIMeklesana0">
            <AttrNames>
              <Item Value="Accename"/>
              <Item Value="LvaiKolekcijaPk"/>
              <Item Value="Accenumb"/>
              <Item Value="AvsGrupa"/>
              <Item Value="Cropname"/>
              <Item Value="EkspGrupa"/>
              <Item Value="GenResGrupa"/>
              <Item Value="Genus"/>
              <Item Value="Species"/>
              <Item Value="Sinonims"/>
            </AttrNames>
          </nodeDefinition>
        </tree>
        <action IterBinding="LVAIKolekcijaDatiIterator"
                id="setCurrentRowWithKeyValue"
                InstanceName="KokaugiModuleDataControl.LVAIKolekcijaDati"
                DataControl="KokaugiModuleDataControl" RequiresUpdateModel="false"
                Action="setCurrentRowWithKeyValue">
          <NamedData NDName="rowKey" NDValue="#{row.LvaiKolekcijaPk}"
                     NDType="java.lang.String"/>
        </action>
      </bindings>And disabled property is like this:
    disabled="#{row.bindings.GenResGrupa.inputValue != 'true'}"But it is still do not working. I am wrong somewhere? Maybe the only way to correct my problem is like Hohn said?
    Best regards, Debuger!

  • Setting a property of a Media-instance crashes the browser

    Hello,
    I want to change some properties of a javaFx-Script via javascript.
    All works, but when I want to set the Property "source" concatenating with "{FX.getProperty("javafx.application.codebase")}", the JVM crashes:
    This is the relevant snippet from my xhtml-page:
    <script type="text/javascript">
    function setSource(source) {
        var app = document.getElementById("myJFXApplet");
        app.script.source = source;
    </script>
    This is my JavaFX-Main.class, where the Stage-Instance exists:
    var codebase:String = "{FX.getProperty("javafx.application.codebase")}";
    var source:String = ""
    // This results the JVM-Crash: I only want that the source is concatenating with the codebase
    var source2:String = bind "{codebase}{source}"

    The reason it fails the first time is because there is no text in the string indicator to act upon. On the second and subsequent executions, if the text is left in the indicator, the property change will take effect. To test this, clear the indicator between each run, you will see that it does not set the colors as you desire.
    So, put the text into the indicator first, then change the properties. Attached is a modification of your vi.
    Tim
    Attachments:
    Setting_Substring_Colors_MOD.vi ‏35 KB

  • Setting a @property

    I have an app where when the detail view controller updates in my split view controller, I need to transfer the bar button item from the previous detail view controller to the new one. The code I am using to do this is broken up into two different methods as:
    Setter method for the @property (nonatomic, strong) UIBarButtonItem *splitViewBarButtonItem;
    - (void)setSplitViewBarButtonItem:(UIBarButtonItem *)splitViewBarButtonItem
        if (splitViewBarButtonItem != _splitViewBarButtonItem)
            [self handleSplitViewBarButtonItem:splitViewBarButtonItem];
    and a handler(which Im calling in viewDidLoad) method where the setting of the @property is really done.
    - (void)handleSplitViewBarButtonItem:(UIBarButtonItem *)splitViewBarButtonItem
        NSMutableArray *toolbarItems = [self.toolBar.items mutableCopy];
        if (_splitViewBarButtonItem) [toolbarItems removeObject:_splitViewBarButtonItem];
        if (splitViewBarButtonItem) [toolbarItems insertObject:splitViewBarButtonItem atIndex:0];
        self.toolBar.items = toolbarItems;
        _splitViewBarButtonItem = splitViewBarButtonItem;
    This all seems to work fine but what I can't understand is that why doesn't the setter alone(not making a handler) work if I coded it like(and instead called it in viewDidLoad):
    - (void) setSplitViewBarButtonItem:(UIBarButtonItem *)splitViewBarButtonItem
        if (splitViewBarButtonItem != _splitViewBarButtonItem)
            NSMutableArray *toolBarItems = [self.toolBar.items mutableCopy];
            if (_splitViewBarButtonItem) [toolBarItems removeObject:_splitViewBarButtonItem];
            if (splitViewBarButtonItem) [toolBarItems insertObject:splitViewBarButtonItem atIndex:0];
            self.toolBar.items = toolBarItems;
            _splitViewBarButtonItem = splitViewBarButtonItem;
    }// I'd like to know why this second way doesn't work.

    Please provide more details for this second way doesn't work.  I assume you are setting the property SplitViewBarButtonItem within viewDidLoad.  You should be able to step through the code and see what is going wrong.  For example, does the if (splitViewBarButtonItem != _splitViewBarButtonItem) test pass when expected?  Set a breakpoint inside the if.

  • Km api - set a property

    Hi all,
    I try to set a property (description) to a file present in km with this code:
    IPropertyName propertyName = new PropertyName("default", "description");
    IProperty property = new Property(propertyName, "test");
    tempResource.setProperty(property);
    but nothing change...
    where is error?
    where i can find namespace and property name to use?
    Thanks!
    Andrea

    Hi Andrea,
       Try to use this code: receive as parameter the folder and the user name. Assign this name as description for the folder.
       private void actualizarDescripcion(IResource folder, String nomuser) throws ResourceException {
                final String namespace = "http://sapportals.com/xmlns/cm";
                final String propiedad = "description";
                IPropertyName propertyname;
                propertyname = new PropertyName(namespace, propiedad);
                IProperty property = folder.getProperty(propertyname);
                if (property != null) {
                    String descripcion = property.getValueAsString();
                    IMutableProperty mutableProperty = property.getMutable();
                    mutableProperty.setStringValue(nomuser);
                    folder.setProperty(property);
                    logger.errorT("Propiedad modificada");
                else {
                    IProperty prop = new Property(propertyname, nomuser);
                    folder.setProperty(prop);
                    logger.errorT("Propiedad creada y modificada");
    Patricio.

  • Is their a way to set system property in weblogic console

    Hi WL USERS
    Is their a way to set system property in weblogic console ie (http://localhost:8080/console) ? if yes, can we access that property in code using System.getProperty()?
    Regards
    vishy

    Yes, It is Possible.
    Please check the Option-1). Mention in the Following Link: http://weblogic-wonders.com/weblogic/2010/03/26/nodemanager-based-managedservers-setting-mem_args/
    Here i tried to set a Custom Property "*-Duser.dir=E:/MyDirectory*" through the Admin Console.
    NOTE: Setting any Option like JAVA_OPTIONS/CLASSPATh etc through Admin Console will work only when you start your Servers using the NodeManager. It means when you start your ManagedServers through AdminConsole...or Using nodeManager based WLST scripts.
    Thanks
    Jay SenSharma
    http://weblogic-wonders.com/weblogic/ (WebLogic Wonders Are Here)

  • Set item property to false and true

    when i set item to false and then set item property to true. The item is displayed but its gray out and not enabled. Am i missing something
    Set_Item_Property('PUSH_BUTTON_SAVE',VISIBLE,PROPERTY_FALSE);
    and then
              Set_Item_Property('PUSH_BUTTON_SAVE',VISIBLE,PROPERTY_TRUE);

    Check the Forms online help on Set_Item_Property, near the bottom in the usage notes. Lots of things happen when you set visible to False:
    Setting DISPLAYED to False:
      sets the Enabled and Navigable item properties to False
      sets the Updateable item property to False
      sets the Update_Null item property to False
      sets the Required item property to False
      sets the Queryable item property to False
    So you may need to set more of them back to true in your code when you want to make it re-display.

  • How do I set ClientCredentials property to windows credentials?

    As per MSDN
    http://technet.microsoft.com/en-us/library/92a9678c-bc4f-4d7a-ba44-85989bfe27ca
    Building Applications Using the Reporting Web Service and the .NET Framework we have to set Credentials as below
    ReportingService2010 rs = new ReportingService2010();
    rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
    However, after creating the proxy I don't see proxy has Credentials property as MSDN says. The proxy has ClientCredentials property but it is not derived from ICredentials
    I'm using http://serverurl/ReportServer/ReportService2010.asmx
    How do I set ClientCredentials property to windows credentials in this case?

    But i dont see "Add web reference" option.
    Have you read the link I posted? "Add Service Reference" => button "Advanced" => "Add Web Reference"
    to check if the folder already exists
    Sure, with
    ReportingService2010.ListChildren
    Method
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

Maybe you are looking for

  • Why can't I reset the precision of my axis in a Waveform graph?

    I'd like to reset the precision of the axis on my Waveform Graph.  I can do this in other graphs but when I change it to a Waveform it doesn't like it.  Perhaps this is because time is on the x-axis? Anyway it comes up with the error, Invalid Propert

  • MacPro double mapping network drive

    Hi, I have two network drives (ordinary external HDDs connected to my Mac Mini Server) that my MacPro maps during startup. Since a few days it maps one of the volumes twice. I allready checked the network connections, reset SMC and P-RAM, repair perm

  • RemoteApp and Internet Explorer

    Hi, We have 8 or 9 apps being exposed via RemoteApp. One of the apps exports a file to a shared folder (on the same remoteapp server). We have to import this into our banking website. Of course the local browser can't see the shared folder thats on t

  • HELP!! SQL Server SP3 breaks JDBC driver connections

    Anybody ran into this problem? Just installed Sql Server 2k SP3 and all my jdbc calls fail. JDBC driver for Microsoft works find.

  • Ipod "Corrupted"

    My iPod is frozen on the "Do Not Disconnect Screen." When it finally registers on iTunes(it sometimes takes multiple tries) it gives me the pop up: "Itunes has detected an iPod that appears to be corrupted. You may need to restore this ipod before it