How to Use JDeveloper to Secure and Test a Web Service

When I try this tutorial "http://www.oracle.com/technology/products/jdev/howtos/1013/wssecure/10gwssecurity_howto.html", I get this exception:
javax.xml.rpc.soap.SOAPFaultException: The security token could not be authenticated or authorized
     at oracle.j2ee.ws.client.StreamingSender._raiseFault(StreamingSender.java:578)
     at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:400)
     at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:113)
     at client.proxy.runtime.MyWebService1SoapHttp_Stub.echoMe(MyWebService1SoapHttp_Stub.java:78)
     at com.cmaxwell.secure.MyWebService1SoapHttpPortClient.echoMe(MyWebService1SoapHttpPortClient.java:42)
     at com.cmaxwell.secure.MyWebService1SoapHttpPortClient.main(MyWebService1SoapHttpPortClient.java:31)
Process exited with exit code 0.
What am I doing wrong?

Username and password are "albert" as it is written in the part "Run the Client". The version of JDeveloper is "10.1.3.4.0.4270". The exception scenarios do not help me in this case. I get the exception on this line:
myPort.echoMe("testing secure service");

Similar Messages

  • How to use a deployable proxy to consume a web service?

    HI Gurus,
    I am following this article below which helpfully explains how to create a proxy. So far so good. I have been able to create a proxy. However, the article only describes how to build a proxy.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70c7d0f7-153d-2a10-5d96-d334b67cd771
    In the concluding part of the document the author says "In my next article I will tell you how to use this deployable proxy to consume the web service in web application."
    I have looked around the SDN but have not been able to get the next part of this document.
    I have a JSPDynpage application which is required to consume a webservice. I want to use this proxt to consume the webservice.
    Any help or any other document that explains how to use a deployable proxy to consume a web service will be helpful.
    Thanks,
    SB

    Hi,
    Here is an example how to consume the deployable proxy in web application:
    http://help.sap.com/saphelp_nw70/helpdata/EN/ca/c8efe3e8a64163b01924ad4ccd706d/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/5c/971740198d8f5ce10000000a155106/frameset.htm
    Regards,
    Praveen Gudapati

  • How to Use SOAPArray to Exchanged Data with a Web Service

    The method of a prototype Web service I created is defined to take many parameters
    and return an object of a user defined class. Furthermore, the user defined class
    includes data elements of another user defined class and the Java ArrayList class.
    This works with a Java client referencing the WebLogic created client.jar file
    but I don't know how well it will work with a non-Java client. In particular,
    with Perl which is the language that will be used by the developer who first will
    test with the prototype.
    In posts to this newsgroup use of "language-specific, generic containers" has
    been discouraged and the "language-agnostic" SOAPArray recommended. I have searched
    this newgsroup and the Web for examples of how to use a SOAPArray in a Web service
    EJB to receive parameters and return results but found none.
    Will someone refer me to an example or give an overview of how a Java Web service
    EJB running in WebLogic 6.1 would use SOAPArray to get parameter values and return
    results?
    Also, I would like confirmation that it is best to use SOAPArray to exchange data
    with a Web service to achieve the goal of a service accessible by any language.
    Thank you.

    Replies in-line:
    How are the structures, e.g. gltrans-workType, defined in the Web service?The structure is made up of nested Java Beans, but this does not mean that the
    client for your web service has to be written in Java. The WSDL that I sent contains
    everything that a .NET-based (or Perl-based, or Python-based, or VB-based, or
    C++ based) Web Service Stack needs to correctly create all the data types in the
    web services' signature! That's the beauty of XML Schema! It's programming language
    independent :-)
    In
    other words, what definition in Java resulted in the WSDL statements?The WSDL wasn't produced by WLS 6.1, but it (WLS 6.1) can consume it.
    What is the signature of method submitGLTransWorkAsJavaBean() in the
    Web service?public void submitGLTransWorkAsJavaBean(GlTransactionsCpyType glTransactionsCpyType)
    GlTransactionsCpyType is the outer-most Java Bean. WLS 6.1 does not generate
    Java Beans for you, but it will use ones that you defined. See the Java Bean tutorial
    on the Javasoft sitem for details on how to create a Java Bean.
    Was the WSDL generated using the WL tools for creating a Web service?No.
    Conclusion:
    You asked for someone to provide you with an example of how to use SOAP array
    in a WSDL, which is what the attached file contained :-) What you want to do now
    is find a tool that can generate Java Bean code from this WSDL (Apache Axis has
    a wsdl2java tool that should work), or create the Java Beans yourself. Afterwards,
    create a WLS 6.1 Web Service a expose it for a Perl or .NET client.
    Regards,
    Mike Wooten
    "Jeff Carey" <[email protected]> wrote:
    >
    Please elaborate.
    How are the structures, e.g. gltrans-workType, defined in the Web service?
    In
    other words, what definition in Java resulted in the WSDL statements?
    What is the signature of method submitGLTransWorkAsJavaBean() in the
    Web service?
    Was the WSDL generated using the WL tools for creating a Web service?
    Thank you.
    "Michael Wooten" <[email protected]> wrote:
    Hi Jeff,
    Sounds like a pretty cool prototype :-)
    I have attached a WSDL (at the bottom of this post) that contains a<schema>
    that
    uses a SOAPArray to create an array of a <complexType>.
    HTH,
    Mike Wooten
    "Jeff Carey" <[email protected]> wrote:
    The method of a prototype Web service I created is defined to take
    many
    parameters
    and return an object of a user defined class. Furthermore, the user
    defined class
    includes data elements of another user defined class and the Java ArrayList
    class.
    This works with a Java client referencing the WebLogic created client.jar
    file
    but I don't know how well it will work with a non-Java client. Inparticular,
    with Perl which is the language that will be used by the developerwho
    first will
    test with the prototype.
    In posts to this newsgroup use of "language-specific, generic containers"
    has
    been discouraged and the "language-agnostic" SOAPArray recommended.
    I have searched
    this newgsroup and the Web for examples of how to use a SOAPArray in
    a Web service
    EJB to receive parameters and return results but found none.
    Will someone refer me to an example or give an overview of how a Java
    Web service
    EJB running in WebLogic 6.1 would use SOAPArray to get parameter values
    and return
    results?
    Also, I would like confirmation that it is best to use SOAPArray toexchange
    data
    with a Web service to achieve the goal of a service accessible by any
    language.
    Thank you.

  • How to use user-defined packages in JAX-RPC web service

    I am trying to use Object of my class located in my package in jax-rpc webservice,the code is
    package supercomputer;
    import Hello.*;
    public class SuperImpl implements SuperIF
    public String sendParam(String data)
    Temp ob=new Temp();
    int i=ob.get1(10000);
    return data+"returned by supercomputer";
    Temp is located in Hello package,I have jar the Hello package as Hello.jar and has set its classpath in targets.xml of Ant tool.
    The code compiles well and service is deployed successfully,but when i try to call the service from the client its gives me following error.
    [echo] Running the supercomputer.SuperClient program....
    [java] java.rmi.ServerException: Missing port information
    [java] at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:357)
    [java] at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:228)
    [java] at supercomputer.SuperIF_Stub.sendParam(SuperIF_Stub.java:60)
    [java] at supercomputer.SuperClient.main(Unknown Source)
    I dont know if it deploys why it gives error on client side.
    Please tell how to use user-defined packages and class in jax-rpc service code ,i am not talking about passing user-defined parameters i am just talking about making objects of user defined classes in jax-rpc service.I think there is some problem in classpath.
    Please guide me in doing that.
    Thanks,
    Farrukh

    Farrukh,
    I don't know if your error is about a missing class from your custom package, ... what track did you followed to say that?
    To use your package in the implementation of you web service, you should only follow the rules of making a web application: put your package jar in your \lib directory inside WEB-INF/ or your package classes unjared in classes (also in WEB-INF/).
    As I already said, I have doubts that your error should be originated from a missing class from your package, but:
    -try to see the logs (errors?) when you deploy your web service that could give a hint about the problem.
    -try to see if you can access your endpoint through your browser to see if there is a online status
    -display your config/WSDL file, and the steps you did to build your web service.
    regards,
    Pedro Salazar.

  • How to set up User id and Password for Web services or authentication

    Hi ,
    I am new to web services . I have created a new Web service in SAP , and while creating Service defination , set the Authentication as LOW for server proxy .Then created End-point in SOAMANAGER with USREID/PWS requried .This WSDL i am planning to share with Third party to call from Java application.
    But my web service checks for authorization which needs to be set up to allow the user id and pws .
    So question is how do i pass my user id and pws as i do not see this WSDL with User id and pws option displayed for me when i test this using SOAP UI .I saw some of WSDL with tag "AuthHeader" with user id and pws tags in them .So how could i get them ?
    Or requirement is that my Third party should be able to access my Web service in PRD and also be able to have authorization to auth object embedded in FM inside service defination .So how is this acheived ?
    Thanks,
    Sitaraman

    Hi,
    After creation of WSDL , you will get URL lkie http://idessapdev.ad.infosys.com:8000/index.html.
    For this URL your third party system need sto add id and pwd for accessing like http://idessapdev.ad.infosys.com:8000/index.html&userid = 111&pwd= wwgw.
    this is not the exact syntax. you can check with your third party system for this URL.
    Regards,
    Lokeswari.

  • How to use a collection as an input in web services?

    Hi all,
    I have to connect to a web service of an rfc sap, the RFC has the following structure:
    - Input
       - parameters(parameters)
          - ZBAPI_SET_CG(ZBAPI_SET_CG)
             - V_DES_KOSTL(com.sap.caf.base.string)
             - V_DES_KSTAR(com.sap.caf.base.string)
    -T_TEXT(TABLE_T_TEXT_TLINE)
    - item(java.util.Collection - TLINE)
    - TDFORMAT(com.sap.caf.base.string)
    - TDLINE(com.sap.caf.base.string)
    - Output....
    How can I create such a collection as input?
    Should I create a new operation or use existing ones? (read, create, update, delete, findbymultipleparameters, readbycustomkey)
    thanks!!!
    Edited by: Pablo Umaña on Apr 8, 2009 8:11 PM

    Hi Pablo,
    Can you provide some more info?.
    Which version are you using , CE 7.1 or NW 7.0?
    If you are using CE 7.1:
    If you want to invoke the Web Service from your project, Just import that web service and map it to an application service operation. You can go for default mapping.
    if you want to go for Remote persitensy, then only you have to use CRUD(read, create, update, delete)
    methodes of the Remote Business Objects.
    Refer the [help documentation|http://help.sap.com/saphelp_nwce10/helpdata/en/45/174ae492ef5d79e10000000a11466f/content.htm].
    Thanks

  • How to use Flash Media Live Encoder as a web Service

    Coud we use the Flash Media Live Encoder as a Web Service installed on another Server (Preferebaly on the Flash Media Server Itself).

    FMLE is typically used on the client side, and it doesn't have any sort of API that you would use to run it as a service. That said, unless you wanted to publish a camera that is connected to the server, I'm not sure why you'd want to run FMLE as a service.
    Perhaps if you explain what is is you want to accomplish....

  • Processing WS-Security headers within a web service

    Hello,
    I have created a service with WS-Security (from a WSDL using jdeveloper) and deployed it on OC4J. Within the service implementation, I need to get some information from soap security header, that is, my service needs to process some security headers. However, in my service implementation, I only have access to information contained inside the SOAP message body (parameters methods).
    Could anybody be so kind as to tell me how can I process WS-Security headers inside a web service implementation, please?
    Thank you very much in advance.

    You can refer this article
    web services security in weblogic

  • Error in browser while testing the web service

    Hi all
    plz help me out in the following problem.
    i have generated a simple web services program using netbean. while i am testing the web service i am getting the following error in the browser
    Exceptions details : java.lang.RuntimeException: Service Class not generated as expected
    javax.servlet.ServletException: java.lang.RuntimeException: Service Class not generated as expected at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.initializePort(WebServiceTesterServlet.java:546) at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.doGet(WebServiceTesterServlet.java:158) at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.invoke(WebServiceTesterServlet.java:104) at com.sun.enterprise.webservice.JAXWSServlet.doGet(JAXWSServlet.java:233) at javax.servlet.http.HttpServlet.service(HttpServlet.java:707) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820) at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536) at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566) at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566) at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137) at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566) at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536) at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939) at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:239) at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667) at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574) at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844) at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287) at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212) at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252) at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75) Caused by: java.lang.RuntimeException: Service Class not generated as expected at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.initializePort(WebServiceTesterServlet.java:521) ... 29 more
    regards
    mina

    Check this guide for creating a correct WSDL:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/40611dd6-e66e-2910-f383-e80fb44f9cd4
    User user need the role SAP_XI_APPL_SERV_USER
    Regards
    Stefan

  • How to use JDeveloper with manifest.mfs?

    I'm trying to figure out how to use JDeveloper to setup a J2EE application that contains two Web applications so that the Web applications will share the same instance of a log4j library.
    I've created the two Web apps and their deployment profiles and I've created a deployment profile for the EAR that contains the two Web apps. I've successfully deployed the EAR to the stand-alone OC4J on my development system and run the two Web apps. Currently the two apps use a log4j library in j2ee\home\lib, but that option doesn't support using separate log4j.properties files for each application.
    I've read the pre-release 9iAS 9.0.4 Servlet Developers Guide document and would like to use the third option described in the Guide's appendix that tells how to share the log4j library by specifying the log4j.jar file in a class-path entry in manifest.mf.
    My problem is I just don't understand the in's and out's of using/creating manifest.mf files with JDeveloper and its deployment profiles.
    Do I create manifest.mf's myself, and if so where should they be in the source folder heirarchy? Should the manifest.mf files for both Web apps include class-path entries for the log4j library, or only the manifest.mf file for the EAR? What are the right manifest.mf settings to use in the deployment profiles for the Web apps and the J2EE app?
    For example, should the EAR deployment profile be configured to merge the manifest.mf files of the two Web apps? Is it necessary to make one of the Web apps dependent on the other Web app?
    Thanks,
    Al Margheim

    Hi,
    Thought I'd use the same subject, because it matches my problem. The questions are:
    1. How do I get JDeveloper to use MANIFEST files properly? I'm using 9.0.3.1 and I have tried (un)checking different options in the EJB JAR/EAR deployment profile, but I never get the archive structure I want.
    2. How do I include third-party JARs in the final EJB JAR/EAR? Any attempt I make to include a library JAR ( via Project Settings or by adding to the project) gives me an expanded set of classes contained in the JAR file, which is something I don't want.
    Of course, I could easily achieve all that I want with Ant, and it will have to be outside JDev (using Ant within JDev prevents JDev from offering me its "full feature set"!). But I'd like to be able to do this while I'm still in the IDE (for what it's worth).
    Any suggestions/recommendations/pointers are welcome.
    regards
    George

  • How to use jdeveloper with linux?

    how to use jdeveloper with linux?
    Hello, i've download jdeveloper, and i have java1.4 installed. But i can't run jdeveloper i have jdev.exe and jdev but when i put /usr/local/jdev/bin/jdev a have a message like file not found. I don't know what to do.
    Help please!!!
    Ori.

    You need to go to the directory where you unzipped JDeveloper, for example:
    cd opt/jdev/jdevj2eebase1013/jdev/bin
    Once there, do this:
    chmod +x jdev
    chmod +x ojc
    Now you can try this:
    nohup ./jdev &
    or simply
    ./jev
    I usually create a soft link in ~/bin

  • How to use Jdeveloper Debugger

    Hi Friends,
    Some one tell me how to use jdeveloper debugger for debugging OAF Code in jdeveloper 10g
    Thanks & Regards
    Tarun

    hi, i also installed sqldeveloper and got the same error message. can you help troubleshoot this error?
    Connecting to the database ccs_c_edwdev.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '127.0.0.1', '1551' )
    ORA-30683: failure establishing connection to debugger
    ORA-12541: TNS:no listener
    ORA-06512: at "SYS.DBMS_DEBUG_JDWP", line 68
    ORA-06512: at line 1
    Process exited.
    Disconnecting from the database ccs_c_edwdev.

  • How to enable both WS Security and MTOM

    I am trying to call a web service running in JBoss. The web service is enabled with both ws
    security and MTOM as per the requirement. When i am trying to call the web method from my
    java client, i am getting the below exception
    Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: Endpoint
    {http://wsg.hpos.om.hp.com/}HPOSGatewayPort does not contain operation meta data for:
    {http://www.w3.org/2001/04/xmlenc#}EncryptedData
    at org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS.getSOAPFaultException
    (SOAPFaultHelperJAXWS.java:72)
    at org.jboss.ws.core.jaxws.binding.SOAP11BindingJAXWS.throwFaultException
    (SOAP11BindingJAXWS.java:109)
    at org.jboss.ws.core.CommonSOAPBinding.unbindResponseMessage
    (CommonSOAPBinding.java:579)
    at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:381)
    at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:300)
    at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:166)
    at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:152)
    at $Proxy17.getName(Unknown Source)
    at wsclient.TestHPOSClient.main(TestHPOSClient.java:106)
    my client code is:
    URL endpoint_new = new URL("http://15.70.176.190:9000/HPOSGateway/HPOSGateway?wsdl");
    QName qname = new QName("http://wsg.hpos.om.hp.com/", "HPOSGatewayService");
    HPOSGateway port = new HPOSGatewayService(endpoint_new,qname).getHPOSGatewayPort();
    BindingProvider bp=(BindingProvider)port;
    SOAPBinding binding = (SOAPBinding)bp.getBinding();
    binding.setMTOMEnabled(true);
    Map<String,Object> map = bp.getRequestContext();
    map.put(BindingProvider.USERNAME_PROPERTY,"administrator");
    map.put(BindingProvider.PASSWORD_PROPERTY,"da1sy");
    URL securityURL = new File("c://jboss-wsse-client.xml").toURL();
    ((StubExt)port).setSecurityConfig(securityURL.toExternalForm());
    ((StubExt)port).setConfigName("Standard WSSecurity Client");
    map.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
    "http://15.70.176.190:9000/HPOSGateway/HPOSGateway");
    System.setProperty("org.jboss.ws.wsse.keyStore", "c:\\wsse.keystore");
    System.setProperty("org.jboss.ws.wsse.trustStore", "c:\\wsse.truststore");
    System.setProperty("org.jboss.ws.wsse.keyStorePassword", "jbossws");
    System.setProperty("org.jboss.ws.wsse.trustStorePassword", "jbossws");
    System.setProperty("org.jboss.ws.wsse.keyStoreType", "jks");
    System.setProperty("org.jboss.ws.wsse.trustStoreType", "jks");
    System.out.println(port.getName("Welcome to this testing part."));
    ,, my jboss.wsse.client.xml is...
    <?xml version="1.0" encoding="UTF-8" ?>
    <jboss-ws-security xmlns="http://www.jboss.com/ws-security/config"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-
    security/schema/jboss-ws-security_1_0.xsd">
    <config>
    <encrypt type="x509v3" alias="wsse" />
    <requires>
    <encryption />
    </requires>
    </config>
    </jboss-ws-security>
    and my jboss-wsse-server.xml is ...
    <?xml version="1.0" encoding="UTF-8"?>
    <jboss-ws-security xmlns="http://www.jboss.com/ws-security/config"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-
    security/schema/jboss-ws-security_1_0.xsd">
    <key-store-file>WEB-INF/wsse.keystore</key-store-file>
    <key-store-password>jbossws</key-store-password>
    <trust-store-file>WEB-INF/wsse.truststore</trust-store-file>
    <trust-store-password>jbossws</trust-store-password>
    <config>
    <encrypt type="x509v3" alias="wsse"/>
    <requires>
    <encryption/>
    </requires>
    </config>
    </jboss-ws-security>
    i have my web service annotations like below.
    @WebService(name="HPOSGateway",targetNamespace="http://wsg.hpos.om.hp.com/")
    @EndpointConfig(configName = "Standard WSSecurity Endpoint")
    @BindingType(javax.xml.ws.soap.SOAPBinding.SOAP11HTTP_MTOM_BINDING)
    @HandlerChain(name = "HPOSGateway_handlerChain", file = "HPOSGateway_handler.xml")
    public class HPOSGateway{
    Can any one help me what is the problem and where i need to change? Please it is very
    urgent.
    Regards
    Ramchand

    Welcome to the forum!
    Even if it were physically possible, you wouldn't be able to use both Ethernet ports at the same time, because the motherboard doesn't support more than one connection at the time.
    Cheers,
    George
    In daily use: R60F, R500F, T61, T410
    Collecting dust: T60
    Enjoying retirement: A31p, T42p,
    Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
    Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

  • HT1695 I know nothing about how to use my new ipod and when reading the little bit of information in the folder that came with it, all I can do is turn it on, but it just powers down after a few seconds.  How do I work this thing?

    I know nothing about how to use my new ipod and when reading the little information that came with it, all I can do is turn it on.  Then in a few seconds it goes black, never having brought up a screen to do anything!  Help!  What do I do to get this thing going?

    You might consider connecting it to the charger and charging up the battery overnight.
    Please Get the iPod Touch User Manual for iOS 5

  • How to use the selection profile and status profile for production order?

    Hi expert,
       I want to know how to use the selection profile and status profile for production order. what's the usage for these two selection profile and status profile ?
      Please help me.
      thanks in advance.
      george.shi

    Hi George,
    There are are two types of statuses.One is system status and second one is user status.These statuses will tell us current situation of an order.
    We can't change system statuses.But we can create our own statuses through status profile.With this profile we can control user statuses.
    In this status profile,
    1.We define the sequence in which user statuses can be activated,
    2.We define initial statuses
    3. Allow or prohibit certain business transactions.
    Selection profiles are used to select the objects (say production orders) with different status combinations.We assign status profiles to selection profiles in BS42 T-Code.
    Regards,
    Raja.
    Edited by: Rajarao on Oct 30, 2008 6:21 AM
    Edited by: Rajarao on Oct 30, 2008 6:22 AM

Maybe you are looking for

  • Alv output issue

    Hi everyone,                   i m posting one of my ALV Program which i m having error as well as i m having few doubts , frnds plz clarify. <code> *ztest_alv_sri. *& Report  ZSrialv                                                 * REPORT  ZSrialv

  • Stream 14 Driver installation Issues on Windows 7

    I am wierdly struggling with something I have done countless times before with other laptops - remove Windows 8 and install Windows 7 I've so far disabled Secure Boot, Enabled legacy support, removed all  hard drive partitions and installed Windows 7

  • Why weblogic-cmp-rdbms-jar.xml.old gets created in Weblogic 7?

    Hi all, I use the build.bat file for creating the jar file build.bat ========== mkdir build build\META-INF copy *.xml build\META-INF @REM Compile EJB classes into the build directory (jar preparation) javac -d build *.java @REM Make a EJB jar file, i

  • Re: Satellite P - Windows Media Center issue

    Without any visible virus problems or bug threats Windows Media Center starts to crack out in video release. Simply random loosing pixels on a screen, and all other similar programs such as wmp, vlc media player, mv2 and Intervideo Win DVD working co

  • XML configuration file to link to frames in Flash - As2.0

    How can I set the url or link attribute from the XML configuration file to link to frames in my movie instead opening a HTML page? I am using Actionscript 2.0 Thank you.