Monitor process on windows or unix environment

Could we monitor a process using windows or unix environment using OEM?

Look at the Program Resource Utilization, Program's Max/Min Process Count metrics, which are documented here, to see if they met your need.
http://docs.oracle.com/cd/E11857_01/em.111/e17018/host.htm#BABIBAHD
Regards,
- Loc

Similar Messages

  • Migration Windows to unix environment.

    Hi,
    we planning to convert our SAP Development Server from Windows
    to unix environment.
    In first step We planned to take System copy in our Development Server.
    While we executing the SAPINST file it terminates with error in
    Export_ABAP phase.
    SAP INST file Location
    ======================
    SAP ERP 2005 Support Release 2 > Additional Software Life-Cycle Tasks >
    System Copy > Oracle > Source System > Central System > Based on AS
    ABAP > Database Instance Export
    In the Phase 4 (Export Abap) the follwing message occurs
    "Your SAP System may be running.Stop the system and continue with data
    Unload".
    Hereby attached  log
    files.
    We are waiting for your reply.
    .Log file
    =======
    E:\usr\sap\D02\SYS\exe\nuc\NTAMD64\R3load.exe -e SAPSDIC.cmd -l SAPSDIC.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    (EXP) ERROR: there are incomplete incremental conversions
                 export not allowed
    E:\usr\sap\D02\SYS\exe\nuc\NTAMD64\R3load.exe: job finished with 1 error(s)
    E:\usr\sap\D02\SYS\exe\nuc\NTAMD64\R3load.exe: END OF LOG: 20090818170548
    Regards
    Senthil Kumar

    > we planning to convert our SAP Development Server from Windows
    > to unix environment.
    First info:
    Heterogeneous system migrations (changing database or operating system - or both) must be done by a certified migration consultant with special knowledge; if you do it yourself, you will loose support for problems in,  during and after the migration for the target system --> OSS support will be billed separately.
    See http://service.sap.com/osdbmigration
    --> FAQ
    > (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    > (EXP) ERROR: there are incomplete incremental conversions
    >              export not allowed
    I can think of several reasons for this problem:
    - This system was migrated recently to Unicode (using ICNV) and you have not done all delta conversions yet
    - You still have tables/indexes in your mass processing (transaction SE14)
    - you have inconsistencies between ABAP DDIC and database
    Markus

  • Monitor Processes on Windows 2000 or XP

    Can someone help? How do you monitor processes on a Windows platform. I would like to write my own application in java to monitor processes on windows 2000/XP. Where do I start? class Runnable or class Process?
    thanks
    Here's another post that relates to this.
    http://forum.java.sun.com/thread.jsp?forum=54&thread=386882&tstart=0&trange=15

    Definitely not Runnable. And Process is only going to do you any good if your Java class was the one that started those processes running. My guess is that isn't the case.
    Personally I wouldn't use Java to do what you are asking about. I am sure there are Windows APIs for that sort of thing, which you could readily use in a Microsoft-specific language, but those APIs haven't been made part of the Java API.

  • Migration BIEE repository from Windows to Unix

    Hi,
    has someone experience with migrating repository objects from a windows to Unix environment or vice versa? Are there any problems (different XML generated etc.)?
    Background: We are developing in a Windows environment but later we want to move to Unix. Until now no Unix server is available.
    Thanks,
    Marcus

    How is it at the GiantEagle (worked in Cranberry last year)?
    How exactly do you do a short-deck migration/promotion to UAT or PROD? How do you ensure that changes in the DAC make it into the UAT/PROD without killing the existing objects?
    Currently we have 3 env, DEV/INT/UAT/PROD and we're trying to write a policy manual to ensure that what goes on in DEV gets all the way into PROD without damaging INT, UAT or PROD.
    jrod.

  • Webutil usage on Windows and Unix clients - Host and Temp dir issues

    Hello,
    I am in the process of writing a Forms application which makes use of WebUtil to handle the uploading and downloading of files, as well as launching the files on the client PCs. The code below is my current 'Launch' program which works great in a Microsoft Windows environment. It gets the TEMP directory location, builds a file name, downloads the file to the TEMP directory and uses the Host command to launch the file.
    PROCEDURE Launch_DB IS
    l_directory varchar2(200) := client_win_api_environment.get_temp_directory(true);
    l_success boolean;
    BEGIN
    :file_block.full_file_name := l_directory || '\' || :file_block.file_name;
    l_success := webutil_file_transfer.DB_To_Client_with_progress
    (clientFile => :file_block.full_file_name
    ,tableName => 'FILES
    ,columnName => 'FILE_DATA'
    ,whereClause => 'ID = ' || :file_block.id
    ,progressTitle => 'Download from Database in progress'
    ,progressSubTitle=> 'Please wait'
    if l_success then
    WEBUTIL_HOST.NONBLOCKING('CMD /C "' || :file_block.full_file_name || '"');
    else
    exception
         when others then
         message('File download failed: '||sqlerrm);
    END;
    My problem is that I've just discovered that there's a new group of users that will want access to these forms, and they're using non-windows machines - mostly Solaris and Linux. As such, I have these problems:
    - " client_win_api_environment.get_temp_directory " is a Microsoft Windows specific function. Is there any way to determine a temporary storage area on a Unix machine?
    - " WEBUTIL_HOST.NONBLOCKING('CMD /C "' || :file_block.full_file_name || '"'); " - CMD is Microsoft Windows specific function. What should I do to launch a file from Unix? (Sorry, my Unix skills are pretty minimal).
    - I'm guessing that I'll need to determine the operating system so that I can use different methods to determine the TEMP dir, and to execute the HOST command. Assuming that Microsoft Windows and Unix variants are the only OS's that I need to provide access to, what is the best way to determine the client environment ( eg. IF UPPER(WebUtil_ClientInfo.Get_Operating_System) like '%WINDOWS%' THEN ... ELSE ... END IF; ) . I only have access to Windows XP for testing so I don't know what values "WebUtil_ClientInfo.Get_Operating_System" will return for any other OS.
    Thanks in advance for any assistance.
    Regards,
    Michael.

    Hi,
    as far as launching the file goes, if teh program that runs the file exist on teh local computer, you can use teh host command in webutil to access teh program and file. CMD is what you use to open teh command line on windows, but the host command is supposed to work on the UNIX client as well.
    For the temp directory, you have two options
    The short term option: Pass the temporary directory name as a user variable to Forms when starting the application. This can be user specific if adding this information to the URL using teh otherparams parameter
    The longterm option: Log a TAR with Oracle customer support to add a function to teh getClientInfo function that retruns the temporary directory for the authenticated user.
    Frank

  • Convert word into html in unix environment

    We are in the process of developing a coldfusion web
    application which allows the users to upload resumes in word
    format. Once the word document is uploaded we need to convert the
    word document into html on the fly. We know it can be accomplished
    using com object in the windows platform. But ours is a unix
    environment. We need some coldfusion coding which can convert the
    uploaded word file into html. Please take note coldfusion server
    runs on unix platform in our case.

    For step 3 call a 3rd party component such as Aspose.Words to
    handle converting test.doc to test.html. I'd recommend wrapping
    this logic inside a CFC.
    For example using Aspose.Words java object appears to be as
    easy as the Java code:
    Document doc = new Document(getMyDir() + "Document.doc");
    doc.save(getMyDir() + "Document.ConvertToHtml Out.html",
    SaveFormat.HTML);
    Note: I've used the .NET version of Aspose.Words, not the
    Java version, but I've been pleased with the product.
    Aspose.Words formats supported
    http://www.aspose.com/documentation/file-format-components/aspose.words-for-.net-and-java/ com/aspose/words/saveformat.html
    You might also investigate Apache POI
    http://poi.apache.org/

  • Improving retrieval performance of essbase server in unix environment

    HI,
    Our production environment is unix system. can any one suggest settings which impact the retrieval performance and how to do these settings in unix environment.

    Naveen,
    For retrieval perfomance, Increase the retreival buffer size.
    Default is 10 KB for 32 bit platforms and 20 KB for 64 bit.
    make it 100 KB.
    2. if the data block size is large ,and you are retriving cells across several blocks
    set VLBREPORT true in the essbase.cfg configuration file
    NOTE: this will increase the retrival process but , its applicable to the outlines which does not include dynamic calcs.
    3. If the format of your reoport is of not much importance. group dense dimension in colums and groping sparse in rows ,this would be faster.
    4. An applicaion/database does has a limt on its memory consumption.
    So, RAM is the key for the speed.
    Best part is that ,as you have UNIX operating system ,addressabe memory in your case is 3.9GB(which is very good) unlike 2 GB in case of windows.This is per application.
    Sandeep Reddy Enti
    HCC

  • Error Registering 11g SOA Composite in Unix environment

    Hi All,
    We are trying to register a SOA Approval Composite with OIM 11.1.1.3 in the Unix environement . The SOA Process is getting successfully deployed , but when we are registering it , its throwing error as : "The task definition at default/ProvisioningApprovalFlow!1.0*soa_***************/ApprovalTask could not be read".
    However, same workflow is getting successfully registered and executed in Windows environment. Any suggestion what could go wrong here. I am providing here the error details . Any help is heartly appreciated.
    Exception in thread "main" oracle.iam.platform.workflowservice.exception.IAMWorkflowException: Tasklist mapping failed for workflowdefinition:
    default/ProvisioningApprovalFlow!1.0 due to Invalid task definition.Ni
    [java] The task definition at default/ProvisioningApprovalFlow!1.0*soa_7abcd53a-69ca-4c93-909b-88e59015e026/ApprovalTask could not be read. The task definition is
    associated with workflow default/ProvisioningApprovalFlow!1.0*soa_7abcd53a-69ca-4c93-909b-88e59015e026/ApprovalTask.
    [java] Make sure that the task definition is available at the specified URL and that it is a valid XML document.
    [java]
    [java] at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
    [java] at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
    [java] at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
    [java] at
    oracle.iam.platformservice.api.WorkflowRegistrationServiceEJB_f4otyb_WorkflowRegistrationServiceRemoteImpl_1033_WLStub.registerWorkFlowDefinitionx(Unknown
    Source)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java] at java.lang.reflect.Method.invoke(Method.java:597)
    [java] at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
    [java] at $Proxy2.registerWorkFlowDefinitionx(Unknown Source)
    [java] at oracle.iam.platformservice.api.WorkflowRegistrationServiceDelegate.registerWorkFlowDefinition(Unknown Source)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java] at java.lang.reflect.Method.invoke(Method.java:597)
    [java] at Thor.API.Base.SecurityInvocationHandler$1.run(SecurityInvocationHandler.java:68)
    [java] at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    [java] at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    [java] at weblogic.security.Security.runAs(Security.java:41)
    [java] at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(weblogicLoginSession.java:52)
    [java] at Thor.API.Base.SecurityInvocationHandler.invoke(SecurityInvocationHandler.java:79)
    [java] at $Proxy3.registerWorkFlowDefinition(Unknown Source)
    [java] at oracle.iam.platformservice.workflowregclient.WorkflowRegistration.main(WorkflowRegistration.java:42)
    [java] Caused by: oracle.iam.platform.workflowservice.exception.IAMWorkflowException: Tasklist mapping failed for workflowdefinition:
    default/ProvisioningApprovalFlow!1.0 due to Invalid task definition.
    [java] The task definition at default/ProvisioningApprovalFlow!1.0*soa_7abcd53a-69ca-4c93-909b-88e59015e026/ApprovalTask could not be read. The task definition is
    associated with workflow default/ProvisioningApprovalFlow!1.0*soa_7abcd53a-69ca-4c93-909b-88e59015e026/ApprovalTask.
    [java] Make sure that the task definition is available at the specified URL and that it is a valid XML document.
    [java]
    [java] at oracle.iam.platform.workflowservice.impl.WorkflowRepositoryImpl.mapWorkflow(WorkflowRepositoryImpl.java:132)
    [java] at oracle.iam.platform.workflowservice.impl.WorkflowRepositoryImpl.registerWorkFlowDefinition(WorkflowRepositoryImpl.java:113)
    [java] at oracle.iam.platform.workflowservice.impl.WorkflowServiceImpl.registerWorkFlowDefinition(WorkflowServiceImpl.java:231)
    [java] at oracle.iam.platformservice.impl.WorkflowRegistrationServiceImpl.registerWorkFlowDefinition(WorkflowRegistrationServiceImpl.java:38)
    [java] at oracle.iam.platformservice.api.WorkflowRegistrationServiceEJB.registerWorkFlowDefinitionx(Unknown Source)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java] at java.lang.reflect.Method.invoke(Method.java:597)
    [java] at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    [java] at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    [java] at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    [java] at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
    [java] at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    [java] at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    [java] at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    [java] at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    [java] at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    [java] at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    [java] at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    [java] at $Proxy507.registerWorkFlowDefinitionx(Unknown Source)
    [java] at
    oracle.iam.platformservice.api.WorkflowRegistrationServiceEJB_f4otyb_WorkflowRegistrationServiceRemoteImpl.registerWorkFlowDefinitionx(WorkflowRegistrationServiceEJ
    B_f4otyb_WorkflowRegistrationServiceRemoteImpl.java:193)
    [java] at oracle.iam.platformservice.api.WorkflowRegistrationServiceEJB_f4otyb_WorkflowRegistrationServiceRemoteImpl_WLSkel.invoke(Unknown Source)
    [java] at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
    [java] at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    [java] at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:477)
    [java] at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    [java] at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    [java] at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
    [java] at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    [java] at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    [java] at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Thanks
    Swati Pandey

    Has any one faced similar issue ?

  • Could not deploy my project in unix environment

    I am using windows for development environment, my code was deploying fine in windows environment. But when i tried to deploy in unix environment I got this error
    bpel_IRobo_Workflow1_1.0.jar failed to deploy.
    Error while loading process. The process domain encountered the following errors while loading the process "IRobo_Workflow1" (revision "1.0"): BPEL validation failed. BPEL source validation failed, the errors are: [Error ORABPEL-10902]: compilation failed [Description]: in "bpel.xml", XML parsing failed because "undefined part element. In WSDL at "file:/u01/app/oracle/product/AS10.1.3.3.0/bpel/domains/default/tmp/.bpel_IRobo_Workflow1_1.0_e580208857197172fe72bbfca5d9d8b6.tmp/workflow2.wsdl", message part element "{http://schemas.xmlsoap.org/ws/2003/03/addressing}RelatesTo" is not defined in any of the schemas. Please make sure the spelling of the element QName is correct and the WSDL import is complete. ". [Potential fix]: n/a. . . If you have installed a patch to the server, please check that the bpelcClasspath domain property includes the patch classes.
    Can any one knidly help. I have to fix this thing in a day so any help would be of great use thanks

    bpel.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="IRobo_Workflow1" src="IRobo_Workflow1.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="client">
    <property name="wsdlLocation">IRobo_Workflow1.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="combtecbsnk03NetworkInstallationsService">
    <property name="wsdlLocation">combtecbsnk03NetworkInstallationsServiceRef.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="fr_pots_dj_schedule">
    <property name="wsdlLocation">fr_pots_dj_schedule.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="fr_staa_response">
    <property name="wsdlLocation">fr_staa_response.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="fr_jumper_info">
    <property name="wsdlLocation">fr_jumper_info.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="eet_mismatch_correction">
    <property name="wsdlLocation">eet_mismatch_correction.wsdl</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="TaskService">
    <property name="wsdlLocation">TaskServiceWSIF.wsdl</property>
    </partnerLinkBinding>
    <partnerLinkBinding name="IRobo_Workflow2">
    <property name="wsdlLocation">workflow2.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>
    Workflow2 WSDL
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    name="IRobo_Workflow2"
    targetNamespace="http://xmlns.oracle.com/IRobo_Workflow2"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://xmlns.oracle.com/IRobo_Workflow2"
    xmlns:wsa="http://schemas.xmlsoap.org/ws/2003/03/addressing"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:client="http://xmlns.oracle.com/IRobo_Workflow2">
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/IRobo_Workflow2" schemaLocation="IRobo_Workflow2.xsd"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" schemaLocation="http://01hw127125.India.TCS.com:8888/orabpel/xmllib/ws-addressing.xsd"/>
    </schema>
    </types>
    <message name="IRobo_Workflow2ResponseMessage">
    <part name="payload" element="tns:IRobo_Workflow2ProcessResponse"/>
    </message>
    <message name="IRobo_Workflow2RequestMessage">
    <part name="payload" element="tns:IRobo_Workflow2ProcessRequest"/>
    </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="IRobo_Workflow2Callback">
    <operation name="onResult">
    <input message="tns:IRobo_Workflow2ResponseMessage"/>
    </operation>
    </portType>
    <portType name="IRobo_Workflow2">
    <operation name="initiate">
    <input message="tns:IRobo_Workflow2RequestMessage"/>
    </operation>
    </portType>
    <binding name="IRobo_Workflow2CallbackBinding" type="tns:IRobo_Workflow2Callback">
    <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="IRobo_Workflow2Binding" type="tns:IRobo_Workflow2">
    <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="IRobo_Workflow2CallbackService">
    <port name="IRobo_Workflow2CallbackPort" binding="tns:IRobo_Workflow2CallbackBinding">
    <soap:address location="http://set.by.caller"/>
    </port>
    </service>
    <service name="IRobo_Workflow2">
    <port name="IRobo_Workflow2Port" binding="tns:IRobo_Workflow2Binding">
    <soap:address location="http://01hw127125.India.TCS.com:8888/orabpel/default/IRobo_Workflow2/1.0"/>
    </port>
    </service>
    <plnk:partnerLinkType name="IRobo_Workflow2">
    <plnk:role name="IRobo_Workflow2Provider">
    <plnk:portType name="tns:IRobo_Workflow2"/>
    </plnk:role>
    <plnk:role name="IRobo_Workflow2Requester">
    <plnk:portType name="tns:IRobo_Workflow2Callback"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    James I am making the endpoint reference available at run time so I think I need not change it while deploying.I think this is the problem the problem.
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://schemas.xmlsoap.org/ws/2003/03/addressing" schemaLocation="http://01hw127125.India.TCS.com:8888/orabpel/xmllib/ws-addressing.xsd"/>
    </schema>

  • Nagios windows and Oracle environment

    Hi Gurus,
    I'm planning to implement Nagios tool for SAP monitoring on windows and Oracle environment. Can any one help me on thisu2026u2026..??
    Regards
    Soumitra

    Dear Soumitra,
    The only requirement of running Nagios is a machine running Linux (or UNIX variant) and a C compiler. You will probably also want to have TCP/IP configured, as most service checks will be performed over the network.
    You can download that suggested plug-in. Extract it and read the Documentation available within that bundle.
    The Following links may provide more details.
    [http://nagios.sourceforge.net/docs/3_0/quickstart.html|http://nagios.sourceforge.net/docs/3_0/quickstart.html]
    [http://wiki.nagios.org/index.php/Main_Page|http://wiki.nagios.org/index.php/Main_Page]
    Also check this"Nagios Toolbox for Windows hosts"
    [Nagios Toolbox for Windows hosts|http://sourceforge.net/projects/ngtbx/] . Nagios Toolbox for Windows host is still in development.
    Regards,
    Bhavik G. Shroff

  • Migrating database from windows to unix

    Can anyone, please suggest me some reading on migrating a database from windows to unix? Thanks

    Yes an export import is the most likely migration path you have. There is another option. You may install, just temporarily a 10g environment on the windows platform, then upgrade using the DBUA from 8i to 10g on the same platform. This way you will make sure you don't miss a piece of data during the migration process.
    Once your database is at the 10g platform, you may proceed with a transport tablespace from 10g win to 10g unix. Violà, your database will be on the 10g platform.
    Next, deinstall the windows temporary 10g installation.
    Notes:
    1. Make sure your 8i db is at the latest patchset available at 8i (8.1.7.4.0)
    2. Define which unix platform you are referring to. It's because of endian issues.
    ~ Madrid.

  • Threading in Unix environment

    I have developed an application based on struts that runs on 9IAS on a sun unix server connecting to an Oracle 9i database. For development purposes I simulated the application on a windows box using Oracle's OC4J standalone. The problem that I am having is that under a load 40 - 50 concurrent users, the connection to the database is dropping. The application runs great front to back normally.
    I am storing some configuration paramaters in application state (Servlet context) upon loading of the application ( using a struts plugin) and then retrieving the parameters to do some queries on the DB. In my windows testing environment the application works great under a load. But on the Unix box it buckles. The only thing that I can think of is that the Unix box is starting new seperate instances of the servlet context that does not have the parameters stored in application state. In other words it is not calling the plugin.
    Can anyone give me a point in the right direction as to where my problem might be coming from? Does Unix create new instances of the servlet context and run threads through them under a load?

    Randy,
    Pardon me for stating the obvious, but Oracle 9iAS is not the same as OC4J stand-alone. Have you tried running the application on UNIX using only OC4J stand-alone (as you have done on Windows)? You may find that OC4J (and your app) perform the same on both platforms (Windows and UNIX).
    For your information, I think the Oracle Application Server - General and OC4J forums are probably more appropriate for your question.
    Good Luck,
    Avi.

  • Oracle in Unix environment...suggest way to start....

    Hi,
    Still i was a pl/sql programmer in windows platform. Now a sudden requirement to work pl/sql in unix environment. I very much new to unix. I dont know how to proceed. Please suggest start point where should i start...please help me
    thanks
    asp

    Thanks sharma,
    'You are welcome.'>
    U have been a good experienced person in this forums
    'I do not want to take this comment. In fact, I would not deserve it'
    'My experience is just 3 years in the S/W industry and full-time Oracle is '
    ' just less than that. But I deliberately wanted to participate actively in'
    ' this forum to gain knowledge from the other GURUs. But anyway thanks'
    ' your responses to a member in the forum.'
    whether i have to learn any unix
    specific os commands or no need of unix os command
    knowledge.
    'This depends on your work. If it purely for Oracle, then you do not have to'Cheers
    Sarma.

  • Exception not throwing to action class in Unix environment

    Hi
    We are using Weblogic Server 9.2.3.0.
    One of our EJB is not throwing exception to calling Action class in Unix environment. Its working fine in Windows.
    Somehow the EJB is swallowing the exception.
    any idea? I suspect it may be environmental issue?
    thank you

    Thanx for your reply.. I just found a solution and would like to share that with you. There are some default request parameters passed by the portal to the action class. "strutsAction" is one of them. If you print this parameters, you will see that it contains the complete url of your action. Now you can use String manipulation to extract the value of the parameters.
    I know its a crude solution. But it works fine.
    Best regards,
    Omer

  • Installation and deployment of operating system, applications and patches in Unix environment

    Is it possible to use Configuration Manager 2012 (or 2012 R2) to perform remote installation of operating system, applications and patching in a Unix environment?
    Balaji Kundalam

    ConfigMgr does not support Operating System Deployment for non-Windows OS flavors.
    You can use the ConfigMgr client on a Unix device to install applications and to instruct the device to install patches. Basically, the client will download files and run a script against them.  If there is a patch manager in your flavor of *nix, you
    can run a script to install the patches.
    See the supported operating systems here:
    http://technet.microsoft.com/en-us/library/gg682077.aspx#BKMK_SupConfigLnUClientReq
    I hope that helps,
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you've found a bug or want the product worked differently,
    share your feedback.
    <-- If this post was helpful, please click "Vote as Helpful".

Maybe you are looking for

  • Z77A-GD65 (mostly) unable to boot usb in legacy mode

    So I already made a post about this issue over in the BIOS forum back when I assumed it was something to do with the forum flash tool, but upon closer examination I was able to replicate this problem with other bootable usb sticks when I attempted to

  • Loading jar files and calling java stored procedure

    I am trying to load jai_core.jar, jai_codec.jar, mlibwrapper.jar and another class I created into my project schema. I am having problems with resolving all of the class using the "loadjava -resolve" command as well as using the "alter java class" co

  • How do I make Quicktime Pro my preferred playback software?

    I use VLC Player and Quicktime Pro. Recently, however, I've needed to use Quicktime for streaming purposes - but VLC comes on almost immediately. How can I make Quicktime my default or preferred player?

  • Any recent change? Logged out many times a day

    Starting today at some indeterminate time, I have been logged out of the forums in less that one hour periods. Firefox/Mac, Safari/Vista, Explorer/Vista.

  • Properties panel doesn't show dimensions

    Usually when I create a rectangle I can see the dimensions and coordinates in the properties panel. However on my machine at work the dimensions and coordinates are not showing in the properties panel. I think someone has turned off a configuration b