Importing new packages

Hi.. I am new to java.
i wanted to try out jfreechart.. i included the required jar files in my classpath but still i get compilation error saying org.jfree.chart package doesnt exist.Can someone please help with me this?

Either you got your claspath wrong, or the class isn't in that jar file. Without details the only help anyone can give is general info.
Make sure the jar file, NOT it's directory, is on your classpath. Open the jar file with your favorite zip program and see if that file is in there.
Javapedia: Classpath
How Classes are Found
Setting the class path (Windows)
Setting the class path (Solaris/Linux)
Understanding the Java ClassLoader
java -cp .;<any other directories or jars> YourClassNameYou get a NoClassDefFoundError message because the JVM (Java Virtual Machine) can't find your class. The way to remedy this is to ensure that your class is included in the classpath. The example assumes that you are in the same directory as the class you're trying to run.
javac -classpath .;<any additional jar files or directories> YourClassName.javaYou get a "cannot resolve symbol" message because the compiler can't find your class. The way to remedy this is to ensure that your class is included in the classpath. The example assumes that you are in the same directory as the class you're trying to run.

Similar Messages

  • Importing new package and use its methods...?

    Hi,
    i have curl package. I need to include its methods in my pgm. So how can I use that package.? Since i am new to java from Php.so can any one help me......?
    Thanks in Advance...........

    Look what Google found:
    http://www.jarticles.com/package/package_eng.html
    Also make sure that the library is in your classpath.
    You also might want to learn the java basics first, before doing anything else.

  • Import and package does not exist

    I have a program and I wish to import a package that I've made. I have tried to do this with:
    import clientcode.*;but I keep getting the error message java:8: package clientcode does not exist
    I am completely new to Java and have no idea how to get around this. Please help

    Do you use ide or compile classes from command line?
    Most likely it's a classpath problem.

  • Import support package

    Hi,
    I need import package KH60014.SAR. How to import it? I performed unpack this package in /usr/sap/trans directory. After that, I use SPAM t-code. But I can't go to menu option Support Package->Load Packages->From Application Server. Menu "From Application Server" disabled. When I click "display/Change", it appear "OCS package Queue is empty" on status bar.
    Please help me!
    Thanks
    Duypm

    As suggested before: Create a new user in client 000 and log on with it before running SPAM/SAINT !
    The package KH60014 might have a prerequisite which is not in place.
    In transaction SPAM, Mark "New Support Packages" and press "Display".
    The new package should appear in the list and you can see if the package has any prerequisite sets.
    If you can not find the package iin this way,
    you can check if the parameters DIR_TRANS and DIR_EPS_ROOT are correct.
    Start transaction SE38, enter program RSPARAM and press F8 twice
    (once to run the program and once at the selection screen).
    Check the value for DIR_TRANS and DIR_EPS_ROOT.
    If you unpacked the package at /usr/sap/trans, then
    DIR_TRANS should have the value /usr/sap/trans and
    DIR_EPS_ROOT should have the value /usr/sap/trans/EPS.

  • OWB 9.0.3.37 and imported plsql packages

    I have some problems in owb version 9.0.3.37 with imported packages.
    I can't delete a procedure/function in the imported package,in the package body I can do this .
    The only way do delete procedure/function is do delete the package and re-import it from the db into OWB.
    Problem then is that when I valid a mapping I must reconcile inbound the transformation (link broken).
    Is there not another way to do delete function/procedure from a imported package.
    Is the import of packages in the new version 9.2 still possible?

    Hi,
    There is an internal reason (validation) why we cannot allow you to delete functions from a package that you imported. That model is still the same in the latest production release.
    Thanks,
    Mark.

  • I am not able to locate imported business package

    Hi,
    I have created few roles, worksets and iView for my applilcation. Then created one business package using export option. I can see .epa file in the export folder.
    Now I have to test this package before sending to other teams. I could not locate the package even after importing it.
    How should I import and test this package....
    Also should I sent par files used to create iView and system along with the business package to the other team. I have created one iView using 'New From par' and iView type is 'com.sap.portal.appintegrator.sap' and system of type 'com.sap.portal.howtos.webapp' using 'New From Par'.
    Pls help.
    Thanks in advance.
    regards,
    bhawna

    hi bhawna,
          the imported content package is imported at two different location based on two version
    as follow.
    if your portal is EP 5.0 then the package extension is ".pkg" and it is imported as your told path means "Administrator->Portal Content->Migrated Content->EP 5.0->roles-cFolders."here also depending your imported content.
    if your portal is EP 6.0 then the package extension is ".epa" and it is imported under the path " Administrator->Portal Content->content providede by sap" here in subfolders depending your imported content.
    and for your problem related cant's see the system aliases
       you have to set the permission for your newly created system.
    regards,
    hardik.

  • Importing a package into OWB repository.

    Hi,
    there is a package existing in my OWB repository.
    Package ABC
    Procedure PQR(pram1 varchar2,param2 varchar2)
    now i have modified this package in my target schema, an extra parameter is added to the procedure PQR.
    Procedure PQR(pram1 varchar2,param2 varchar2,param3 number).
    now when I re import this package to my OWB repository module. it shows both versions of the procedures.
    Package ABC
    PQR(pram1 varchar2,param2 varchar2)
    PQR(pram1 varchar2,param2 varchar2,param3 number)
    PQR(pram1 varchar2,param2 varchar2) is still vsible in OWB repository though it is replaced with PQR(pram1 varchar2,param2 varchar2,param3 number) in target schema.
    Is there any way I can replace the old version of procedure with the new version in OWB repository.
    Regards
    RD_RBS

    Hi
    Standard approach to be followed for any object modification
    1. If you have created your package from OWB and deployed it into your DB, always do it that way i.e. Design center -->DB . Do not make any modifications on DB level and import in back to your Design center. OWB manages Ids for all objects on the repository and this will confuse it. That is why you see two versions of the same package . Any modifications should be done on Design center level and then do a replace on the package from control center
    2. If an object (package or procedure) is created on DB directly and is imported into design center, follow the same norm everytime you make any changes to that object. The status of that object will appear as "New" or "Not deployed" on control center but that is fine because OWB has no ID on its repository to maintain this information.
    3. If you need to rename any object already deployed from OWB, always drop it first, then rename it and then deploy it. That way OWB will maintain the name and ID on its end and not get confused.
    4. For your case, you can drop the older version of the package from OWB, delete the one imported from Database into OWB, make the changes on OWB level (adding parameter etc) and then redeploy the same package as replace from control center.
    Hope these tips help
    birdy

  • Import anonymous package ?

    Hi
    Im new here!
    How to import an anonymous package(without package packageName;)?
    i know where the classes are and the classpath is set to this dir. The packages which i want to import this classes are in sub-dirs of this dir.
    thank you
    jz
    (If you don't understand me please don't wonder 'cause i'm 13 and speaking german :) )

    How to import an anonymous package(without package
    packageName;)?
    i know where the classes are and the classpath is set
    to this dir. The packages which i want to import this
    classes are in sub-dirs of this dir.
    (If you don't understand me please don't wonder
    'cause i'm 13 and speaking german :) )Don't worry, you're doing more than fine. The technical stuff: you can't
    import classes from the default package and you shouldn't want to do
    that. Put all of your classes in the appropriate packages and import
    those packages (or single classes from those packages).
    If you insist of having a class in the default package, make it the single
    class with the 'main' method' that starts up the entire thing.
    kind regards,
    Jos

  • Import business packages into the Websphere portal

    Hi All,
    Is there any way to import business packages into the Websphere portal. We are looking to display E Recruitment applications in Websphere Portal.Please let me know the procedure.
    Regards,
    Anil

    If it is OK to open the e-recruitment app into a new window from Websphere portal, simply link to it and host it in SAP Portal.
    If you can work out the single sign on, perhaps Websphere portal would let you use a portlet like an iframe that lets you display the SAP functionality hosted in SAP Portal. That way it looks like one interface to the end user but back end is hosted separately.
    The most streamlined but also more work, would probably be to have a SOA aware Websphere developer create the front end in IBM that references SAP's remote enabled functions.
    I'm not aware of any automatic way to simply import / host the SAP business packages inside Websphere, if that is what you are asking.

  • Problem importing a package

    Hello all! I'm relatively new to Java programming, but an experienced programmer in other languages, which is why this problem is so disturbing.
    I'm running through an exercise in the Thinking in Java book that introduces you to packages and importing packages. The code runs fine if I explicitly import the package by name, but not if I use the "*" wildcard.
    I'm running on Windows NT, and my CLASSPATH variable is:
    CLASSPATH=.;D:\Java\Books
    Here are the programs that work:
    //P.java
    package tools;
    public class P {
      public static void rint(String s) {
        System.out.print(s);
      public static void rint(int i) {
           System.out.print(i);
      public static void rintln(String s) {
        System.out.println(s);
      public static void rintln(int i) {
           System.out.println(i);
    //PrintTest.java
    import tools.*;
    public class PrintTest {
      public static void main(String[] args) {
           P.rint("Test String print - No line feed...");
           P.rintln("---");
           P.rint(1);
           P.rintln("");  //Force line feed.
           P.rintln(2);
           P.rintln("---");
    }Both of these files reside in the D:\test directory, and I compile them from that directory.
    To compile the P.java program, I use the following statement: javac -d . P.java
    The P.class file ends up in the D:\test\tools directory, which is fine. When I try to compile the PrintTest.java file, I get an error for each reference to the P class as follows:
    PrintTest.java:6: cannot resolve symbol
    symbol: method rint (java.lang.String)
    location: class P
    P.rint("Test string print - No line feed");
    However, if I change the first line in the PrintTest.java program to:
    import tools.P;
    Then it works.
    Why is the import working with an explicit call to the class, but not with the "*" wildcard? Any help would be greatly appreciated. I've been through all of the forums, the documentation, etc. and can't find a definitive answer.
    Thanks in advance,
    Tim

    Here is the error that I'm getting when I compile the PrintTest.java file.
    PrintTest.java:6: cannot resolve symbol
    symbol: method rint (java.lang.String)
    location: class P
    P.rint("Test string print - No line feed");
    Actually, I get one error for each reference to the P class in the PrintTest code, so there are 6 errors total.
    The P.class file is in the \tools directory under the directory where the PrintTest.java file exists, so the "import tools.P;" command works and the file runs OK, but when I switch to the "import tools.*" command, I get these errors. I'm just confused as to why it works when it is explicitly imported, but not when it is wild-carded.
    Thanks for the help! I'll keep trying...

  • Unable to import design package from O365 to SharePoint On Premises - Why ?

    Hello,
    Recently , I have added following site columns in "Article Page" content type in O365.
    Page Content 
    Rollup Image 
    Article Date 
    Summary Links 
    Image Caption 
    Byline 
    And changed css for look and feel of left navigation menu.
    After that, I have taken design package and tried to deploy on "On-Premise" plaform via design manager.
    And I have received following error :
    Feature definition with Id "XXX"  failed validation, file ListInstances\ElementsContentType.xml'The 'AllowDeletion' attribute is not declared.
    Would you please tell me - whats going wrong ? is that O365 update issue ? or something I made wrong ?
    Thanks and Regards,
    Dipti Chhatrapati

    For trying to answer for this thread ,
    To replicated this on my environment,(Download the Design Package from my O365 and restoring it on my On-Premise environment)
    I found the the new attribute "AllowDeletion=true" in which package downloaded from the O365. 
    In Visual studio, used the "Import Reusable Package" template and in Feature
    definition file " deleted the allowdeletion attribute. 
    It started to work on
    my environment. Please try it on your environment (on prem) and let us know the difference or result.
    And also , I wanted
    add my bit of notes, we should not test the Office 365 Package on onprem environment as it had different signatures and lot of new features those are very specific to O365 and Cloud apps.
    Murugesa Pandian| MCPD | MCTS |SharePoint 2010

  • Import sap package for NWDS

    Hi Everyone,
    Im trying to consume a web serviceclient in NWDS through a servlet.
    I need to import the package <b>com.sap.engine.services.webservices.espbase.client.api.*;</b>( to give the HTTP proxy settings)
    which is not available in the IDE.
    Could you please help me out on the same.

    Hi Hristo,
    Thanks a lot for ur suggestion,im till getting the same exception ,The code is as follows:Would appreciate ur help again
    @WebServiceRef(name="SalesOrder")SalesOrderByIDQueryResponseInService service;
         public SalesOrderByIdResponse() {
              super();
         protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              try {
    //                Get the port from the service instance
                   SalesOrderByIDQueryResponseIn port = service.getSalesOrderByIDQueryResponse_InSoapBinding();
                   Authenticator.setDefault(new Authenticator()
                        protected PasswordAuthentication getPasswordAuthentication() {
                        return new
                        PasswordAuthentication("username","password".toCharArray());
                   System.setProperty("proxyHost", "proxy1.wxyz.com");
                   System.setProperty("http.proxyHost", "proxy1.wxyz.com");
                   System.setProperty("proxyPort", "8080");
                   System.setProperty("http.proxyPort", "50104");
                   javax.xml.ws.BindingProvider bp = (javax.xml.ws.BindingProvider) port;
                   Map<String,Object> context = bp.getRequestContext();
                   context.put("javax.xml.ws.security.auth.username","s0004385249");
                   context.put("javax.xml.ws.security.auth.password","wipro123");
                   SalesOrderByIDQueryMessage_SyncType input = new SalesOrderByIDQueryMessage_SyncType();
                   SalesOrderSelectionByIDAnonymous selectionById = new SalesOrderSelectionByIDAnonymous();
                   input.setSalesOrderSelectionByID(selectionById);
                   SalesOrderIDType id = new SalesOrderIDType();
                   selectionById.setSalesOrderID(id);
                   id.setValue("9999");
    //                Call the service
                   SalesOrderByIDResponseMessage_SyncType output = port.salesOrderByIDQueryResponseIn(input);
                   SalesOrderAnonymous order = output.getSalesOrder();
    //                Evaluate and display the response
                   PrintWriter writer = response.getWriter();
                   writer.println("Details found for order " + id.getValue() + ":");
                   writer.println("<br>buyerID: " + order.getBuyerID().getValue());
                   writer.println("<br>date: " + order.getDate());
                   writer.println("<br>payerParty: " + order.getPayerParty().getFormattedName().getValue());
                   writer.println("<br>pricingTerms / currency: " + order.getPricingTerms().getCurrencyCode());
              catch (Exception e)
                   throw new ServletException(e);
    The prog gets deployed successfully but when i call the servlet,This is the error i get despite ur suggestion
    "Application error occurred during the request procession."
    Details: <b>Exception:</b>
    javax.servlet.ServletException: javax.xml.ws.WebServiceException: HTTP Status-Code 407: Proxy Authentication Required
         at testsoid.SalesOrderByIdResponse.doGet(SalesOrderByIdResponse.java:73)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:59)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:31)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:431)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:288)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:376)
         at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:85)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:160)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:308)
         at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:221)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:137)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:229)
    Caused by: javax.xml.ws.WebServiceException: HTTP Status-Code 407: Proxy Authentication Required
         at com.sun.xml.ws.util.SOAPConnectionUtil.getSOAPMessage(SOAPConnectionUtil.java:81)
         at com.sun.xml.ws.encoding.soap.client.SOAPXMLDecoder.toSOAPMessage(SOAPXMLDecoder.java:100)
         at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.receive(SOAPMessageDispatcher.java:438)
         at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.doSend(SOAPMessageDispatcher.java:258)
         at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.send(SOAPMessageDispatcher.java:137)
         at com.sun.xml.ws.encoding.soap.internal.DelegateBase.send(DelegateBase.java:84)
         at com.sun.xml.ws.client.EndpointIFInvocationHandler.implementSEIMethod(EndpointIFInvocationHandler.java:172)
         at com.sun.xml.ws.client.EndpointIFInvocationHandler.invoke(EndpointIFInvocationHandler.java:106)
         at $Proxy342_10002.salesOrderByIDQueryResponseIn(Unknown Source)
         at testsoid.SalesOrderByIdResponse.doGet(SalesOrderByIdResponse.java:61)
         ... 30 more
    Caused by: HTTP Status-Code 407: Proxy Authentication Required
         at com.sun.xml.ws.transport.http.client.HttpClientTransport.checkResponseCode(HttpClientTransport.java:305)
         at com.sun.xml.ws.transport.http.client.HttpClientTransport.getHeaders(HttpClientTransport.java:158)
         at com.sun.xml.ws.util.SOAPConnectionUtil.getSOAPMessage(SOAPConnectionUtil.java:57)
         ... 39 more
    <BR><BR><b>Root cause:</b>
    javax.xml.ws.WebServiceException: HTTP Status-Code 407: Proxy Authentication Required
         at com.sun.xml.ws.util.SOAPConnectionUtil.getSOAPMessage(SOAPConnectionUtil.java:81)
         at com.sun.xml.ws.encoding.soap.client.SOAPXMLDecoder.toSOAPMessage(SOAPXMLDecoder.java:100)
         at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.receive(SOAPMessageDispatcher.java:438)
         at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.doSend(SOAPMessageDispatcher.java:258)
         at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.send(SOAPMessageDispatcher.java:137)
         at com.sun.xml.ws.encoding.soap.internal.DelegateBase.send(DelegateBase.java:84)
         at com.sun.xml.ws.client.EndpointIFInvocationHandler.implementSEIMethod(EndpointIFInvocationHandler.java:172)
         at com.sun.xml.ws.client.EndpointIFInvocationHandler.invoke(EndpointIFInvocationHandler.java:106)
         at $Proxy342_10002.salesOrderByIDQueryResponseIn(Unknown Source)
         at testsoid.SalesOrderByIdResponse.doGet(SalesOrderByIdResponse.java:61)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:59)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:31)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:431)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:288)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:376)
         at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:85)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:160)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:308)
         at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:221)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:137)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:229)
    Caused by: HTTP Status-Code 407: Proxy Authentication Required
         at com.sun.xml.ws.transport.http.client.HttpClientTransport.checkResponseCode(HttpClientTransport.java:305)
         at com.sun.xml.ws.transport.http.client.HttpClientTransport.getHeaders(HttpClientTransport.java:158)
         at com.sun.xml.ws.util.SOAPConnectionUtil.getSOAPMessage(SOAPConnectionUtil.java:57)
         ... 39 more
    javax.xml.ws.WebServiceException: HTTP Status-Code 407: Proxy Authentication Required
         at com.sun.xml.ws.util.SOAPConnectionUtil.getSOAPMessage(SOAPConnectionUtil.java:81)
         at com.sun.xml.ws.encoding.soap.client.SOAPXMLDecoder.toSOAPMessage(SOAPXMLDecoder.java:100)
         at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.receive(SOAPMessageDispatcher.java:438)
         at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.doSend(SOAPMessageDispatcher.java:258)
         at com.sun.xml.ws.protocol.soap.client.SOAPMessageDispatcher.send(SOAPMessageDispatcher.java:137)
         at com.sun.xml.ws.encoding.soap.internal.DelegateBase.send(DelegateBase.java:84)
         at com.sun.xml.ws.client.EndpointIFInvocationHandler.implementSEIMethod(EndpointIFInvocationHandler.java:172)
         at com.sun.xml.ws.client.EndpointIFInvocationHandler.invoke(EndpointIFInvocationHandler.java:106)
         at $Proxy342_10002.salesOrderByIDQueryResponseIn(Unknown Source)
         at testsoid.SalesOrderByIdResponse.doGet(SalesOrderByIdResponse.java:61)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:59)
         at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:31)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:431)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:288)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:376)
         at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:85)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:160)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:308)
         at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:221)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:137)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:229)
    Caused by: HTTP Status-Code 407: Proxy Authentication Required
         at com.sun.xml.ws.transport.http.client.HttpClientTransport.checkResponseCode(HttpClientTransport.java:305)
         at com.sun.xml.ws.transport.http.client.HttpClientTransport.getHeaders(HttpClientTransport.java:158)
         at com.sun.xml.ws.util.SOAPConnectionUtil.getSOAPMessage(SOAPConnectionUtil.java:57)
         ... 39 more

  • I am unable to import new photos in iPhoto 11. Perhaps I should just reinstall from iLife disk? Will it affect my photos in any way?

    Hello,
    I have iPhoto 11 installed on my MacBook. I am now unable to import new photos using USB or by plugging the camera directly into the laptop. Never had that probem before with this camera. Perhaps just reinstall iPhoto from the iLife disk?

    Hello Terence,
    Okay I will try reformating the camera's card. However all is well when I export photos to my iMac at home or onto my iPad.
    If your suggestion does not work should I try reinstalling iPhoto from the iLife disk? If so, how do I go about doing that or is there a website somewhere explaining this?
    Regards,
    Tom

  • SAP Ides ECC 6.0 Install: Import ABAP - Package SAPDODS Error - ORA-00903

    Experts,
    Good Morning!
    I'm trying to install SAP IDES ECC 6.0 version on a Windows 2008 R2 Server with Oracle 11g DB (11.2).
    System Info: 16GM RAM & 600GB Hdd. Prereqs passed.
    I'm getting the following error during the Import ABAP phase (16 of 29) in the sapinst log:
    "An error occurred while processing option Enhancement Package 6 for SAP ERP 6.0 > SAP Application Server ABAP > Oracle > Central System > Central System( Last error reported by the step: Program 'Migration Monitor' exits with error code 103. "
    Here's the dump of import_monitor.java.log
    java version "1.4.2_32"
    Java(TM) 2 Runtime Environment, Standard Edition (build 4.1.012)
    SAP Java Server VM (build 4.1.012 1.6-b03, Oct 21 2011 14:18:45 - 41_REL - optU - windows amd64 - 6 - bas2:161688 (mixed mode))
    Import Monitor jobs: running 1, waiting 1, completed 141, failed 0, total 143.
    Loading of 'SAPDODS' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 141, failed 1, total 143.
    Here's the dump of import_monitor.log:
    INFO: 2014-07-05 13:42:53
    Data codepage 4103 is determined using TOC file 'C:\Target\Export1\DATA\D010TAB.TOC' for package 'D010TAB'.
    TRACE: 2014-07-05 13:42:53 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDODS' import package is started.
    TRACE: 2014-07-05 13:42:53 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPDODS' import package into database:
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -stop_on_error
    ERROR: 2014-07-05 13:42:54 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDODS' import package is interrupted with R3load error.
    Process 'C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -stop_on_error' exited with return code 2.
    For mode details see 'SAPDODS.log' file.
    Standard error output:
    sapparam: sapargv(argc, argv) has not been called!
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    WARNING: 2014-07-05 13:43:21
    Cannot start import of packages with views because not all import packages with tables are loaded successfully.
    WARNING: 2014-07-05 13:43:21
    1 error(s) during processing of packages.
    INFO: 2014-07-05 13:43:21
    Import Monitor is stopped.
    Here's the log of SAPDODS...
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140705134253
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/720_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.4 [UNICODE]
    Compiled Aug 16 2011 02:26:36
    patchinfo (patches.h): (0.098) DB6: correction for R3load PL 91 on HP-UX and SOLARIS (note 1609719)
    process id 1488
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -stop_on_error
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF16
    (SQL) INFO: Searching for SQL file SQLFiles.LST
    (SQL) INFO: SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file C:\Target\Export1\DB/SQLFiles.LST
    (SQL) INFO: C:\Target\Export1\DB/SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file DODS.SQL
    (SQL) INFO: DODS.SQL not found
    (SQL) INFO: Searching for SQL file C:\Target\Export1\DB/ORA/DODS.SQL
    (SQL) INFO: found C:\Target\Export1\DB/ORA/DODS.SQL
    (SQL) INFO: Trying to open C:\Target\Export1\DB/ORA/DODS.SQL
    (SQL) INFO: C:\Target\Export1\DB/ORA/DODS.SQL opened
    (DB) ERROR: DDL statement failed
    (DROP TABLE "/BI0/APERS_BOD00")
    DbSlExecute: rc = 103
      (SQL error 942)
      error message returned by DbSl:
    ORA-00942: table or view does not exist
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    DbSl Trace: Error 903 in exec_immediate() from oci_execute_stmt(), orpc=0
    DbSl Trace: ORA-00903 occurred at SQL stmt (parse error offset=15)
    (DB) ERROR: DDL statement failed
    (  CREATE TABLE [/BI0/APERS_BOD00]         (  [TCTUSERNM] nvarchar(000012)          NOT NULL  ,           [TCTOBJVERS] nvarchar(000001)          NOT NULL  ,           [TCTSYSID] nvarchar(000010)          NOT NULL  ,           [TCTQUACT] nvarchar(000001)          NOT NULL  ,           [TCTOBJNM] nvarchar(000040)          NOT NULL  ,           [TCTTLOGO] nvarchar(000004)          NOT NULL  ,           [RECORDMODE] nvarchar(000001)          NOT NULL  ,           [TCTTIMSTMP] nvarchar(000014)          NOT NULL   )          WITH ( DATA_COMPRESSION = PAGE )   )
    DbSlExecute: rc = 99
      (SQL error 903)
      error message returned by DbSl:
    ORA-00903: invalid table name
    (DB) INFO: disconnected from DB
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140705134254
    FYI - A retry does not help. Also tried to search for the error on scn, google but haven't been able to find the right solution.
    Can you help?
    Regards,
    Cobain.

    Divyanshu - sorry to ask but can you explain why i need to update r3load and r3trans to resolve this error? Just want to understand why I'm doing a correction so I can learn from the same.
    Also, can you clarify the file update process:
    For R3load:
    a) the r3load used by the command is dated 8/16/2011 (location:C:\usr\sap\AVV\SYS\exe\uc\NTAMD64\...)
    b) the r3load i have in my db folder is dated 10/23/2011 (location:C:\Final\Installer\BS7i2011_Installation_Master_\DATA_UNITS\BS2011_IM_WINDOWS_X86_64\ORA\UC\...)
    Do i replace (a) with (b)?
    For R3trans:
    How do I update this file?
    - Cobain.

  • Import support package SAPKB70015 at PI System is stuck on IMPORT_PROPER

    Dear Expert,
    I have some problem when import support package SAPKB70015 at PI System.
    IT had shown as below.
    Main import
    Transport request : SAPKB70015
    System : CXI
    tp path : tp
    Version and release: 372.04.08 700
    sap_dext called with msgnr 4:
    db call info
    function: db_report_interface
    fcode: UPDATE_REPORT
    tabname: TEXT
    len (char): 40
    key: /OSP/CL_CJS_CONTEXT===========CP
    retcode: 4
    Main import
    End date and time : 20081120021353
    Ended with return code: ===> 12 <===
    And I checked the transport log,It shown as below.
    4 ETW690 COMMIT "360444" "53156878"
    3 ETW674Xstart import of "LIMUCLSD/OSP/CL_CJS_CONTEXT" ...
    4 ETW000 1 entry for TADIR updated (R3TRCLAS/OSP/CL_CJS_CONTEXT ).
    4 ETW000 REPOS /OSP/CL_CJS_CONTEXT===========CP A replaced.
    4 ETW000 dev trc ,00000 Thu Nov 20 02:13:53 2008 39924798 39.924798
    4 ETW000 http://dbsloci. ,00000 *** ERROR => Cannot update a LOB column for more than one row piecewise
    4 ETW000 85 39.924883
    4 ETW000 dev trc ,00000 sc_p=0x110f57d68,no=55,idc_p=0x110f70638,con=0,act=1,slen=125,smax=256,#vars=5,stmt=0x111e1f700,tabl
    e=REPOTEXT
    4 ETW000 66 39.924949
    4 ETW000 dev trc ,00000 prep=0,lit=0,nsql=0,lobret=1,#exec=1,dbcnt=2,upsh_p=(nil),ocistmth_p=0x111e20098
    4 ETW000 53 39.925002
    4 ETW000 dev trc ,00000 IN : cols=4,rmax=1,xcnt=1,rpc=0,rowi=0,rtot=1,upto=4294967295,rsize=84,vmax=32,bound=1,iobuf_p=0x111
    0a4220,vda_p=0x111e21a60
    4 ETW000 58 39.925060
    4 ETW000 dev trc ,00000 lobs=1,lmax=4,lpcnt=0,larr=0x111e22180,lcurr_p=(nil),rret=0
    4 ETW000 48 39.925108
    4 ETW000 dev trc ,00000 OUT: cols=1,rmax=0,xcnt=0,rpc=0,rowi=0,rtot=0,upto=0,rsize=0,vmax=32,bound=0,iobuf_p=(nil),vda_p=0x1
    11e222c0
    4 ETW000 55 39.925163
    4 ETW000 dev trc ,00000 lobs=1,lmax=4,lpcnt=0,larr=0x111e22220,lcurr_p=(nil),rret=2
    4 ETW000 47 39.925210
    4 ETW000 dev trc ,00000 UPDATE "REPOTEXT" SET "DATA" = :A0 WHERE "PROGNAME" = :A1 AND "R3STATE" = :A2 AND "LANGUAGE" = :A3
    4 ETW000 51 39.925261
    4 ETW000 dev trc ,00000 RETURNING "DATA" INTO :A4; 29 39.925290
    4 ETW000 dbrepolo ,00735 ***LOG BZY=>unexpected return code 2 calling dbrepolo#? @ 735
    4 ETW000 75 39.925365
    2EETW000 sap_dext called with msgnr "4":
    2EETW000 -
    db call info -
    2EETW000 function: db_report_interface
    2EETW000 fcode: UPDATE_REPORT
    2EETW000 tabname: TEXT
    2EETW000 len (char): 40
    2EETW000 key: /OSP/CL_CJS_CONTEXT===========CP
    2EETW000 retcode: 4
    1 ETP154 MAIN IMPORT
    1 ETP110 end date and time : "20081120021353"
    1 ETP111 exit code : "12"
    1 ETP199 ######################################
    System information
    SAP = NW2004s SR3
    Database = Oracle 10.2.0.2
    OS versions = AIX 5.3
    Tp version = 700 Unicode 179
    R3trans version = 700 Unicode 183
    PS.I checked tp connect return code 0 and R3trans u2013s return code 0
    Could you please suggest how to fix this problem?
    Thank you very much
    Jaturong

    Iu2019ve updated database statistics and then try to reimport the package again. But It canu2019t import package.
    Are you still getting the same error after you retry the statistics update?

Maybe you are looking for

  • How do I set up Thunderbird to access Mediacom email account

    Trying to set up Thunderbird to access email on Mediacom email servive. should be encrypted, but Thundeerbird only finds unencrypted connection. When I try to enter settings, Tbird fails to find access. If i try to accept lower security settings, Tbi

  • Internal 500 error while accessing TFS web site

    Hi all, I have installed & configured Team Foundation Server 2013 & SharePoint Foundation 2013 in my environment. I am facing an issue whenever I try to open the TFS site like "https://nc1vwstfs.ranchi.com/tfs". I am getting "HTTP 500 Internal Server

  • Upgrading to 9iAS 9.0.2.1 from OAS 4.0.8.1

    Hi, I would like to use OC4J to develop in J2EE but i have some applications that are developed with the pl/sql web toolkit and running with OAS 4.0.8.1. So i have few questions: 1) Can i use easily 9iAS to have both J2EE applications and web toolkit

  • How to open files (NOT copy) from external hard drive

    Hello there, I have a Western Digital My Passport external harddrive. I bought the hard drive so I could take stuff like my music off my laptop harddrive, free up space and make it run smoother. Problem is, every time I select a music file on the ex

  • Problem on starting oim -11G Release 2

    Hi All, we get the below error when starting oim, do anyone has ide about that?Any help is strongly appreciated.. Caused By: oracle.mds.exception.MDSExceptionList: MDS-01329: unable to load element "persistence-config" MDS-01370: MetadataStore config