How to see wsdl in JBoss?

Hi,
I have deployed a WebService application in JBoss. How to see wsdl at server (JBoss) side?
I have supplied url: http://localhost:8080 in the browser,
It is showing the below page, from here how to see the wsdl file?
JBoss Online Resources
    * JBoss Documentation
    * JBoss Wiki
    * JBoss JIRA
    * JBoss Forums
JBoss Management
    * Tomcat status (full) (XML)
    * JMX Console
    * JBoss Web Consolethank you for your consideration,

Hi,
I have downloaded an application from internet
The interface is :
package webservice1;
import javax.jws.WebService;
import javax.jws.WebMethod;
import java.rmi.Remote;
import java.rmi.RemoteException;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;
@WebService(name="Calculator1")
@SOAPBinding(style=Style.RPC)
public interface Calculator extends Remote
   @WebMethod int add(int x, int y);
   @WebMethod int subtract(int x, int y);
}and the implementation is:
package webservice1;
import javax.ejb.Stateless;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;
@Stateless
@WebService(name="Calculator1", endpointInterface="webservice1.Calculator")
public class CalculatorBean implements Calculator
   public int add(int x, int y)
      return x + y;
   public int subtract(int x, int y)
      return x - y;
}application folder name: calculatorwebservice
I am giving the url:
http://127.0.0.1:8080/calculatorwebservice/Calculator1?wsdlbut JBoss giving Error: 404
HTTP Status 404 - /calculatorwebservice/Calculator1
type Status report
message /calculatorwebservice/Calculator1
description The requested resource (/calculatorwebservice/Calculator1) is not available.
Apache Tomcat/5.5.20I am unable to give proper URL, according to the above code what could be the url to look the WSDL?
thank you for your kind consideration,

Similar Messages

  • How to read WSDL File

    Hi all,
    I am new in web services...just started yesterday.. my client is provinding web services...I just need to send some data to them and retrieve data back...they are basically verifying addresses..if Address is not corrent then they will send the correct one back..I have no clue which method should I call and how to send data to them..below is my work that I have done so far...please help me...
    ///Below is the Client API that I have made...there is a bean file which I have made for Input Data...
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import javax.xml.namespace.QName;
    public class TestClient {
        public static void main(String [] args) {
           try {
             String endpoint = "http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress";
             Service  service = new Service();
             Call     call    = (Call) service.createCall();
            call.setTargetEndpointAddress( new java.net.URL(endpoint) );
            call.setOperationName(new QName("http://m3group101.mnao.net/", "ValidateAddress"));
         call.setUsername("free");
         call.setPassword("account");       
         AddressIn addressIn  = new AddressIn();
            addressIn.Address1 = "6767 Friars Rd";
            addressIn.Address2 = "";
            addressIn.Address3 = "";
            addressIn.Address4 = "";
            addressIn.City = "SAN DIEGO";
            addressIn.StateProv = "CA";
            addressIn.PostalCode = "";
            addressIn.Country = "US";
            String ret = (String) call.invoke(new Object[] {"",""});      ////Here I donno what should I pass
            System.out.println("Sent DATA, got '" + ret + "'");
          } catch (Exception e) {
            System.err.println("Got Error While retrieving data "+e.toString());
    ///My Bean File Looks like this....
    import java.io.*;
    import java.util.*;
    import java.util.ResourceBundle;
    public class AddressIn {
        public String KeyValue;
        public String Address1;
        public String Address2;
        public String Address3;
        public String Address4;
        public String City;
        public String StateProv;
        public String PostalCode;
        public String Country;
        public AddressIn()
             KeyValue   = "";
             Address1   = "";
             Address2   = "";
             Address3   = "";
             Address4   = "";
             City       = "";
             StateProv  = "";
             PostalCode = "";
             Country    = "";
        } // END constructor
    } // END class AddressIn
    import java.io.*;
    import java.util.*;
    import java.util.ResourceBundle;
    public class AddressOut {
        public String KeyValue;
        public String Address1;
        public String Address2;
        public String Address3;
        public String Address4;
        public String City;
        public String StateProv;
        public String PostalCodeBase;
        public String PostalCodeAddOn;
        public String Country;
        public String Status;
        public String StatusCode;
        public String StatusDescription;
        public String Confidence;
        public String RecordType;
        public AddressOut()
             KeyValue   = "";
             Address1   = "";
             Address2   = "";
             Address3   = "";
             Address4   = "";
             City       = "";
             StateProv  = "";
             PostalCodeBase  = "";
             PostalCodeAddOn = "";
             Country    = "";
             Status     = "";
             StatusCode = "";
             StatusDescription = "";
             Confidence = "";
             RecordType = "";
        } // END constructor
    } // END class AddressInPlease see the WSDL File...
    <?xml version="1.0" encoding="UTF-8" ?>
    - <wsdl:definitions targetNamespace="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" xmlns:intf="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://com.g1.dcg/services" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd00="http://www.w3.org/2000/10/XMLSchema" xmlns:xsd99="http://www.w3.org/1999/XMLSchema">
    - <wsdl:types>
    - <schema targetNamespace="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" xmlns="http://www.w3.org/2001/XMLSchema">
      <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
    - <complexType name="ArrayOf_xsd_anyType">
    - <complexContent>
    - <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:anyType[]" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
      </restriction>
      </complexContent>
      </complexType>
    - <complexType name="ArrayOf_tns1_ServiceOption">
    - <complexContent>
    - <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:ServiceOption[]" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
      </restriction>
      </complexContent>
      </complexType>
    - <complexType name="ArrayOf_tns1_DataRow">
    - <complexContent>
    - <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:DataRow[]" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
      </restriction>
      </complexContent>
      </complexType>
    - <complexType name="ArrayOf_xsd_string">
    - <complexContent>
    - <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" />
      </restriction>
      </complexContent>
      </complexType>
      </schema>
    - <schema targetNamespace="http://com.g1.dcg/services" xmlns="http://www.w3.org/2001/XMLSchema">
      <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
    - <complexType name="ServiceOption">
    - <sequence>
      <element name="key" nillable="true" type="xsd:string" />
      <element name="value" nillable="true" type="xsd:string" />
      </sequence>
      </complexType>
    - <complexType name="DataTableBean">
    - <sequence>
      <element name="columnNames" nillable="false" type="impl:ArrayOf_xsd_string" />
      <element name="dataRows" nillable="true" type="impl:ArrayOf_tns1_DataRow" />
      </sequence>
      </complexType>
    - <complexType name="DataRow">
    - <sequence>
      <element name="values" nillable="true" type="impl:ArrayOf_xsd_string" />
      </sequence>
      </complexType>
      </schema>
      </wsdl:types>
    - <wsdl:message name="processResponse">
      <wsdl:part name="arg0" type="tns1:DataTableBean" />
      </wsdl:message>
    - <wsdl:message name="processRequest">
      <wsdl:part name="arg0" type="impl:ArrayOf_tns1_ServiceOption" />
      <wsdl:part name="arg1" type="tns1:DataTableBean" />
      </wsdl:message>
    - <wsdl:portType name="G1Service">
    - <wsdl:operation name="process" parameterOrder="arg0 arg1">
      <wsdl:input message="impl:processRequest" name="processRequest" />
      <wsdl:output message="impl:processResponse" name="processResponse" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:binding name="ValidateAddressSoapBinding" type="impl:G1Service">
      <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    - <wsdl:operation name="process">
      <wsdlsoap:operation soapAction="ValidateAddress" />
    - <wsdl:input name="processRequest">
      <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" use="encoded" />
      </wsdl:input>
    - <wsdl:output name="processResponse">
      <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" use="encoded" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:service name="ValidateAddress">
    - <wsdl:port binding="impl:ValidateAddressSoapBinding" name="ValidateAddress">
      <wsdlsoap:address location="http://m3group101.mnao.net:8080/jboss-net/services/ValidateAddress" />
      </wsdl:port>
      </wsdl:service>
      </wsdl:definitions>I am receiving Exception " No Such Operation "
    I am sorry but I don'n know how to read WSDL file...
    thanks
    Vish...
    Message was edited by:
    vishu007

    Start going through the tutorials that come with Axis (you didn't state which version of Axis you're using btw, and there are major differences between them).
    Anyway, the wsdl you list doesn't have an operation called "ValidateAddress". It has only one operation, called "process".
    The call takes 2 arguments, as defined in the input message, and returns one value as defined in the output message.
    Had you used Axis to generate your classes for you that would all have become quite obvious.

  • Unexpected Signal : 11 occurred. How to see the reason??

    Hi,
    I saw there where other questions about this, but I didn't get how to see the differences between the possible causes of this error
    I see at the bottom of the following trace that some part of the heap is running over (from space of new generation) is this a correct assumption of the reason for this error?
    If this is the reason I'll have to find a way to increase the heapsize. The problem doing this is, that the app is started by a precompiled binary. Is there a way not to pass the heapsize by the -Xmx param but to write it in some VM config file, so it will be used, even when I can't pass params??
    Thanks a lot for replies,
    Regards
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_06-b03 mixed mode)
    # An error report file has been saved as hs_err_pid9125.log.
    # Please refer to the file for further information.
    ./convrpt_lib.sh: line 7:  9125 Abgebrochen             rwconverter.sh userid=$CONNECT batch=yes overwrite=yes stype=PLLFILE dtype=PLLFILE source=$f.pll dest=$f.pll
    Converting report
    Report Builder: Release 10.1.2.0.2 - Production on Tue Sep 16 20:22:13 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    REP-25200: Converting 'report.pll' to 'report.pll'...
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x3527A39
    Function=kpchtcd+0x91
    Library=/fapp/oracle/product/frs/lib/libclntsh.so.10.1
    Current Java thread:
    Dynamic libraries:
    00110000-006c2000 r-xp 00000000 fd:00 18784214   /fapp/oracle/product/frs/jdk/jre/lib/i386/server/libjvm.so
    006c2000-0071c000 rwxp 005b1000 fd:00 18784214   /fapp/oracle/product/frs/jdk/jre/lib/i386/server/libjvm.so
    0072f000-0073f000 r-xp 00000000 fd:00 18785980   /fapp/oracle/product/frs/lib/libnn.so.0
    0073f000-00740000 rwxp 0000f000 fd:00 18785980   /fapp/oracle/product/frs/lib/libnn.so.0
    00741000-00770000 r-xp 00000000 fd:00 18785916   /fapp/oracle/product/frs/lib/librws.so.0
    00770000-00772000 rwxp 0002e000 fd:00 18785916   /fapp/oracle/product/frs/lib/librws.so.0
    00772000-00796000 r-xp 00000000 fd:00 18785994   /fapp/oracle/product/frs/lib/libucol.so.0
    00796000-00798000 rwxp 00023000 fd:00 18785994   /fapp/oracle/product/frs/lib/libucol.so.0
    00798000-007aa000 r-xp 00000000 fd:00 18785944   /fapp/oracle/product/frs/lib/libuicc.so.0
    007aa000-007ab000 rwxp 00011000 fd:00 18785944   /fapp/oracle/product/frs/lib/libuicc.so.0
    007ac000-007e9000 r-xp 00000000 fd:00 18785989   /fapp/oracle/product/frs/lib/libca.so.0
    007e9000-007f0000 rwxp 0003c000 fd:00 18785989   /fapp/oracle/product/frs/lib/libca.so.0
    007f0000-007f7000 r-xp 00000000 fd:00 18786017   /fapp/oracle/product/frs/lib/libmma.so.0
    007f7000-007fa000 rwxp 00006000 fd:00 18786017   /fapp/oracle/product/frs/lib/libmma.so.0
    007fa000-007fc000 r-xp 00000000 fd:00 18786025   /fapp/oracle/product/frs/lib/libmmov.so.0
    007fc000-007fd000 rwxp 00001000 fd:00 18786025   /fapp/oracle/product/frs/lib/libmmov.so.0
    007fd000-007fe000 r-xp 00000000 fd:00 18786020   /fapp/oracle/product/frs/lib/libmmia.so.0
    007fe000-007ff000 rwxp 00000000 fd:00 18786020   /fapp/oracle/product/frs/lib/libmmia.so.0
    007ff000-00803000 r-xp 00000000 fd:00 18786019   /fapp/oracle/product/frs/lib/libmmft.so.0
    00803000-00804000 rwxp 00003000 fd:00 18786019   /fapp/oracle/product/frs/lib/libmmft.so.0
    00804000-00806000 r-xp 00000000 fd:00 18785943   /fapp/oracle/product/frs/lib/libuihx.so.0
    00806000-00807000 rwxp 00001000 fd:00 18785943   /fapp/oracle/product/frs/lib/libuihx.so.0
    00809000-00814000 r-xp 00000000 fd:00 18785940   /fapp/oracle/product/frs/lib/librec.so.0
    00814000-00816000 rwxp 0000a000 fd:00 18785940   /fapp/oracle/product/frs/lib/librec.so.0
    00818000-0083b000 r-xp 00000000 fd:00 18786022   /fapp/oracle/product/frs/lib/libmmiw.so.0
    0083b000-0083d000 rwxp 00022000 fd:00 18786022   /fapp/oracle/product/frs/lib/libmmiw.so.0
    0083d000-0083e000 r-xp 00000000 fd:00 18785946   /fapp/oracle/product/frs/lib/libtknqap.so.0
    0083e000-0083f000 rwxp 00000000 fd:00 18785946   /fapp/oracle/product/frs/lib/libtknqap.so.0
    00840000-00842000 r-xp 00000000 fd:00 18786052   /fapp/oracle/product/frs/lib/libdfc.so.0
    00842000-00843000 rwxp 00001000 fd:00 18786052   /fapp/oracle/product/frs/lib/libdfc.so.0
    00844000-00846000 r-xp 00000000 fd:00 2721278    /lib/libdl-2.5.so
    00846000-00847000 r-xp 00001000 fd:00 2721278    /lib/libdl-2.5.so
    00847000-00848000 rwxp 00002000 fd:00 2721278    /lib/libdl-2.5.so
    00849000-0084a000 r-xp 00849000 00:00 0          [vdso]
    0084a000-00873000 r-xp 00000000 fd:00 18786023   /fapp/oracle/product/frs/lib/libmmoi.so.0
    00873000-00876000 rwxp 00028000 fd:00 18786023   /fapp/oracle/product/frs/lib/libmmoi.so.0
    00876000-00890000 r-xp 00000000 fd:00 18786018   /fapp/oracle/product/frs/lib/libmmcm.so.0
    00890000-00896000 rwxp 00019000 fd:00 18786018   /fapp/oracle/product/frs/lib/libmmcm.so.0
    00896000-008b5000 r-xp 00000000 fd:00 18785948   /fapp/oracle/product/frs/lib/libot.so.0
    008b5000-008b8000 rwxp 0001e000 fd:00 18785948   /fapp/oracle/product/frs/lib/libot.so.0
    008b8000-008c1000 r-xp 00000000 fd:00 18785925   /fapp/oracle/product/frs/lib/libixd.so
    008c1000-008c2000 rwxp 00008000 fd:00 18785925   /fapp/oracle/product/frs/lib/libixd.so
    008c5000-008db000 r-xp 00000000 fd:00 18786024   /fapp/oracle/product/frs/lib/libmmos.so.0
    008db000-008dd000 rwxp 00015000 fd:00 18786024   /fapp/oracle/product/frs/lib/libmmos.so.0
    008dd000-0099e000 r-xp 00000000 fd:00 18785984   /fapp/oracle/product/frs/lib/libvgs.so.0
    0099e000-009a6000 rwxp 000c0000 fd:00 18785984   /fapp/oracle/product/frs/lib/libvgs.so.0
    009a6000-009fa000 r-xp 00000000 fd:00 18785947   /fapp/oracle/product/frs/lib/libuc.so.0
    009fa000-009ff000 rwxp 00053000 fd:00 18785947   /fapp/oracle/product/frs/lib/libuc.so.0
    009ff000-00a0e000 r-xp 00000000 fd:00 18785935   /fapp/oracle/product/frs/lib/libuiimg.so.0
    00a0e000-00a10000 rwxp 0000e000 fd:00 18785935   /fapp/oracle/product/frs/lib/libuiimg.so.0
    00a10000-00a1d000 r-xp 00000000 fd:00 18785936   /fapp/oracle/product/frs/lib/libutt.so.0
    00a1d000-00a1f000 rwxp 0000c000 fd:00 18785936   /fapp/oracle/product/frs/lib/libutt.so.0
    00a1f000-00a25000 r-xp 00000000 fd:00 18786000   /fapp/oracle/product/frs/lib/libutc.so.0
    00a25000-00a27000 rwxp 00005000 fd:00 18786000   /fapp/oracle/product/frs/lib/libutc.so.0
    00a27000-00a28000 r-xp 00000000 fd:00 18784208   /fapp/oracle/product/frs/jdk/jre/lib/i386/libjawt.so
    00a28000-00a29000 rwxp 00000000 fd:00 18784208   /fapp/oracle/product/frs/jdk/jre/lib/i386/libjawt.so
    00a29000-00a2b000 r-xp 00000000 fd:00 9563238    /usr/lib/libXau.so.6.0.0
    00a2b000-00a2c000 rwxp 00001000 fd:00 9563238    /usr/lib/libXau.so.6.0.0
    00a2c000-00a46000 r-xp 00000000 fd:00 2721276    /lib/ld-2.5.so
    00a46000-00a47000 r-xp 00019000 fd:00 2721276    /lib/ld-2.5.so
    00a47000-00a48000 rwxp 0001a000 fd:00 2721276    /lib/ld-2.5.so
    00a48000-00a8d000 r-xp 00000000 fd:00 18785942   /fapp/oracle/product/frs/lib/libuipr.so.0
    00a8d000-00a9e000 rwxp 00044000 fd:00 18785942   /fapp/oracle/product/frs/lib/libuipr.so.0
    00a9e000-00ad5000 r-xp 00000000 fd:00 18785938   /fapp/oracle/product/frs/lib/librem.so.0
    00ad5000-00ad9000 rwxp 00036000 fd:00 18785938   /fapp/oracle/product/frs/lib/librem.so.0
    00ad9000-00afb000 r-xp 00000000 fd:00 18785937   /fapp/oracle/product/frs/lib/libuia.so.0
    00afb000-00b04000 rwxp 00021000 fd:00 18785937   /fapp/oracle/product/frs/lib/libuia.so.0
    00b04000-00b0c000 r-xp 00000000 fd:00 18786002   /fapp/oracle/product/frs/lib/libutj.so.0
    00b0c000-00b0e000 rwxp 00007000 fd:00 18786002   /fapp/oracle/product/frs/lib/libutj.so.0
    00b11000-00b61000 r-xp 00000000 fd:00 18785939   /fapp/oracle/product/frs/lib/libree.so.0
    00b61000-00b68000 rwxp 0004f000 fd:00 18785939   /fapp/oracle/product/frs/lib/libree.so.0
    00b68000-00b78000 r-xp 00000000 fd:00 18786040   /fapp/oracle/product/frs/lib/librod.so.0
    00b78000-00b7c000 rwxp 0000f000 fd:00 18786040   /fapp/oracle/product/frs/lib/librod.so.0
    00b7c000-00b8c000 r-xp 00000000 fd:00 18786039   /fapp/oracle/product/frs/lib/libror.so.0
    00b8c000-00b8f000 rwxp 0000f000 fd:00 18786039   /fapp/oracle/product/frs/lib/libror.so.0
    00b91000-015b1000 r-xp 00000000 fd:00 16580614   /fapp/oracle/product/frs/lib/librw.so
    015b1000-01787000 rwxp 00a20000 fd:00 16580614   /fapp/oracle/product/frs/lib/librw.so
    01790000-019aa000 r-xp 00000000 fd:00 18786466   /fapp/oracle/product/frs/lib/libobx.so.0
    019aa000-019df000 rwxp 00219000 fd:00 18786466   /fapp/oracle/product/frs/lib/libobx.so.0
    019e1000-019f4000 r-xp 00000000 fd:00 2721291    /lib/libnsl-2.5.so
    019f4000-019f5000 r-xp 00012000 fd:00 2721291    /lib/libnsl-2.5.so
    019f5000-019f6000 rwxp 00013000 fd:00 2721291    /lib/libnsl-2.5.so
    019f8000-01af7000 r-xp 00000000 fd:00 9563240    /usr/lib/libX11.so.6.2.0
    01af7000-01afb000 rwxp 000ff000 fd:00 9563240    /usr/lib/libX11.so.6.2.0
    01afb000-01b0a000 r-xp 00000000 fd:00 9563245    /usr/lib/libXext.so.6.4.0
    01b0a000-01b0b000 rwxp 0000e000 fd:00 9563245    /usr/lib/libXext.so.6.4.0
    01b0b000-01b2d000 r-xp 00000000 fd:00 18786069   /fapp/oracle/product/frs/lib/libcxa.so.3
    01b2d000-01b3e000 rwxp 00021000 fd:00 18786069   /fapp/oracle/product/frs/lib/libcxa.so.3
    01b3e000-01b46000 r-xp 00000000 fd:00 9563255    /usr/lib/libSM.so.6.0.0
    01b46000-01b47000 rwxp 00007000 fd:00 9563255    /usr/lib/libSM.so.6.0.0
    01b47000-01b5e000 r-xp 00000000 fd:00 9563254    /usr/lib/libICE.so.6.3.0
    01b5e000-01b5f000 rwxp 00016000 fd:00 9563254    /usr/lib/libICE.so.6.3.0
    01b61000-01b71000 r-xp 00000000 fd:00 18784188   /fapp/oracle/product/frs/jdk/jre/lib/i386/libverify.so
    01b71000-01b73000 rwxp 0000f000 fd:00 18784188   /fapp/oracle/product/frs/jdk/jre/lib/i386/libverify.so
    01ba6000-01baa000 rwxs 00000000 fd:00 15794184   /tmp/hsperfdata_oracleias/9150
    01baa000-01bbb000 r-xs 00000000 fd:00 18784139   /fapp/oracle/product/frs/jdk/jre/lib/jce.jar
    01bbb000-01be1000 r-xs 00000000 fd:00 18785674   /fapp/oracle/product/frs/jdk/jre/lib/ext/mailapi.jar
    01be1000-01be8000 r-xp 00000000 fd:00 9563404    /usr/lib/libXp.so.6.2.0
    01be8000-01be9000 rwxp 00006000 fd:00 9563404    /usr/lib/libXp.so.6.2.0
    01be9000-01cc6000 r-xs 00000000 fd:00 18784184   /fapp/oracle/product/frs/jdk/jre/lib/jsse.jar
    01cc6000-01ccc000 r-xs 00000000 fd:00 18778615   /fapp/oracle/product/frs/jdk/jre/lib/ext/ojmisc.jar
    01ccc000-01ccf000 r-xs 00000000 fd:00 18784221   /fapp/oracle/product/frs/jdk/jre/lib/ext/dnsns.jar
    01ccf000-01ceb000 r-xs 00000000 fd:00 18784220   /fapp/oracle/product/frs/jdk/jre/lib/ext/sunjce_provider.jar
    01ceb000-01d04000 r-xs 00000000 fd:00 18781266   /fapp/oracle/product/frs/j2ee/home/lib/jndi.jar
    01d04000-01e7e000 r-xp 00000000 fd:00 18785919   /fapp/oracle/product/frs/lib/libde.so.0
    01e7e000-01eee000 rwxp 00179000 fd:00 18785919   /fapp/oracle/product/frs/lib/libde.so.0
    01eef000-0202c000 r-xp 00000000 fd:00 2721277    /lib/libc-2.5.so
    0202c000-0202e000 r-xp 0013d000 fd:00 2721277    /lib/libc-2.5.so
    0202e000-0202f000 rwxp 0013f000 fd:00 2721277    /lib/libc-2.5.so
    02032000-02303000 r-xp 00000000 fd:00 18784199   /fapp/oracle/product/frs/jdk/jre/lib/i386/libawt.so
    02303000-02319000 rwxp 002d0000 fd:00 18784199   /fapp/oracle/product/frs/jdk/jre/lib/i386/libawt.so
    024b1000-024b3000 r-xs 00000000 fd:00 18781260   /fapp/oracle/product/frs/j2ee/home/lib/jdbc.jar
    024b3000-024b7000 r-xs 00000000 fd:00 18781256   /fapp/oracle/product/frs/j2ee/home/lib/javax77.jar
    024b7000-024bf000 r-xs 00000000 fd:00 18781257   /fapp/oracle/product/frs/j2ee/home/lib/javax88.jar
    024bf000-024c9000 r-xs 00000000 fd:00 18941626   /fapp/oracle/product/frs/opmn/lib/ons.jar
    024c9000-024d3000 r-xs 00000000 fd:00 18941937   /fapp/oracle/product/frs/opmn/lib/optic.jar
    024d3000-024d8000 r-xs 00000000 fd:00 18779026   /fapp/oracle/product/frs/jlib/javax-ssl-1_1.jar
    024d8000-024da000 r-xs 00000000 fd:00 18781267   /fapp/oracle/product/frs/j2ee/home/lib/jnet.jar
    024da000-024e3000 r-xp 00000000 fd:00 2719785    /lib/libnss_files-2.5.so
    024e3000-024e4000 r-xp 00008000 fd:00 2719785    /lib/libnss_files-2.5.so
    024e4000-024e5000 rwxp 00009000 fd:00 2719785    /lib/libnss_files-2.5.so
    024e5000-0253c000 r-xs 00000000 fd:00 18781264   /fapp/oracle/product/frs/j2ee/home/lib/jmxri.jar
    0253c000-02548000 r-xs 00000000 fd:00 18779027   /fapp/oracle/product/frs/jlib/jssl-1_1.jar
    02548000-0254b000 r-xs 00000000 fd:00 18781259   /fapp/oracle/product/frs/j2ee/home/lib/jcert.jar
    0254b000-02552000 r-xs 00000000 fd:00 18781258   /fapp/oracle/product/frs/j2ee/home/lib/jaxp.jar
    028fd000-0293f000 r-xs 00000000 fd:00 18783050   /fapp/oracle/product/frs/diagnostics/lib/ojdl.jar
    0293f000-0295b000 r-xs 00000000 fd:00 18778950   /fapp/oracle/product/frs/jlib/oraclepki.jar
    0295b000-02964000 r-xs 00000000 fd:00 18781407   /fapp/oracle/product/frs/jlib/ojpcs.jar
    02965000-0296d000 r-xp 00000000 fd:00 18784213   /fapp/oracle/product/frs/jdk/jre/lib/i386/native_threads/libhpi.so
    0296d000-0296e000 rwxp 00007000 fd:00 18784213   /fapp/oracle/product/frs/jdk/jre/lib/i386/native_threads/libhpi.so
    0296e000-02a2a000 r-xs 00000000 fd:00 18784223   /fapp/oracle/product/frs/jdk/jre/lib/ext/localedata.jar
    02a2a000-02a36000 r-xs 00000000 fd:00 18781248   /fapp/oracle/product/frs/j2ee/home/lib/activation.jar
    02a36000-02a3f000 r-xp 00000000 fd:00 9563250    /usr/lib/libXcursor.so.1.0.2
    02a3f000-02a40000 rwxp 00008000 fd:00 9563250    /usr/lib/libXcursor.so.1.0.2
    02a40000-02a44000 r-xp 00000000 fd:00 9563249    /usr/lib/libXfixes.so.3.1.0
    02a44000-02a45000 rwxp 00003000 fd:00 9563249    /usr/lib/libXfixes.so.3.1.0
    02a45000-02a58000 r-xp 00000000 fd:00 2721279    /lib/libpthread-2.5.so
    02a58000-02a59000 r-xp 00012000 fd:00 2721279    /lib/libpthread-2.5.so
    02a59000-02a5a000 rwxp 00013000 fd:00 2721279    /lib/libpthread-2.5.so
    02a5c000-02ab0000 r-xs 00000000 fd:00 18781406   /fapp/oracle/product/frs/jlib/ojpse.jar
    02cda000-02d82000 r-xs 00000000 fd:00 18781271   /fapp/oracle/product/frs/j2ee/home/lib/ojsp.jar
    02d82000-02dca000 r-xs 00000000 fd:00 18779031   /fapp/oracle/product/frs/jlib/netcfg.jar
    02dca000-02ddc000 r-xs 00000000 fd:00 18783237   /fapp/oracle/product/frs/jlib/repository.jar
    02ddc000-02df0000 r-xp 00000000 fd:00 18786041   /fapp/oracle/product/frs/lib/libros.so.0
    02df0000-02df3000 rwxp 00013000 fd:00 18786041   /fapp/oracle/product/frs/lib/libros.so.0
    02df3000-02fd7000 r-xs 00000000 fd:00 18783111   /fapp/oracle/product/frs/jlib/jewt4.jar
    02fd7000-03a66000 r-xp 00000000 fd:00 18779783   /fapp/oracle/product/frs/lib/libclntsh.so.10.1
    03a66000-03b6c000 rwxp 00a8f000 fd:00 18779783   /fapp/oracle/product/frs/lib/libclntsh.so.10.1
    03b81000-040da000 r-xs 00000000 fd:00 18784185   /fapp/oracle/product/frs/jdk/jre/lib/charsets.jar
    040da000-042fd000 r-xs 00000000 fd:00 18777722   /fapp/oracle/product/frs/reports/jlib/rwrun.jar
    042fd000-04460000 r-xs 00000000 fd:00 18783201   /fapp/oracle/product/frs/jdbc/lib/classes12.zip
    04460000-044a5000 r-xs 00000000 fd:00 18781270   /fapp/oracle/product/frs/j2ee/home/lib/mail.jar
    044a5000-044bf000 r-xs 00000000 fd:00 18781255   /fapp/oracle/product/frs/j2ee/home/lib/jaas.jar
    044bf000-044c7000 r-xp 00000000 fd:00 9563241    /usr/lib/libXrender.so.1.3.0
    044c7000-044c8000 rwxp 00007000 fd:00 9563241    /usr/lib/libXrender.so.1.3.0
    046cf000-046e8000 r-xs 00000000 fd:00 18781409   /fapp/oracle/product/frs/jlib/ojpcms.jar
    046ea000-046eb000 r-xs 00000000 fd:00 18786726   /fapp/oracle/product/frs/jdk/jre/lib/ext/sslqueries.jar
    046eb000-0470a000 r-xs 00000000 fd:00 18783214   /fapp/oracle/product/frs/lib/xschema.jar
    0470e000-04711000 r-xs 00000000 fd:00 18785672   /fapp/oracle/product/frs/jdk/jre/lib/ext/jta.jar
    04711000-04754000 r-xs 00000000 fd:00 18781238   /fapp/oracle/product/frs/j2ee/home/jazn.jar
    04754000-0475b000 r-xs 00000000 fd:00 9634052    /usr/lib/gconv/gconv-modules.cache
    04761000-04786000 r-xp 00000000 fd:00 2721284    /lib/libm-2.5.so
    04786000-04787000 r-xp 00024000 fd:00 2721284    /lib/libm-2.5.so
    04787000-04788000 rwxp 00025000 fd:00 2721284    /lib/libm-2.5.so
    04788000-04a21000 r-xs 00000000 fd:00 18785991   /fapp/oracle/product/frs/jlib/bigraphbean.jar
    04a21000-04aa5000 r-xs 00000000 fd:00 18783046   /fapp/oracle/product/frs/lib/dms.jar
    04aa5000-04aee000 r-xs 00000000 fd:00 18974456   /fapp/oracle/product/frs/soap/lib/soap.jar
    04b04000-04c3f000 r-xs 00000000 fd:00 18781235   /fapp/oracle/product/frs/j2ee/home/iiop.jar
    04c3f000-04cda000 r-xs 00000000 fd:00 18785697   /fapp/oracle/product/frs/jlib/ldapjclnt10.jar
    04cda000-04d85000 r-xs 00000000 fd:00 18778949   /fapp/oracle/product/frs/owm/jlib/owm-3_0.jar
    04d85000-04e03000 r-xs 00000000 fd:00 18781249   /fapp/oracle/product/frs/j2ee/home/lib/bcel.jar
    04e03000-04e81000 r-xs 00000000 fd:00 18781268   /fapp/oracle/product/frs/j2ee/home/lib/jsse.jar
    04e81000-04eaa000 r-xs 00000000 fd:00 18783073   /fapp/oracle/product/frs/webservices/lib/wsserver.jar
    04ec0000-04ed5000 r-xp 00000000 fd:00 18786047   /fapp/oracle/product/frs/lib/libuat.so.0
    04ed5000-04ed9000 rwxp 00014000 fd:00 18786047   /fapp/oracle/product/frs/lib/libuat.so.0
    04ed9000-04efd000 r-xs 00000000 fd:00 18783078   /fapp/oracle/product/frs/webservices/lib/wsdl.jar
    04efe000-04f03000 r-xs 00000000 fd:00 18781250   /fapp/oracle/product/frs/j2ee/home/lib/connector.jar
    04f03000-04f3d000 r-xs 00000000 fd:00 18781254   /fapp/oracle/product/frs/j2ee/home/lib/http_client.jar
    04f3f000-04f43000 r-xp 00000000 fd:00 18786003   /fapp/oracle/product/frs/lib/libutsl.so.0
    04f43000-04f45000 rwxp 00003000 fd:00 18786003   /fapp/oracle/product/frs/lib/libutsl.so.0
    04f45000-04f78000 r-xs 00000000 fd:00 18781252   /fapp/oracle/product/frs/j2ee/home/lib/crimson.jar
    05028000-05030000 r-xs 00000000 fd:00 18781447   /fapp/oracle/product/frs/jlib/rts2.jar
    05038000-0503e000 r-xs 00000000 fd:00 18781404   /fapp/oracle/product/frs/jlib/ojmisc.jar
    0509a000-050a8000 r-xs 00000000 fd:00 18781273   /fapp/oracle/product/frs/j2ee/home/lib/servlet.jar
    050a8000-0513c000 r-xs 00000000 fd:00 18941642   /fapp/oracle/product/frs/javacache/lib/cache.jar
    0513f000-05150000 r-xp 00000000 fd:00 18786001   /fapp/oracle/product/frs/lib/libutl.so.0
    05150000-05155000 rwxp 00010000 fd:00 18786001   /fapp/oracle/product/frs/lib/libutl.so.0
    05155000-0525a000 r-xs 00000000 fd:00 18783089   /fapp/oracle/product/frs/javavm/lib/jasper.zip
    0525a000-052cf000 r-xs 00000000 fd:00 18781429   /fapp/oracle/product/frs/sqlj/lib/runtime12ee.jar
    052ee000-052ef000 r-xp 0163c000 fd:00 9539696    /usr/lib/locale/locale-archive
    0530c000-05312000 r-xp 0157f000 fd:00 9539696    /usr/lib/locale/locale-archive
    05312000-053ed000 r-xs 00000000 fd:00 18783215   /fapp/oracle/product/frs/lib/xmlparserv2.jar
    05420000-05454000 r-xp 01605000 fd:00 9539696    /usr/lib/locale/locale-archive
    05454000-054f8000 r-xs 00000000 fd:00 18781243   /fapp/oracle/product/frs/j2ee/home/jazncore.jar
    05556000-0555b000 r-xp 00000000 fd:00 9563239    /usr/lib/libXdmcp.so.6.0.0
    0555b000-0555c000 rwxp 00004000 fd:00 9563239    /usr/lib/libXdmcp.so.6.0.0
    055ad000-055bc000 r-xs 00000000 fd:00 18781251   /fapp/oracle/product/frs/j2ee/home/lib/cos.jar
    0560c000-0577b000 r-xp 00000000 fd:00 18783224   /fapp/oracle/product/frs/lib/libnnz10.so
    0577b000-0579f000 rwxp 0016e000 fd:00 18783224   /fapp/oracle/product/frs/lib/libnnz10.so
    057a0000-05841000 r-xs 00000000 fd:00 18779765   /fapp/oracle/product/frs/jlib/srvm.jar
    058a1000-058a5000 r-xs 00000000 fd:00 18781253   /fapp/oracle/product/frs/j2ee/home/lib/ejb.jar
    058a5000-0596f000 r-xs 00000000 fd:00 18783066   /fapp/oracle/product/frs/rdbms/jlib/aqapi.jar
    0596f000-059e2000 r-xs 00000000 fd:00 18779830   /fapp/oracle/product/frs/jlib/zrclient.jar
    05a02000-05a07000 r-xp 00000000 fd:00 9563303    /usr/lib/libXtst.so.6.1.0
    05a07000-05a08000 rwxp 00004000 fd:00 9563303    /usr/lib/libXtst.so.6.1.0
    05ba6000-05bc6000 r-xp 00000000 fd:00 18784189   /fapp/oracle/product/frs/jdk/jre/lib/i386/libjava.so
    05bc6000-05bc8000 rwxp 0001f000 fd:00 18784189   /fapp/oracle/product/frs/jdk/jre/lib/i386/libjava.so
    05c1a000-05c1d000 r-xs 00000000 fd:00 18781269   /fapp/oracle/product/frs/j2ee/home/lib/jta.jar
    05c65000-05c81000 r-xs 00000000 fd:00 18785686   /fapp/oracle/product/frs/jlib/infratool.jar
    05d37000-05d4b000 r-xp 00000000 fd:00 18784191   /fapp/oracle/product/frs/jdk/jre/lib/i386/libzip.so
    05d4b000-05d4e000 rwxp 00013000 fd:00 18784191   /fapp/oracle/product/frs/jdk/jre/lib/i386/libzip.so
    05e94000-05ee7000 r-xp 00000000 fd:00 18784198   /fapp/oracle/product/frs/jdk/jre/lib/i386/libmlib_image.so
    05ee7000-05ee8000 rwxp 00052000 fd:00 18784198   /fapp/oracle/product/frs/jdk/jre/lib/i386/libmlib_image.so
    05ee8000-060e8000 r-xp 00000000 fd:00 9539696    /usr/lib/locale/locale-archive
    060e8000-06249000 r-xs 00000000 fd:00 18783203   /fapp/oracle/product/frs/jdbc/lib/classes12dms.jar
    06249000-063a9000 r-xs 00000000 fd:00 18783202   /fapp/oracle/product/frs/jdbc/lib/classes12.jar
    06423000-06431000 r-xs 00000000 fd:00 18785676   /fapp/oracle/product/frs/jdk/jre/lib/ext/activation.jar
    064e8000-064f5000 r-xs 00000000 fd:00 18784222   /fapp/oracle/product/frs/jdk/jre/lib/ext/ldapsec.jar
    06840000-069a5000 r-xp 00000000 fd:00 18785941   /fapp/oracle/product/frs/lib/libuimotif.so.0
    069a5000-069da000 rwxp 00164000 fd:00 18785941   /fapp/oracle/product/frs/lib/libuimotif.so.0
    069e4000-06a03000 r-xp 00000000 fd:00 18785924   /fapp/oracle/product/frs/lib/libix.so
    06a03000-06a08000 rwxp 0001e000 fd:00 18785924   /fapp/oracle/product/frs/lib/libix.so
    06bb0000-06bf5000 r-xs 00000000 fd:00 18785673   /fapp/oracle/product/frs/jdk/jre/lib/ext/mail.jar
    06bf5000-06fdb000 r-xs 00000000 fd:00 18781430   /fapp/oracle/product/frs/sqlj/lib/translator.jar
    07074000-07082000 r-xs 00000000 fd:00 18783135   /fapp/oracle/product/frs/jlib/share.jar
    0718f000-071f7000 r-xs 00000000 fd:00 18781261   /fapp/oracle/product/frs/j2ee/home/lib/jem.jar
    0727a000-072ce000 r-xp 00000000 fd:00 9552588    /usr/lib/libXt.so.6.0.0
    072ce000-072d2000 rwxp 00054000 fd:00 9552588    /usr/lib/libXt.so.6.0.0
    072e6000-073c5000 r-xs 00000000 fd:00 18785992   /fapp/oracle/product/frs/jlib/bigraphbean-nls.zip
    0744b000-0744c000 r-xp 00000000 fd:00 9633975    /usr/lib/gconv/ISO8859-1.so
    0744c000-0744e000 rwxp 00000000 fd:00 9633975    /usr/lib/gconv/ISO8859-1.so
    07515000-076b2000 r-xp 00000000 fd:00 10000903   /usr/X11R6/lib/libXm.so.2.1
    076b2000-076c6000 rwxp 0019d000 fd:00 10000903   /usr/X11R6/lib/libXm.so.2.1
    079e9000-079ff000 r-xs 00000000 fd:00 18784138   /fapp/oracle/product/frs/jdk/jre/lib/sunrsasign.jar
    07a32000-07a39000 r-xs 00000000 fd:00 18781262   /fapp/oracle/product/frs/j2ee/home/lib/jms.jar
    07a59000-07a63000 r-xs 00000000 fd:00 18781236   /fapp/oracle/product/frs/j2ee/home/iiop_gen_bin.jar
    07d2f000-07d32000 r-xs 00000000 fd:00 18785675   /fapp/oracle/product/frs/jdk/jre/lib/ext/smtp.jar
    07f8d000-07fc1000 r-xs 00000000 fd:00 18781408   /fapp/oracle/product/frs/jlib/ojpcp.jar
    08048000-08062000 r-xp 00000000 fd:00 18777598   /fapp/oracle/product/frs/bin/rwconverter
    08062000-080a4000 rwxp 00019000 fd:00 18777598   /fapp/oracle/product/frs/bin/rwconverter
    9f65b000-9fb3a000 r-xs 00000000 fd:00 18783204   /fapp/oracle/product/frs/jdbc/lib/nls_charset12.jar
    9fb3a000-a0019000 r-xs 00000000 fd:00 18779125   /fapp/oracle/product/frs/jlib/orai18n.jar
    a0019000-a05a0000 r-xs 00000000 fd:00 18781276   /fapp/oracle/product/frs/j2ee/home/oc4j.jar
    b65a6000-b7f4d000 r-xs 00000000 fd:00 18784183   /fapp/oracle/product/frs/jdk/jre/lib/rt.jar
    bfa47000-bfa5d000 rwxp bfa47000 00:00 0          [stack]
    Heap at VM Abort:
    Heap
    def new generation   total 576K, used 100K [0xa05a0000, 0xa0640000, 0xa2210000)
      eden space 512K,   7% used [0xa05a0000, 0xa05a9230, 0xa0620000)
      from space 64K, 100% used [0xa0620000, 0xa0630000, 0xa0630000)
      to   space 64K,   0% used [0xa0630000, 0xa0630000, 0xa0640000)
    tenured generation   total 1408K, used 1132K [0xa2210000, 0xa2370000, 0xb05a0000)
       the space 1408K,  80% used [0xa2210000, 0xa232b288, 0xa232b400, 0xa2370000)
    compacting perm gen  total 16384K, used 1677K [0xb05a0000, 0xb15a0000, 0xb45a0000)
       the space 16384K,  10% used [0xb05a0000, 0xb0743708, 0xb0743800, 0xb15a0000)
    Local Time = Tue Sep 16 20:22:14 2008
    Elapsed Time = 2
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_06-b03 mixed mode)
    # An error report file has been saved as hs_err_pid9150.log.
    # Please refer to the file for further information.
    ./convrpt_lib.sh: line 7:  9150 Abgebrochen             rwconverter.sh userid=$CONNECT batch=yes overwrite=yes stype=PLLFILE dtype=PLLFILE source=$f.pll dest=$f.pll

    Hi Gabriel,
    Yes if I am doing this I can see at the top the document partner.
    But normally in the 2 bottom Window "Detail for SPL" it does show the
    the details the matched term.
    But here it does not show me the match terms. It shows only
    empty window Detail for SPL".
    So the question remains where can I see the matched terms?
    Any suggestions?
    Thanks
    Regards

  • How to solve this error JBoss Server start time............

    How to solve this error JBoss Server start time............
    10:45:38,484 INFO [TomcatDeployer] deploy, ctxPath=/JobWorkInvoice, warUrl=.../deploy/JobWorkInvoice.war/
    10:45:38,640 ERROR [STDERR] log4j:ERROR A "org.jboss.logging.util.OnlyOnceErrorHandler" object is not assignable to a "org.apache.log4j.spi.ErrorHandler" variable.
    10:45:38,640 ERROR [STDERR] log4j:ERROR The class "org.apache.log4j.spi.ErrorHandler" was loaded by
    10:45:38,640 ERROR [STDERR] log4j:ERROR [WebappClassLoader
    delegate: false
    repositories:
    /WEB-INF/classes/
    ----------> Parent Classloader:
    java.net.FactoryURLClassLoader@d5f9b9
    ] whereas object of type
    10:45:38,640 ERROR [STDERR] log4j:ERROR "org.jboss.logging.util.OnlyOnceErrorHandler" was loaded by [org.jboss.system.server.NoAnnotationURLClassLoader@5d173].
    10:45:38,687 ERROR [STDERR] log4j:ERROR Could not create an Appender. Reported error follows.
    10:45:38,687 ERROR [STDERR] java.lang.ClassCastException: org.jboss.logging.appender.DailyRollingFileAppender
    10:45:38,687 ERROR [STDERR]      at org.apache.log4j.xml.DOMConfigurator.parseAppender(DOMConfigurator.java:174)
    10:45:38,687 ERROR [STDERR]      at org.apache.log4j.xml.DOMConfigurator.findAppenderByName(DOMConfigurator.java:149)
    10:45:38,687 ERROR [STDERR]      at org.apache.log4j.xml.DOMConfigurator.findAppenderByReference(DOMConfigurator.java:162)
    10:45:38,687 ERROR [STDERR]      at org.apache.log4j.xml.DOMConfigurator.parseChildrenOfLoggerElement(DOMConfigurator.java:424)

    The error message suggests that your system is running out of memory. How much memory is available for OC4J on this box?
    You may also see problems like these when any of the following Jar files in your classpath :
    <li>$OH/jlib/repository.jar
    <li>$OH/j2ee/home/jazn.jar
    <li>$OH/j2ee/home/oc4j.jar
    <li>$OH/j2ee/home/jazncore.jar
    <li>$OH/jlib/infratool.jar
    Thanks,
    EJ

  • HT3266 HI... I NEED SEE MY ID OF MY COMPUTER.. IS THE UUID HOW I SEE THIS? IS NOT THE IP OR SOMETHING LIKE THAT.. PLEASE I NEED UR HELP PLEASE...

    Hi everyone.. the problem is: The server have all the UUID or ID of the computers.... but in windows we know how to see that but in mac we dont have idea to where see this number... so.. i try in terminal with some commands but everytime say the UUID of hardware or UUID of user but i need other UUID and this UUID is the number that the server say that is mine....
    Is strange....
    In windows we found a program,, but in mac i dont find some program can help my problem... My UUID is the same only show me the UUID of Hardware... i need the 4 UUID of the computers...
    Thanks

    Ok, Mr. Happy Duck, mouse over to the Apple menu in the top/left corner, select About this Mac. Click on More Info... then on System Report... The Hardware overview should give you all you need.

  • In SQL Trace how to see which statement getting more time .

    Hi Expart,
    In SQL Trace (T-code ST05) . I am running the standard transaction . how to see which statement
    running more time and less time . suppose one statement running more time so how resolve the
    performance .
    Plz. reply me
    Regards
    Razz

    > The ones in 'RED' color are the statement which are taking a lot of time and you need to
    > optimise the same.
    No, that is incorrect, the red ones show only the ones which need several hundret milliseconds in one execution. This can even be correct for hard tasks. And there are lots of problem, which you will not see
    I have said everything here:
    SQL trace:
    /people/siegfried.boes/blog/2007/09/05/the-sql-trace-st05-150-quick-and-easy
    Go to 'Tracelist' -> Summarize by SQL statements', this is the view which you want to see!
    I summarizes all executions of the same statement.
    There are even the checks explained, the slow ones are the one which need a lot of time per record!
    See MinTime/Rec > 10.000 microseconds.
    Check all number of records, executions, buffer, identicals.
    The SE30 Tipps and Tricks will not help much.
    Siegfried

  • How To See Numbers In Arabic Instead Of Indian Format

    I want to see numbers in Arabic format not in Indian format when i log on the Arabic Interface .
    I have EBS (12.0.6) installed on Linux centos , I have implement the below Oracle Metalink Note to solve this issue
    How To See Numbers In Arabic Instead Of Indian Format [ID 785243.1]
    I installed all the patched mentioned in the note (Apply forms version 10.1.2.2.0 with the forms patch 7488328 , Apply patch 7207440:R12.TXK.A , Apply patch 7601624 - NEW PROFILE OPTION: FORMS DIGIT SUBSTITUTION)
    These patches add the Profile option (FORMS DIGIT SUBSTITUTION) , but when i try to used it has no effect at all .
    So kindly if you have any idea about this issue please help me.
    Regards
    Fadi Lafi

    Hi,
    These patches add the Profile option (FORMS DIGIT SUBSTITUTION) , but when i try to used it has no effect at all .At what level you have set this profile option?
    So kindly if you have any idea about this issue please help me.Have you bounced the application services after setting this profile option? If not, please do so, login again and see if it works.
    Thanks,
    Hussein

  • TS2972 I have finished home sharing for my macbook air and apple tv, now how to see my macbook air on the TV monitor?

    how to see my macbook air on the TV monitor after I finished home sharing for the system?

    Did you purchase your MacBook Air new?  Do you still have its box?  Locate its serial number and telephone Apple at the number shown at the bottom of this page (1-800-MY-APPLE if you're in the U.S.).  They can help you.

  • How to see the Open PO Qty in Mass

    Dear Experts,
                        How to see the Open Qty in PO in mass, is there any report available..Please help 
    Regards
    karthik

    use the Txn ME2N
    Enter the follwoing details . Scope of list - ALV, Selection parameters- WE101, Plant- XXXX, Enter the document dates From and TO and execute ( F8), You will get all the details, If you want to adjust the format use cntrl+F8 to get the POP_up for selection of fields and use as you wish.

  • How to see the balance under different balance if special ledgers exist???

    Some of the company using special ledgers. I need to teach user how to see the balance under different balance.
    I will focus on
    1. display voucher
    2. check GL balance
    Anyone have idea (detailed flow)/template (preferred) on these issues?
    Thanks a lot for your help in advance

    hi,
    /n----
    > acccounting -
    >financial accounting -
    >GL acccounts -
    > information system -
    > gl reports
    here in this path u can get all the gl list and gl balances list ....
    u can check what ever reports u want.....
    if useful assign points...
    regards,
    santosh kumar

  • How to see Trial Balance for a Segment

    Hi Experts,
    Does anybody has idea on how to see Triala Balance for a Segment ?
    In Standard Reports for Balance Sheet and Profit & Loss, SAP B1 has provided option for filtering on Segment, but the same is not true for Trial Balance.
    BR
    Samir Gandhi

    Hi Samir,
    yes it is possible to display Trial Balance in Segment format.
    open Trial Balance Report, in the Upper right hand of the of the window next to G/L Accounts you can find the "FIND" button, click that one then the Find G/L Account window opens. from this window you cans Select Segmentation accounts.
    regards,
    Fidel

  • How to see the print preview of outgoing excise invoice.

    Hi Experts,
    How to see the print preview of outgoing excise invoice.
    Thanks,
    srinivas.

    Dear Sreeni,
    Just go to J1IIN, click on "Exc.inv for delivery -- Display" where you input delivery reference and execute. If you have generated excise invoice, you can see the corresponding excise invoice for that delivery / billing document.
    Preethi.

  • How to see photos on icloud drive with iphone 5c ios 8.1

    how to see photos loaded onto icloud drive with iphone 5c ios 8.1?? carnt see them in the new photos app everythings up to date and icloud enabled on phone??
    many thanks

    Go to iCloud.com on a computer. To see them on your iPhone go to iCloud.com in Safari. Tap the URL field. Pull favorites down and tap request desktop site. Sign into your iCloud account. Now you can view iCloud Drive or Photos if you turned on iCloud Photo library.

  • How to see dbms_output on oracle sql developer

    ned immediate help
    how to see dbms_output on oracle sql developer

    Hi,
    In sql developer u have a tab named DBMS Output in your result sheet. In that the first Icon is Enable DBMS Output. turn it on (After on it will give the message set serveroutput on in the sheet) and then run your code.
    In the code u have to use the dbms_output.put_line package.after running the code u have to see the result in DBMS Output tab.
    Regards,
    NTR

  • How to see my last reply?

    Hi,
    When I reply to a new message a little arrow shows on the left side of that message, when I click it, my reply opens. So far so good...
    Now I receive back an answer on my reply. The number [2] shows at the right side of the message indicating the number of messages in the thread.
    I reply again, but now when I click that little arrow on the left I don't see my last reply popping up!
    Any idea how to see my most recent reply? (and I don't mean go find it in your sent messages folder)
    Thanks!

    Mail > Preferences > Viewing > Include related messages from other mailboxes when viewing a conversation?
    Regards,
    Colin R.

Maybe you are looking for