XMLPullParserException

Hello

I use KSoap2 to try to connect to the .NET Web Service. After the HTTPTransport.call (...) I get the following exception:

org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://www.w3.org/2001/12/soap-envelope} envelope ({positionTART_TAG <> http://schemas.xmlsoap.org/soap/envelope/} SOAP: envelope > @ 1:207 to java.io.InputStreamReader@1730913( )

Here is my code:

                HttpTransport tran = new HttpTransport(url);

        String method_name = "Test";
        String service_namespace = colUrls.getUrl(colUrls.TARGET_NAMESPACE);
        String soap_action = colUrls.getUrl(colUrls.TARGET_NAMESPACE) + "Test";
        SoapObject rpc = new SoapObject(service_namespace, method_name);
        //set the parameter
        int id = DeviceInfo.getDeviceId();
        String deviceId = Integer.toString(id, 16).toUpperCase();
        rpc.addProperty("deviceId", deviceId);

        //create the envelop
        SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12);
        envelope.dotNet = true;
        envelope.encodingStyle = SoapSerializationEnvelope.ENC;
        envelope.setOutputSoapObject(rpc);

        SoapObject response = null;

        tran.setXmlVersionTag("");

        try {
            tran.call(soap_action, envelope);
            //get the data
            response = (SoapObject) envelope.bodyIn;
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (XmlPullParserException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

It seems that the Soap request is not well formatted, but I don't know what I'm doing wrong.

Thank you

Daniel

I was able to solve the problem. In fact, there was nothing wrong with the code. I ran the clean.bat for the Simulator (for the Eclipse Simulator directory) that seems to fix the problem.

I still don't understand why this error occurred, but at least the code works now.

Thank you

Daniel

Tags: BlackBerry Developers

Similar Questions

  • KSOAP ANALYSIS

    Hey Hi all

    I'm trying my hands with KSOAP for the first time and after trying for a long time, I wrote here to help you.

    I need this post

    
    http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
      
        http://mobile.expenseanywhere.com/">
          
            string        string        string            
    

    Here I've stuck with this Tag I do not know how to handle these requests with KSOAP
    Please help me in this.

    This is my Code

    CPP = new SoapObject SoapObject (space of names, MethodName);
    SoapObject CPP = new SoapObject ("", "AuthToken");
    rpc.addProperty ("CorporateId", "CID");
    rpc.addProperty ("Username", "one");
    rpc.addProperty ("Password", "PWD");
    RPC1. AddProperty ("", CPP);
    Envelope SoapSerializationEnvelope = new SoapSerializationEnvelope (SoapEnvelope.VER11);
    envelope.bodyOut = rpc;
    envelope.dotNet = true;
    envelope.encodingStyle = SoapSerializationEnvelope.ENC;

    Ht HttpTransport = new HttpTransport (URL);

    HT. Debug = false;
    ht.setXmlVersionTag(")");
    String result = null;
    Try
    {
    HT. Call (SOAPAction, envelope);
    String s = ht.requestDump;
    s = ht.responseDump;

    result = (envelope.getResponse ()) m:System.NET.SocketAddress.ToString ();
    Body of SoapObject = (SoapObject) envelope.bodyIn;
    result = (String) body.getProperty("verifyLoginResult").toString ();
    System.out.println ("result");
    }
    catch (org.xmlpull.v1.XmlPullParserException x 2)
    {
    Dialog.Inform (EX2.getMessage ());
    }
    catch (Exception ex)
    {
    Dialog.Inform (ex.getMessage ());
    }

    Problem solved

    Thanks for the Suggestions and help

    Concerning

    Deepak

  • IOException zero while making the SOAP request using ksoap2 library.

    Hi I am trying to implement the SOAP request using ksoap2 library, but I'm on it running on the Torch 9810, IOException zero

    httpTransport.call (SOAP_ACTION, soapEnvelope); exception.


    Code is:

    private String NAMESPACE="samplenamespace";
        private String url="webserviceurl";
        private String METHODNAME="getrecords";
        private String SOAP_ACTION=NAMESPACE+"/"+METHODNAME;
    
        private void sendSoapRequest(String email, String startDate, String enddDate) {
            SoapSerializationEnvelope soapEnvelope = new SoapSerializationEnvelope(
                    SoapEnvelope.VER11);
            soapEnvelope.implicitTypes = true;
            soapEnvelope.dotNet = true;
            SoapObject soapReqObject = new SoapObject(
                    NAMESPACE, METHODNAME);
    
            soapEnvelope.headerOut = new Element[1];
            soapEnvelope.headerOut[0] = buildAuthHeader();
            soapReqObject.addProperty("email", email);
            soapReqObject.addProperty("startdate", startDate);
            soapReqObject.addProperty("enddate", endDate);
    
            soapEnvelope.setOutputSoapObject(soapReqObject);
            HttpTransport httpTransport = new HttpTransport(url
                    + ";deviceSide=true;interface=wifi");
            httpTransport.debug=true;
            try {
                httpTransport.call(SOAP_ACTION,
                        soapEnvelope);
            } catch (final IOException e) {
                e.printStackTrace();
                UiApplication.getUiApplication().invokeLater(new Runnable() {
    
                    public void run() {
                        Dialog.alert("IOException " + e.getMessage());
    
                    }
                });
    
            } catch (final XmlPullParserException e) {
                e.printStackTrace();
                UiApplication.getUiApplication().invokeLater(new Runnable() {
    
                    public void run() {
                        Dialog.alert("XmlPullParserException " + e.getMessage());
    
                    }
                });
            } catch (final Exception e) {
                e.printStackTrace();
                UiApplication.getUiApplication().invokeLater(new Runnable() {
    
                    public void run() {
                        Dialog.alert("Exception " + e.getMessage());
    
                    }
                });
            }
        }
    
        private Element buildAuthHeader() {
            Element h = new Element().createElement(NAMESPACE, "headername");
            Element username = new Element()
                    .createElement(NAMESPACE, "username");
            username.addChild(Node.TEXT, "usernametext");
            h.addChild(Node.ELEMENT, username);
            Element pass = new Element().createElement(NAMESPACE, "password");
            pass.addChild(Node.TEXT, "passwordtext");
            h.addChild(Node.ELEMENT, pass);
            return h;
        }
    

    I did tried to check a large number of post on KSOAP2 supportforum. Also made changes, but none of them succeeded.

    Any help?

    Solved

    problem was passing parameters (incorrect parameters format)

  • Exception during consumption of huge data from a web service.

    Hello

    I m developing an application to receive data from a Web Service and retain the data received on the device.

    App is developed for OS 4.3.0

    The Web Service call is made using Ksoap. The Code receives the data from the web service, analyzes the data and stores it in an object. This object is then persisted on the device. The data are essentially the coordinates. It takes the number of contacts required as input and passes it to the Web Service. The Web Service then returns the requested number of records

    The code works if I ask data of up to ~ 600 cases. If I specify more than 600 cases, it throws the following exception

    Chain rg.xmlpull.v1.XmlPullParserException:unexpected type (position: TEXT entity request in T...@1:24 in java.io.InputStreamReader@1f87d1b4)

    When I debugged using Eclipse, this exception is thrown on this statement ht.call (soapAction, envelope);

    Would it be because of a time-out? OT is because the Analyzer is not able to analyze huge data?

    Given that this exception occurs on the declaration of ht.call, I guess the problem is with the web service call and not with the code for persistent storage.

    I have included the code here... Is could someone please show me what the problem is?

    C ode to call Web Services

    public Vector getWebData(String count)
        {
    
       Vector personsVectorto = new Vector();
        try
        {
        StringBuffer receivedContent = new StringBuffer();
        String serviceUrl = "........";
        String serviceNamespace = ".....";
        String soapAction = ".........";
    
       SoapObject rpc = new SoapObject(serviceNamespace, "GetContactsList");
            //rpc.addProperty("listSize", "5");
            rpc.addProperty("listSize", count);
         SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
    
            envelope.bodyOut = rpc;
    
            envelope.dotNet = true;
            envelope.encodingStyle = SoapSerializationEnvelope.XSD;
            HttpTransport ht = new HttpTransport(serviceUrl);
            ht.debug = true;
    
            ht.call(soapAction, envelope); // This is where thexmlpullparser exception occurs
    
     Object obj = envelope.getResponse();
            SoapObject soapResult = (SoapObject)obj;
    
                for(int i=0; i < soapResult.getPropertyCount(); i++)
    
                {
                  PersonDTO personto = new PersonDTO();
               SoapObject choice = (SoapObject)soapResult.getProperty(i);
                if( choice!=null)
                {
                    for(int j = 0; j < choice.getPropertyCount(); j++)
                    {
                      receivedContent.append(" Reading Property Number" + String.valueOf(j) + " Value = " + choice.getProperty(j).toString());
    
         if (j==0) personto.setElement(1,choice.getProperty(j).toString());
        if (j==1) personto.setElement(2,choice.getProperty(j).toString());
        if (j==2) personto.setElement(3,choice.getProperty(j).toString());
        if (j==3) personto.setElement(4,choice.getProperty(j).toString());
        if (j==4) personto.setElement(5,choice.getProperty(j).toString());
         if (j==5) personto.setElement(6,choice.getProperty(j).toString());
         if (j==6) personto.setElement(7,choice.getProperty(j).toString());
          if (j==7) personto.setElement(8,choice.getProperty(j).toString());
         if (j==8) personto.setElement(9,choice.getProperty(j).toString());
       if (j==9) personto.setElement(10,choice.getProperty(j).toString());
                    }
                }                 
    
                personsVectorto.addElement(personto);
                //storepersistentobject(personsVectorto);
            }
    
            }catch(org.xmlpull.v1.XmlPullParserException ex2)
            {
                String bah1 = ex2.toString();
                Dialog.alert("String: " + bah1);
                String bah2 = ex2.getMessage();
                Dialog.alert("Message: " + bah2); 
    
            }       
    
            catch(Exception ex){
                String bah = ex.toString();
                Dialog.alert("Response: " + bah);
    
                }
    
                return personsVectorto;
        }
    

    Thank you

    Hi Philippe,.

    First Question: Print server response

    Yes - I think for you too in fact just print the answer you'll have to do a regular HTTP call to the server and print it like this:

    StringBuffer sb = new StringBuffer();

    int thumb;

    HttpConnection httpConn = (HttpConnection) Connector.open (url);

    httpConn.setRequestMethod (HttpConnection.GET); or by POST depending on your needs

    in = httpConn.openInputStream ();

    While ((thumb = in.read ())! = - 1).

    {

    SB. Append ((Char) inCh);

    }

    System.out.println ("server response:" + sb.toString ());

    Try and see if you get a request too large entity. Note: you should probably put your SOAP request in GET or POST http request.

    Second Question: Is zipping required?

    This is how I chose to do for my particular needs that transfer me a large amount of data and the compression algorithm seems to keep all my data well below 40 k. However, it is not the only way, you could actually make several requests and get data piece by piece, but I don't know if it works well with SOAP responses. Depending on the type of Network Setup Blackberry you have, you can also set this limit to be higher (I think a maximum of 1 024 Ko for BES).

    Third Question: Timeout Logging

    For wait times, usually the exception you get should indicate that there was a timeout, but if you are suspicious that it's a timeout check your web service and see.

    Hope that helps!

    R

  • Sample Web service

    Hi all

    I have searched many sites to something simple to access the webservice in blackberry but couldn't find a solution. Almost all examples follow JDE environment that is not so in my case.

    some sites that I searched recently are:

    ( http://www.blackberryforums.com/developer-forum/155972-blackberry-ksoap2-tutorial-4.html#post1747966 1).

    ( http://craigagreen.com/index.php?/Blog/blackberry-and-net-webservice-tutorial-part-1.html 2).

    I use following:

    1 eclipse IDE

    2-ksoap2-j2me-core-prev - 2.1.2.jar

    Here is my code

    HOME


    public class Home extends UiApplication {
    
        public Home() {
    
                HomeScreen home= new HomeScreen();
                pushScreen(home);
        }
    
        public static void main(String args[])
        {
    
            Home home= new Home();
            home.enterEventDispatcher();
        }
    
    }
    

    MY WebserviceHelper CLASS:

    public class WebServiceHelper {
    
        public String Helper() {
    
            String serviceUrl = "http://172.16.5.132:8080/CalculatorApp/CalculatorWSService";
            String serviceNamespace = "http://calculator.me.org/";
            String soapAction = "";
            String methodName = "add";
    
            SoapObject rpc = new SoapObject(serviceNamespace, methodName);
            rpc.addProperty("i", "1");
            rpc.addProperty("j", "1");
    
            SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
    
            envelope.bodyOut = rpc;
            envelope.dotNet = false;
            envelope.encodingStyle = SoapSerializationEnvelope.ENC;
    
            HttpTransport ht = new HttpTransport(serviceUrl);
            ht.debug = true;
    //      ht.setXmlVersionTag("");
    
            String result = null;
    
            try
            {
            ht.call(soapAction, envelope);
            result = envelope.getResponse().toString();
            return result;
            }
            catch(org.xmlpull.v1.XmlPullParserException ex2){
                return "ex 1";
            }
            catch(Exception ex){
                return ex.getMessage();
            }
        }
    }
    

    SCREEN:

    public class HomeScreen extends MainScreen {
    
        public HomeScreen()
        {
            add(new RichTextField("Welcome"));
            WebServiceHelper obj= new WebServiceHelper();
            add(new RichTextField(obj.Helper()));
        }
    }
    

    OUTPUT:

    Welcome

    Local connection timed out after ~ 12000

    Please help me...

    Thanks in advance.


    Hi all

    I would like to offer my apologies to all for my ignorance. The code above worked well and did not previously, we had a few problems with the server...

  • KSOAP2 working on the Simulator, but failed on the device. Help, please!

    Hi all. Please, I need support on this issue.

    I have a request of KSOAP2 running which:

    1) Œuvres ALLWAYS on the Simulator (9700 Simulator)

    2) FAILS on the device when you use 3 G Internet Link

    3) work on the device when hard reseting it and directly using Wi - Fi link (if you switch to 3 G, it starts failing).

    When it do I get the following error:

    type of org.xmlpull.v1.XmlPullParserException:Unexpected (position: TEXT SocketException:...@1:33 in java.io.InputStreamReader@hexhere)

    Some other times I get an IO error faced:

    net.rim.device.cldc.io.ippp.SocketBaseIOException: Connection timed Out

    The funny thing is that it works through 3 G as 1 in 40 times... it seems that 3 G connection is too slow to KSOAP2 to work properly, or something like that. The complex type is small (8 strings).

    My webservice is a webservice VB.NET located on the production IIS server. It works well because it responds to any request of Simulator.

    Additional data:

    -Other Internet applications of device (such as the Internet browser) works well through 3G even when my application does not always succeed. Coverage of 3G service is excellent.

    -J' use JRE 5.0.0.

    -Device is a BlackBerry Bold 9700

    -Webservice is written in VB.NET in the production on the Internet Server, and it works perfectly because it responds to each request of Simulator.

    -J' use javaloader.exe to deploy the cod to the device files (both, ksoap library cod and cod of my project)

    -L'application is not signed.

    -Once the application starts breaks down (when you switch to 3G) it maintains in default if you return to the WiFi again.

    Here is my code:

    String res="";
    boolean error=false;
    Vector seguimientos = null;
    
    SoapObject m_Soapobject=new SoapObject("urn:tempuri", "GetSeguimientos");
    SoapSerializationEnvelope m_Envelope=new SoapSerializationEnvelope(SoapEnvelope.VER11);
    m_Envelope.encodingStyle = SoapSerializationEnvelope.ENC;
    
    m_Soapobject.addProperty("strInstance", "r2sistemas");
    m_Soapobject.addProperty("user", "myuser");
    m_Soapobject.addProperty("password", "mypassword");
    m_Soapobject.addProperty("comercialId", "3");
    
    m_Envelope.addMapping("urn:tempuri/encodedTypes", "Seguimiento", new Seguimiento().getClass());
    m_Envelope.bodyOut = m_Soapobject;
    m_Envelope.setOutputSoapObject(m_Soapobject);
    
    HttpTransport ht = new httpTransport("http://www.productionserver.com/service1.asmx");
    ht.setXmlVersionTag("");
    
    try {
        ht.call("urn:tempuri/GetSeguimientos", m_Envelope);
        SoapObject respuesta=(SoapObject)m_Envelope.bodyIn;
        seguimientos=(Vector)respuesta.getProperty(0);
        } catch (IOException e) {
        error=true; res="IO Problem: " + e.toString();
        } catch (XmlPullParserException e) {
        error=true; res="XMLParser problem: " + e.toString();
        }
    
    if(error!=true) {
        Seguimiento seg=(Seguimiento)seguimientos.elementAt(1);
        res=seg.Comentario;
        }
    
    this.add(new LabelField("aa"+ res));
    

    I read on this forum that ksoap2 cannot treat the http error messages. You must download the KSOAP source and change it to do this. Something like ServiceConnectionMidp. The message is this: link

    I use a port KSOAP2 library: ksoap2-j2me-core-prev - 2.1.2.jar, like I said it works fine on the Simulator. I tried to download the source code of KSOAP to debug in the failing methods, but was unnable to do compile ok on Eclipse.

    I really am stuck at this point. Please, any help would be great.

    Thank you in advance.

    Ok. Further reading took me to the problem.

    AFAIK, there are 5 ways to connect to web addresses from a BlackBerry device.

    Of course, the BB Simulator uses one that works with my WS. When my BB is connected via wifi it works as well. However, when I use the 3g from my device connection, I should mention the destinies of correct connection on the connection URL parameters.

    That's what I did:

    I read this: 1 Source

    And this (Spanish): Source 2

    Of course, I noticed that my BB is connected to a BES company, I must indicate the correct ConnectionUID to my address book of device on the connection string. So now the line in my code is:

    HttpTransport ht = new HttpTransport("http://www.address.com/service1.asmx;deviceside=false;ConnectionUID=YOURCONNECTIONUID");
    

    To find your UID connection, take your device, go to Options - Advanced Options - service book. Choose a book of service applications that connects successfully on your device (in my case Blackberry Internet Browser service), open it and copy the ConnectionUID. Then, paste it in the connection string.

    Now, it works great!

    My next challenge is to find connection string parameters correctly so that the application works on any device, not only on my ones company BES.

    Someone knows what should be the standard setting?

    I hope that my help of inquiry.

    P.S. still cannot complete successfully ServiceConnectionMidp...

  • NoClassDefFoundError

    I have an application that generates correctly, but gives a NoClassDefFoundError at runtime. I use Eclipse 3.5.2 with the following Blackberry SDK plugins:

    BlackBerry Java plug-in 1.1.2.201004161203 - 16 net.rim.EclipseJDE.feature.group
    BlackBerry Java SDK 5.0.0.25 net.rim.ejde.feature.componentpack5.0.0.feature.group
    BlackBerry Java SDK 4.7.0.53 net.rim.ejde.feature.componentpack4.7.0.feature.group
    BlackBerry Java SDK 4.6.1.36 net.rim.ejde.feature.componentpack4.6.1.feature.group
    BlackBerry Java SDK 4.6.0.21 net.rim.ejde.feature.componentpack4.6.0.feature.group
    BlackBerry Java SDK 4.5.0.21 net.rim.ejde.feature.componentpack4.5.0.feature.group

    NoClassDefFoundError is usually the result of a missing JAR, but in this case, I try to instantiate a class from my application JAR. In fact, the class in question is an inner class from another class that I already instantiated. Here is a fragment of the inner class:

    public class StructArrayFirst {    // Class implementation snipped...
    
        public static class Marshaller implements Marshal {
            private final String namespace;
            private final String name;
            private SoapSerializationEnvelope envelope;
    
            public Marshaller(String namespace, String name) {
                this.namespace = namespace;
                this.name = name;
            }
    
            public Object readInstance(XmlPullParser parser, String namespace, String name, PropertyInfo expected)
                    throws IOException, XmlPullParserException {
                String exitOnTag = parser.getName();
                if (!exitOnTag.equals(name)) {
                    throw new RuntimeException("Invalid tag. Expecting " + name + " got " + exitOnTag);
                }
    
                parser.nextTag();
    
                // Comment out this line and NoClassDefFoundError goes away.
                Object instance = readReturnInstance(parser);
    
                parser.require(XmlPullParser.END_TAG, null, name);
                return instance;
            }
    
            private Object readReturnInstance(XmlPullParser parser) throws XmlPullParserException, IOException {
                // Function body snipped...
            }
    

    I have the instantiate like this:

        public Marshal getMarshaller() {
            return new StructArrayFirst.Marshaller("", mTag);
        }
    

    The code as shown gives a NoClassDefFoundError when I try to make the instantiation. If I comment out the call to readReturnInstance, the problem goes away:

                // Comment out this line and NoClassDefFoundError goes away.
                //Object instance = readReturnInstance(parser);
    

    I'm puzzled as to why the presence of this line of code would result in a NoClassDefFoundError. Perhaps miss something elsewhere. Thanks for any light you might be able to do on that.

    -rich

    Found the problem. There was a code (not shown above) that attempted to access the class of primitive types (for example, int.class). It works in some Java environments (the code in question came originally from an Android project). BlackBerry obviously can't get an object of class for primitive types, but the compiler don't is not complaint. As long as the function that contains the offending code is never called, the class can be instantiated at run time. Perhaps packer is smart enough to omit unused functions. This caused some confusion since commenting the line mentioned above does not really solve the problem, but it causes the offending function not called. Would be nice if the compiler is complaining about this.

  • Cannot find class file 'org.ksoap2.serialization.SoapObject '.

    Hello

    I'm writing a simple application that calls a webservce built in .net. I imported the required libraries and I have included the following:

    Try
    {
    String ServiceUrl = "http://localhost:2691 / Service1.asmx";
    String serviceNamespace = "http://tempuri.org/";
    String SoapAction = "http://tempuri.org/HelloWorld";
                                    
    SoapObject CPP = new SoapObject (serviceNamespace, "HelloWorld");
    Envelope SoapSerializationEnvelope = new SoapSerializationEnvelope (SoapEnvelope.VER11);
                                   
    envelope.bodyOut = rpc;
    envelope.dotNet = true;
    envelope.encodingStyle = SoapSerializationEnvelope.XSD;
                                   
    Ht HttpTransport = new HttpTransport (ServiceUrl);
    HT. Debug = true;
                                   
    HT. Call (SOAPAction, Envelope);
                                   
    String result = (envelope.getResult ()) m:System.NET.SocketAddress.ToString ();
                                   
    }
    {} catch (org.xmlpull.v1.XmlPullParserException x 2)

    }
    catch (Exception ex)
    {
                                   
    }

    If anyone can help me with this then I would be very happy

    Thank you
    Saket

    as ksoap2 is attached only in the form of jar file your jde is not its source code. This is why we can't get into the classes and methods of ksoap2. generally, you do not have to, in other cases, you can download the source code and create a project own dependence.

    Please mark the thread as solved if your problem is resolved.

  • O11n package Plugin Maven-package: import-package causes error on VCO (ClassNotFoundException)

    When you try to import a package using the maven plugin, I now see a ClassNotFoundException thrown of vCO, which returns a 500 Server error.  I also tried the vco-cli-java - 6.0.2.jar just to see if I could export a package through the cli and which are perfectly worked.  Not sure if something changed in the API that was not updated to 6.0.2 or if I'm doing something wrong.  I tried 1.7.0_67 and 1.8.0_45 java


    Any thoughts are appreciated.

    Thank you


    Tim


    o11n mvn package: import-package DserverUrl-= vcoadmin: [email protected] : 8281 - Dmaven.wagon.http.ssl.insecure = true - Dmaven.wagon.http.ssl.allowall =-X-Djavax.net.ssl.trustStore=../trust.jks-Djavax.net.ssl.trustStorePassword=test - DignoreServerCertificate = true true

    Catalina.out VCO OUTPUT

    VCO version 6.0.2

    June 23, 2015 19:40:36 org.apache.catalina.core.StandardWrapperValve invoke

    SERIOUS: Servlet.service () for servlet [remoteVcoFactoryServiceExporter] in the context of path [/vco] has thrown the exception [org.springframework.web.util.NestedServletException: class not found while deserializing, the nested exception is java.lang.ClassNotFoundException: org.slf4j.impl.SimpleLogger] origin

    java.lang.ClassNotFoundException: org.slf4j.impl.SimpleLogger

    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1720)

    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1571)

    at org.springframework.util.ClassUtils.forName(ClassUtils.java:236)

    at org.springframework.core.ConfigurableObjectInputStream.resolveClass(ConfigurableObjectInputStream.java:75)

    at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1612)

    at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1517)

    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1771)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1350)

    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1990)

    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1915)

    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1798)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1350)

    at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1706)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1344)

    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1990)

    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1915)

    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1798)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1350)

    at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1706)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1344)

    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1990)

    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1915)

    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1798)

    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1350)

    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:370)

    at org.springframework.remoting.rmi.RemoteInvocationSerializingExporter.doReadRemoteInvocation(RemoteInvocationSerializingExporter.java:142)

    at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.readRemoteInvocation(HttpInvokerServiceExporter.java:117)

    at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.readRemoteInvocation(HttpInvokerServiceExporter.java:96)

    at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.handleRequest(HttpInvokerServiceExporter.java:73)

    at org.springframework.web.context.support.HttpRequestHandlerServlet.service(HttpRequestHandlerServlet.java:68)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

    at net.sf.ehcache.constructs.web.filter.GzipFilter.doFilter(GzipFilter.java:95)

    at net.sf.ehcache.constructs.web.filter.Filter.doFilter(Filter.java:86)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)

    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:610)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171)

    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)

    at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:683)

    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:950)

    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408)

    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1070)

    to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.java:611)

    to org.apache.tomcat.util.net.JIoEndpoint$ SocketProcessor.run (JIoEndpoint.java:316)

    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:615)

    to org.apache.tomcat.util.threads.TaskThread$ WrappingRunnable.run (TaskThread.java:61)

    at java.lang.Thread.run(Thread.java:745)

    RELEASE OF MAVEN

    o11n mvn package: import-package DserverUrl-= vcoadmin: [email protected] : 8281 - Dmaven.wagon.http.ssl.insecure = true - Dmaven.wagon.http.ssl.allowall =-X-Djavax.net.ssl.trustStore=../trust.jks-Djavax.net.ssl.trustStorePassword=test - DignoreServerCertificate = true true

    Apache Maven 3.2.5 (12a6b3acb947671f09b81f49094c53f426d8cea1; 2014-12 - 14 T 12: 29:23 - 05:00)

    House of Maven: /usr/local/Cellar/maven/3.2.5/libexec

    Java version: 1.8.0_45, name of the vendor: Oracle Corporation

    House of Java: /Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home/jre

    Default locale: en_US, platform encoding: UTF-8

    OS name: 'mac os x', version: "10.10.3," arch: "x86_64" family: "mac"

    [INFO] Error stacktraces are turned on.

    [DEBUG] Read the global settings of /usr/local/Cellar/maven/3.2.5/libexec/conf/settings.xml

    [DEBUG] Read /Users/tperry/.m2/settings.xml user settings

    [DEBUG] Using local repository at /Users/tperry/.m2/repository

    [DEBUG] With the help of Manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/tperry/.m2/repository

    [INFO] Analysis of projects...

    [DEBUG] Statistics collection of dependency: {ConflictMarker.analyzeTime = 1, ConflictMarker.markTime = 1, ConflictMarker.nodeCount = 211, ConflictIdSorter.graphTime = 1, ConflictIdSorter.topsortTime = 0, ConflictIdSorter.conflictIdCount = 63, ConflictIdSorter.conflictIdCycleCount = 0, ConflictResolver.totalTime = 6, ConflictResolver.conflictItemCount = 145, DefaultDependencyCollector.collectTime = 209, DefaultDependencyCollector.transformTime = 11}

    [DEBUG] com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2:

    [DEBUG] com.vmware.o11n.tool:o11ntool - internal: pot: 6.0.2: compile

    [DEBUG] dom4j:dom4j:jar:1.6.1: compile

    [DEBUG] xml - apis: xml - apis: jar: 1.0.b2: compile

    [DEBUG] org.apache.maven:maven - plugin-api: jar: 2.0: compile

    [DEBUG] org.apache.maven:maven - project: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - settings: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - jar: profile: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - model: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - artifact-Manager: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - repository - metadata:jar:2.0.6: compile

    [DEBUG] org.apache.maven:maven - plugin-registry: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile

    [DEBUG] junit:junit:jar:4.11:test

    [DEBUG] org.hamcrest:hamcrest - core: jar: 1.3:test

    [DEBUG] classworlds:classworlds:jar:1.1 - alpha-2: compile

    [DEBUG] org.apache.maven:maven - artifact: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - archiver: pot: 2.2: compile

    [DEBUG] org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7: compile

    [DEBUG] org.codehaus.plexus:plexus - utils:jar:1.5.7: compile

    [DEBUG] org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2: compile

    [DEBUG] org.apache.maven:maven - monitor: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus - interpolation: pot: 1.6: compiles

    [DEBUG] org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1: compile

    [DEBUG] log4j:log4j:jar:1.2.17:runtime

    [DEBUG] commons-io: commons-io: pot: 2.4: compile

    [DEBUG] commons-lang: commons-lang: pot: 2.5: compile

    [DEBUG] com.vmware.o11n:o11n - util:jar:6.0.2: compile

    [DEBUG] org.bouncycastle:bcprov - jdk15on:jar:1.50: compile

    [DEBUG] org.bouncycastle:bcpkix - jdk15on:jar:1.50: compile

    [DEBUG] com.rubiconproject.oss:jchronic:jar:0.2.6: compile

    [DEBUG] net.sf.ehcache:ehcache - core: jar: 2.6.2: compile

    [DEBUG] ognl:ognl:jar:2.6.9: compile

    [DEBUG] org.codehaus.woodstox:stax2 - api: jar: 3.0.1: compile

    [DEBUG] stax:stax - api: jar: 1.0.1: compile

    [DEBUG] org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5: compile

    [DEBUG] org.slf4j:slf4j - api: jar: 1.6.6: compile

    [DEBUG] org.slf4j:slf4j - log4j12:jar:1.6.6: compile

    [DEBUG] Commons-codec: commons-codec: pot: 1.8: compile

    [DEBUG] org.apache.httpcomponents:httpclient:jar:4.3.5: compile

    [DEBUG] Commons-Logging: commons-logging: pot: 1.1.1: compile

    [DEBUG] org.apache.httpcomponents:httpcore:jar:4.3.2: compile

    [DEBUG] com.vmware.o11n:o11n - model: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - security: pot: 6.0.2: compile

    [DEBUG] org.springframework:spring - context: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - aop:jar:4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - expression: pot: 4.0.2.RELEASE: compile

    Org.springframework.Security:spring [DEBUG] - security-core: jar: 3.2.3.RELEASE: compile

    [DEBUG] aopalliance:aopalliance:jar:1.0: compile

    [DEBUG] antlr:antlr:jar:2.7.6: compile

    [DEBUG] org.springframework:spring - web: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - beans: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - core: jar: 4.0.2.RELEASE: compile

    [DEBUG] org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1: compile

    [DEBUG] com.vmware.o11n:o11n - modelejb-client: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2: compile

    [DEBUG] org.mozilla:rhino:jar:1.7R4: compile

    [DEBUG] commons-collections: commons-collections: pot: 3.2.1: compile

    [DEBUG] com.vmware.o11n:o11n - j2eeutil:jar:6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - sdkapi:jar:6.0.2: compile

    [DEBUG] org.hornetq:hornetq - jms-client: pot: 2.2.5.Final:runtime

    [DEBUG] org.hornetq:hornetq - client-core: jar: 2.2.5.Final:runtime

    [DEBUG] org.jboss.netty:netty:jar:3.2.5.Final:runtime

    [DEBUG] Created the new Kingdom maven.api class

    [DEBUG] Importation of foreign packages in the Kingdom maven.api class

    [DEBUG]  Imported: org.apache.maven.cli < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.internal.impl < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.lifecycle < plexus.core

    [DEBUG]  Imported: org.apache.maven.lifecycle < plexus.core

    [DEBUG]  Imported: org.apache.maven.repository < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.personality < plexus.core

    [DEBUG]  Imported: org.apache.maven.usability < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.configuration < plexus.core

    [DEBUG]  Imported: javax.enterprise.inject. * < plexus.core

    [DEBUG]  Imported: org.apache.maven. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.project < plexus.core

    [DEBUG]  Imported: org.apache.maven.exception < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.spi < plexus.core

    [DEBUG]  Imported: org.apache.maven.plugin < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.collection < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus. * < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.logging < plexus.core

    [DEBUG]  Imported: org.apache.maven.profiles < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.transfer < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core

    [DEBUG]  Imported: org.apache.maven.execution.scope < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.rtinfo < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.impl < plexus.core

    [DEBUG]  Imported: org.apache.maven.monitor < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.graph < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.metadata < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.context < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.observers < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.resource < plexus.core

    [DEBUG]  Imported: javax.inject. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.model < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.deployment < plexus.core

    [DEBUG]  Imported: org.apache.maven.artifact < plexus.core

    [DEBUG]  Imported: org.apache.maven.toolchain < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.resolution < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core

    [DEBUG]  Imported: org.apache.maven.settings < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.authorization < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.events < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.authentication < plexus.core

    [DEBUG]  Imported: org.apache.maven.reporting < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.repository < plexus.core

    [DEBUG]  Imported: org.slf4j. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.repository < plexus.core

    [DEBUG]  Imported: javax.enterprise.util. * < plexus.core

    [DEBUG]  Imported: org.apache.maven.configuration < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.classworlds < plexus.core

    [DEBUG]  Imported: org.codehaus.classworlds < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core

    [DEBUG]  Imported: org.apache.maven.classrealm < plexus.core

    [DEBUG]  Imported: org.eclipse.aether. * < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.artifact < plexus.core

    [DEBUG]  Imported: org.apache.maven.execution < plexus.core

    [DEBUG]  Imported: org.apache.maven.wagon.proxy < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.container < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.version < plexus.core

    [DEBUG]  Imported: org.eclipse.aether.installation < plexus.core

    [DEBUG]  Imported: org.codehaus.plexus.component < plexus.core

    [DEBUG] Filling of class maven.api Kingdom

    [DEBUG] Created the new class field extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG] Importation of foreign packages in class domain extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]  Imported: maven.api

    [DEBUG] Fill class domain extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]  Included: com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2

    [DEBUG]  Included: com.vmware.o11n.tool:o11ntool - inner: jar: 6.0.2

    [DEBUG]  Included: dom4j:dom4j:jar:1.6.1

    [DEBUG]  Included: xml - apis: xml - apis: jar: 1.0.b2

    [DEBUG]  Included: org.apache.maven:maven - archiver: jar: 2.2

    [DEBUG]  Included: org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7

    [DEBUG]  Included: org.codehaus.plexus:plexus - utils:jar:1.5.7

    [DEBUG]  Included: org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2

    [DEBUG]  Included: org.codehaus.plexus:plexus - interpolation: jar: 1.6

    [DEBUG]  Included: org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1

    [DEBUG]  Included: log4j:log4j:jar:1.2.17

    [DEBUG]  Included: commons-io: commons-io: jar: 2.4

    [DEBUG]  Included: commons-lang: commons-lang: jar: 2.5

    [DEBUG]  Included: com.vmware.o11n:o11n - util:jar:6.0.2

    [DEBUG]  Included: org.bouncycastle:bcprov - jdk15on:jar:1.50

    [DEBUG]  Included: org.bouncycastle:bcpkix - jdk15on:jar:1.50

    [DEBUG]  Included: com.rubiconproject.oss:jchronic:jar:0.2.6

    [DEBUG]  Included: net.sf.ehcache:ehcache - base: jar: 2.6.2

    [DEBUG]  Included: ognl:ognl:jar:2.6.9

    [DEBUG]  Included: org.codehaus.woodstox:stax2 - api: jar: 3.0.1

    [DEBUG]  Included: stax:stax - api: jar: 1.0.1

    [DEBUG]  Included: org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5

    [DEBUG]  Included: org.slf4j:slf4j - api: jar: 1.6.6

    [DEBUG]  Included: org.slf4j:slf4j - log4j12:jar:1.6.6

    [DEBUG]  Included: Commons-codec: commons-codec: jar: 1.8

    [DEBUG]  Included: org.apache.httpcomponents:httpclient:jar:4.3.5

    [DEBUG]  Included: Commons-Logging: commons-logging: jar: 1.1.1

    [DEBUG]  Included: org.apache.httpcomponents:httpcore:jar:4.3.2

    [DEBUG]  Included: com.vmware.o11n:o11n - model: jar: 6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - security: jar: 6.0.2

    [DEBUG]  Included: org.springframework:spring - context: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - aop:jar:4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - expression: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework.security:spring - security-core: jar: 3.2.3.RELEASE

    [DEBUG]  Included: aopalliance:aopalliance:jar:1.0

    [DEBUG]  Included: antlr:antlr:jar:2.7.6

    [DEBUG]  Included: org.springframework:spring - web: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - beans: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - base: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1

    [DEBUG]  Included: com.vmware.o11n:o11n - modelejb-client: jar: 6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2

    [DEBUG]  Included: org.mozilla:rhino:jar:1.7R4

    [DEBUG]  Included: commons-collections: commons-collections: jar: 3.2.1

    [DEBUG]  Included: com.vmware.o11n:o11n - j2eeutil:jar:6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - sdkapi:jar:6.0.2

    [DEBUG]  Included: org.hornetq:hornetq - jms-client: pot: 2.2.5.Final

    [DEBUG]  Included: org.hornetq:hornetq - basic-client: pot: 2.2.5.Final

    [DEBUG]  Included: org.jboss.netty:netty:jar:3.2.5.Final

    [DEBUG] Kingdoms of extension for the test project: o11nplugin-test-package: package: 1.0.0 - SNAPSHOT: [ClassRealm [extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2, parent: sun.misc.Launcher$AppClassLoader@6d6f6e28]]

    [DEBUG] Created the new project of Kingdom of classes > test: o11nplugin-test-package: 1.0.0 - SNAPSHOT

    [DEBUG] Kingdom of settlement project classes > test: o11nplugin-test-package: 1.0.0 - SNAPSHOT

    [DEBUG] Looking for ClassRealm package wrapping cycle mappings [project > test: o11nplugin-test-package: 1.0.0 - SNAPSHOT, parent: ClassRealm [maven.api, parent: null]]

    [DEBUG] Kingdoms of extension for the test project: test: pom: 1.0.0 - SNAPSHOT: (none)

    [DEBUG] Rising maps of cycle for pom in packaging of ClassRealm [plexus.core, parent: null]

    [DEBUG] Fix the plugin version for org.apache.maven.plugins:maven - install-plugin

    [DEBUG] Found no metadata org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in local (/ Users/tperry/.m2/repository)

    [DEBUG] unable to find org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in https://xxx.xx.com:8281 / vco-repo has been cached in the local repository, resolution will not be returned until added by archetype update interval is elapsed or are forced to update

    [DEBUG] Query remote ignored for the org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml metadata updates cached locally.

    Resolved [DEBUG] version of the plugin for org.apache.maven.plugins:maven - install-plugin repository 2.5.2 (https://repo.maven.apache.org/maven2, by default, releases)

    [DEBUG] Fix the plugin version for org.apache.maven.plugins:maven - deploy-plugin

    [DEBUG] Found no metadata org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in local (/ Users/tperry/.m2/repository)

    [DEBUG] unable to find org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in https://xxx.xx.com:8281 / vco-repo has been cached in the local repository, resolution will not be returned until added by archetype update interval is elapsed or are forced to update

    [DEBUG] Query remote ignored for the org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml metadata updates cached locally.

    Resolved [DEBUG] version of the plugin for org.apache.maven.plugins:maven - deploy-plugin for 2.8.2 of the repository (https://repo.maven.apache.org/maven2, by default, releases)

    [DEBUG] Adjust the plugin version of compiler - org.apache.maven.plugins:maven - plugin

    [DEBUG] Found no metadata org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml in local (/ Users/tperry/.m2/repository)

    [DEBUG] unable to find org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml in https://xxx.xx.com:8281 / vco-repo has been cached in the local repository, resolution will not be returned until added by archetype update interval is elapsed or are forced to update

    [DEBUG] Query remote ignored for the org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml metadata updates cached locally.

    Resolved [DEBUG] version of the plugin for org.apache.maven.plugins:maven - compiler-plugin repository 3.3 (https://repo.maven.apache.org/maven2, by default, releases)

    [DEBUG] Adjust the plugin prefix o11n-package of [org.apache.maven.plugins, org.codehaus.mojo]

    [DEBUG] Plugin solved prefix o11n-package com.vmware.o11n.mojo.pkg:maven - o11n-package-plugin POM test: o11nplugin-test-package: package: 1.0.0 - SNAPSHOT

    [DEBUG] = REACTOR MANUFACTURING PLAN =.

    [DEBUG] Project: test: o11nplugin-test-package: package: 1.0.0 - SNAPSHOT

    [DEBUG] Tasks: [o11n-package: import-package]

    [DEBUG] Style: aggregation

    [DEBUG] =======================================================================

    [INFO]

    [INFO] ------------------------------------------------------------------------

    [INFO] Building o11nplugin-test-package 1.0.0 - SNAPSHOT

    [INFO] ------------------------------------------------------------------------

    [DEBUG] Adjust the plugin prefix o11n-package of [org.apache.maven.plugins, org.codehaus.mojo]

    [DEBUG] Plugin solved prefix o11n-package com.vmware.o11n.mojo.pkg:maven - o11n-package-plugin POM test: o11nplugin-test-package: package: 1.0.0 - SNAPSHOT

    [DEBUG] Default life cycle - > [validate, initiate, generate-sources, process-sources, generate resources, resources process, compiling, process-classes, generate-test-sources, process-test-sources, generate-test-resources and process-test-resources, test-compile, process-test-classes, test, prepare package, package, pre-integration-test, integration test, post-integration-test, check, install, deploy]

    [DEBUG] Own lifecycle-> [pre clean, clean, clean post]

    [DEBUG] Life cycle of the site-> [prior to the site, site, site of the post and deploy site]

    [DEBUG] = GENERATION OF PROJECT PLAN.

    [DEBUG] Project: test: o11nplugin-test-package: 1.0.0 - SNAPSHOT

    [DEBUG] [Addictions (to collect):]

    [DEBUG] [Dependencies (resolve):]

    [DEBUG] repositories (dependencies): [added by archetype (https://xxx.xx.com:8281 / vco-repo, by default, the versions + snapshots), Central (https://repo.maven.apache.org/maven2, by default, release)]

    [DEBUG] repositories (plugins): [added by archetype (https://xxx.xx.com:8281 / vco-repo, by default, the versions + snapshots), Central (https://repo.maven.apache.org/maven2, by default, release)]

    [DEBUG] -----------------------------------------------------------------------

    [DEBUG] Objective: com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package (by default-cli)

    [DEBUG] Style: regular

    [DEBUG] Configuration: <? XML version = "1.0" encoding = "UTF-8"? >

    < configuration >

    < allPackages-default = "false" >$ {allPackages} < / allPackages >

    < exportHistory-default = "true" >$ {exportHistory} < / exportHistory >

    < ignoreServerCertificate-default = "true" >$ {ignoreServerCertificate} < / ignoreServerCertificate >

    org.company.myPackage < packageName > < / packageName >

    < project >$ {project} < / project >

    < projectName-default = "${project.artifactId}" >$ {projectName} < / ProjectName >

    < ServerURI >$ {ServerURI} < / serverUrl >

    < targetDirectory >$ {basedir} < / targetDirectory >

    < / configuration >

    [DEBUG] =======================================================================

    [INFO]

    [Info]---Maven-o11n-Paquet-plugin:6.0.2:import-Paquet (by default-cli) @ o11nplugin-test-package-

    [DEBUG] Statistics collection of dependency: {ConflictMarker.analyzeTime = 0, ConflictMarker.markTime = 1, ConflictMarker.nodeCount = 211, ConflictIdSorter.graphTime = 0, ConflictIdSorter.topsortTime = 0, ConflictIdSorter.conflictIdCount = 63, ConflictIdSorter.conflictIdCycleCount = 0, ConflictResolver.totalTime = 2, ConflictResolver.conflictItemCount = 145, DefaultDependencyCollector.collectTime = 14, DefaultDependencyCollector.transformTime = 3}

    [DEBUG] com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2:

    [DEBUG] com.vmware.o11n.tool:o11ntool - internal: pot: 6.0.2: compile

    [DEBUG] dom4j:dom4j:jar:1.6.1: compile

    [DEBUG] xml - apis: xml - apis: jar: 1.0.b2: compile

    [DEBUG] org.apache.maven:maven - plugin-api: jar: 2.0: compile

    [DEBUG] org.apache.maven:maven - project: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - settings: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - jar: profile: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - model: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - artifact-Manager: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - repository - metadata:jar:2.0.6: compile

    [DEBUG] org.apache.maven:maven - plugin-registry: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile

    [DEBUG] junit:junit:jar:4.11:test

    [DEBUG] org.hamcrest:hamcrest - core: jar: 1.3:test

    [DEBUG] classworlds:classworlds:jar:1.1 - alpha-2: compile

    [DEBUG] org.apache.maven:maven - artifact: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - archiver: pot: 2.2: compile

    [DEBUG] org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7: compile

    [DEBUG] org.codehaus.plexus:plexus - utils:jar:1.5.7: compile

    [DEBUG] org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2: compile

    [DEBUG] org.apache.maven:maven - monitor: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus - interpolation: pot: 1.6: compiles

    [DEBUG] org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1: compile

    [DEBUG] log4j:log4j:jar:1.2.17:runtime

    [DEBUG] commons-io: commons-io: pot: 2.4: compile

    [DEBUG] commons-lang: commons-lang: pot: 2.5: compile

    [DEBUG] com.vmware.o11n:o11n - util:jar:6.0.2: compile

    [DEBUG] org.bouncycastle:bcprov - jdk15on:jar:1.50: compile

    [DEBUG] org.bouncycastle:bcpkix - jdk15on:jar:1.50: compile

    [DEBUG] com.rubiconproject.oss:jchronic:jar:0.2.6: compile

    [DEBUG] net.sf.ehcache:ehcache - core: jar: 2.6.2: compile

    [DEBUG] ognl:ognl:jar:2.6.9: compile

    [DEBUG] org.codehaus.woodstox:stax2 - api: jar: 3.0.1: compile

    [DEBUG] stax:stax - api: jar: 1.0.1: compile

    [DEBUG] org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5: compile

    [DEBUG] org.slf4j:slf4j - api: jar: 1.6.6: compile

    [DEBUG] org.slf4j:slf4j - log4j12:jar:1.6.6: compile

    [DEBUG] Commons-codec: commons-codec: pot: 1.8: compile

    [DEBUG] org.apache.httpcomponents:httpclient:jar:4.3.5: compile

    [DEBUG] Commons-Logging: commons-logging: pot: 1.1.1: compile

    [DEBUG] org.apache.httpcomponents:httpcore:jar:4.3.2: compile

    [DEBUG] com.vmware.o11n:o11n - model: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - security: pot: 6.0.2: compile

    [DEBUG] org.springframework:spring - context: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - aop:jar:4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - expression: pot: 4.0.2.RELEASE: compile

    Org.springframework.Security:spring [DEBUG] - security-core: jar: 3.2.3.RELEASE: compile

    [DEBUG] aopalliance:aopalliance:jar:1.0: compile

    [DEBUG] antlr:antlr:jar:2.7.6: compile

    [DEBUG] org.springframework:spring - web: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - beans: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - core: jar: 4.0.2.RELEASE: compile

    [DEBUG] org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1: compile

    [DEBUG] com.vmware.o11n:o11n - modelejb-client: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2: compile

    [DEBUG] org.mozilla:rhino:jar:1.7R4: compile

    [DEBUG] commons-collections: commons-collections: pot: 3.2.1: compile

    [DEBUG] com.vmware.o11n:o11n - j2eeutil:jar:6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - sdkapi:jar:6.0.2: compile

    [DEBUG] org.hornetq:hornetq - jms-client: pot: 2.2.5.Final:runtime

    [DEBUG] org.hornetq:hornetq - client-core: jar: 2.2.5.Final:runtime

    [DEBUG] org.jboss.netty:netty:jar:3.2.5.Final:runtime

    [DEBUG] Created the new plugin of Kingdom of class > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG] Importation of foreign packages in the Kingdom plugin class > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]  Imported: < project > test: o11nplugin-test-package: 1.0.0 - SNAPSHOT

    [DEBUG] Filling of class Kingdom plugin > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]  Included: com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2

    [DEBUG]  Included: com.vmware.o11n.tool:o11ntool - inner: jar: 6.0.2

    [DEBUG]  Included: dom4j:dom4j:jar:1.6.1

    [DEBUG]  Included: xml - apis: xml - apis: jar: 1.0.b2

    [DEBUG]  Included: org.apache.maven:maven - archiver: jar: 2.2

    [DEBUG]  Included: org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7

    [DEBUG]  Included: org.codehaus.plexus:plexus - utils:jar:1.5.7

    [DEBUG]  Included: org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2

    [DEBUG]  Included: org.codehaus.plexus:plexus - interpolation: jar: 1.6

    [DEBUG]  Included: org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1

    [DEBUG]  Included: log4j:log4j:jar:1.2.17

    [DEBUG]  Included: commons-io: commons-io: jar: 2.4

    [DEBUG]  Included: commons-lang: commons-lang: jar: 2.5

    [DEBUG]  Included: com.vmware.o11n:o11n - util:jar:6.0.2

    [DEBUG]  Included: org.bouncycastle:bcprov - jdk15on:jar:1.50

    [DEBUG]  Included: org.bouncycastle:bcpkix - jdk15on:jar:1.50

    [DEBUG]  Included: com.rubiconproject.oss:jchronic:jar:0.2.6

    [DEBUG]  Included: net.sf.ehcache:ehcache - base: jar: 2.6.2

    [DEBUG]  Included: ognl:ognl:jar:2.6.9

    [DEBUG]  Included: org.codehaus.woodstox:stax2 - api: jar: 3.0.1

    [DEBUG]  Included: stax:stax - api: jar: 1.0.1

    [DEBUG]  Included: org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5

    [DEBUG]  Included: org.slf4j:slf4j - api: jar: 1.6.6

    [DEBUG]  Included: org.slf4j:slf4j - log4j12:jar:1.6.6

    [DEBUG]  Included: Commons-codec: commons-codec: jar: 1.8

    [DEBUG]  Included: org.apache.httpcomponents:httpclient:jar:4.3.5

    [DEBUG]  Included: Commons-Logging: commons-logging: jar: 1.1.1

    [DEBUG]  Included: org.apache.httpcomponents:httpcore:jar:4.3.2

    [DEBUG]  Included: com.vmware.o11n:o11n - model: jar: 6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - security: jar: 6.0.2

    [DEBUG]  Included: org.springframework:spring - context: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - aop:jar:4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - expression: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework.security:spring - security-core: jar: 3.2.3.RELEASE

    [DEBUG]  Included: aopalliance:aopalliance:jar:1.0

    [DEBUG]  Included: antlr:antlr:jar:2.7.6

    [DEBUG]  Included: org.springframework:spring - web: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - beans: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.springframework:spring - base: pot: 4.0.2.RELEASE

    [DEBUG]  Included: org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1

    [DEBUG]  Included: com.vmware.o11n:o11n - modelejb-client: jar: 6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2

    [DEBUG]  Included: org.mozilla:rhino:jar:1.7R4

    [DEBUG]  Included: commons-collections: commons-collections: jar: 3.2.1

    [DEBUG]  Included: com.vmware.o11n:o11n - j2eeutil:jar:6.0.2

    [DEBUG]  Included: com.vmware.o11n:o11n - sdkapi:jar:6.0.2

    [DEBUG]  Included: org.hornetq:hornetq - jms-client: pot: 2.2.5.Final

    [DEBUG]  Included: org.hornetq:hornetq - basic-client: pot: 2.2.5.Final

    [DEBUG]  Included: org.jboss.netty:netty:jar:3.2.5.Final

    [DEBUG]  Excluded: org.apache.maven:maven - plugin-api: jar: 2.0

    [DEBUG]  Excluded: org.apache.maven:maven - project: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - settings: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - view profile: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - model: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - artifact-Manager: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - repository - metadata:jar:2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - plugin-registry: jar: 2.0.6

    [DEBUG]  Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1

    [DEBUG]  Excluded: junit:junit:jar:4.11

    [DEBUG]  Excluded: org.hamcrest:hamcrest - core: jar: 1.3

    [DEBUG]  Excluded: classworlds:classworlds:jar:1.1 - alpha-2

    [DEBUG]  Excluded: org.apache.maven:maven - artifact: jar: 2.0.6

    [DEBUG]  Excluded: org.apache.maven:maven - monitor: jar: 2.0.6

    [DEBUG] Configuration of mojo com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - Kingdom ClassRealm plugin package [plugin > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2, parent: sun.misc.Launcher$AppClassLoader@6d6f6e28]

    [DEBUG] Mojo configuration ' com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package "with base-> Configurator

    [DEBUG]  (f) allPackages = false

    [DEBUG]  (f) exportHistory = true

    [DEBUG]  (f) ignoreServerCertificate = true

    [DEBUG]  (f) packageName = org.company.mypackage

    [DEBUG]  (f) project = MavenProject: test: o11nplugin-test-package: 1.0.0 - SNAPSHOT @ /Users/tperry/development/java/test/o11nplugin-test-package/pom.xml

    [DEBUG]  (f) projectName = o11nplugin-test-package

    ServerUrl [DEBUG] (f) = vcoadmin: [email protected] : 8281

    [DEBUG]  (f) targetDirectory = / Users/tperry/development/java/test/o11nplugin-test-package

    [DEBUG] - configuration - end

    o11nplugin-test-package

    true

    [DEBUG] Connection to server VMO: xxx.xx.com:8281

    [DEBUG] Create Session

    log4j: WARN no appenders could be found for logger (org.apache.http.impl.conn.BasicClientConnectionManager).

    log4j: WARN Please initialize log4j correctly system.

    log4j: WARN see http://logging.Apache.org/log4j/1.2/FAQ.html#noconfig for more information.

    [DEBUG] Converter re record type: Array

    [DEBUG] Session created

    [DEBUG] Connected!

    [DEBUG] VMO server connection: success!

    org.Company.MyPackage

    [DEBUG] Disconnect from the server

    [INFO] ------------------------------------------------------------------------

    [INFO] BUILD FAILURE

    [INFO] ------------------------------------------------------------------------

    [INFO] Total time: 1,212 s

    [INFO] Finished in: 2015-06 - 23 T 15: 40:35 - 04:00

    [INFO] Final thesis: 13 M / 306 M

    [INFO] ------------------------------------------------------------------------

    [ERROR] cannot run the purpose com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package (by default-cli) on the o11nplugin-test-package project: could not import the package [org.company.mypackage] Server ' [vcoadmin:[email protected]: 8281]': could not access HTTP calling remote service to [https://xxx.xx.com:8281/vco/webremoting/vcofactory.service]; nested exception is org.apache.http.NoHttpResponseException: did not make a successful HTTP response: status code = 500, the status message assistance [Internal Server Error]-> [1]

    org.apache.maven.lifecycle.LifecycleExecutionException: cannot run the purpose com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package (by default-cli) on the o11nplugin-test-package project: could not import the package [org.company.mypackage] Server ' [vcoadmin:[email protected]: 8281]'

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:216)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)

    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)

    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:120)

    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:355)

    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:155)

    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:584)

    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:216)

    at org.apache.maven.cli.MavenCli.main(MavenCli.java:160)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:497)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)

    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)

    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)

    Caused by: org.apache.maven.plugin.MojoExecutionException: could not import the package [org.company.mypackage] Server ' [vcoadmin:[email protected]: 8281]'

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.importSinglePackage(ImportPackageMojo.java:194)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.execute(ImportPackageMojo.java:144)

    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:132)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)

    ... 19 more

    Caused by: org.springframework.remoting.RemoteAccessException: could not access HTTP calling remote service to [https://xxx.xx.com:8281/vco/webremoting/vcofactory.service]; nested exception is org.apache.http.NoHttpResponseException: did not make a successful HTTP response: status code = 500, the status message = [Internal Server Error]

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.convertHttpInvokerAccessException(HttpInvokerClientInterceptor.java:216)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.invoke(HttpInvokerClientInterceptor.java:147)

    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)

    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:207)

    to com.sun.proxy. $Proxy22.invokeOperation (unknown Source)

    at com.vmware.o11n.model.support.proxy.RemoteHttpVSOFactoryInvocationHandler.doInvoke(RemoteHttpVSOFactoryInvocationHandler.java:186)

    at com.vmware.o11n.model.support.proxy.RemoteHttpVSOFactoryInvocationHandler.invoke(RemoteHttpVSOFactoryInvocationHandler.java:138)

    to com.sun.proxy. $Proxy23.getPackageContent (unknown Source)

    at ch.dunes.model.client.VSOFactoryClient.getPackageContent(VSOFactoryClient.java:2170)

    at ch.dunes.model.pkg.Package.loadContent(Package.java:234)

    at ch.dunes.model.pkg.impexp.LocalPackageFileManager.writePackage(LocalPackageFileManager.java:148)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.importSinglePackage(ImportPackageMojo.java:189)

    ... more than 22

    Caused by: org.apache.http.NoHttpResponseException: did not make a successful HTTP response: status code = 500, the status message = [Internal Server Error]

    at org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor.validateResponse(HttpComponentsHttpInvokerRequestExecutor.java:232)

    at org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor.doExecuteRequest(HttpComponentsHttpInvokerRequestExecutor.java:148)

    at org.springframework.remoting.httpinvoker.AbstractHttpInvokerRequestExecutor.executeRequest(AbstractHttpInvokerRequestExecutor.java:138)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.executeRequest(HttpInvokerClientInterceptor.java:194)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.executeRequest(HttpInvokerClientInterceptor.java:176)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.invoke(HttpInvokerClientInterceptor.java:144)

    ... 32 more

    [ERROR]

    [ERROR]

    [ERROR] For more information about errors and possible solutions, please read the following articles:

    [ERROR] [help 1] http://cwiki.Apache.org/Confluence/display/Maven/MojoExecution

    I was on the same track here and after the explosion the war vco.war, adding in the slf4j-simple - file 1.6.6.jar in the directory WEB-INF/lib and re-Jouffroy, and restart the tomcat server, things work.  This looks like a BUG in the version 6.0.2 of vco, where they forgot to add in the file slf4j-simple - 1.6.6.jar.

    Thank you

    Tim

  • O11n Plugin Maven Orchestrator package: import-package SSL Handshake error

    I try to use the maven for VCO plugin creation plugin and I get SSL errors when you try to synchronize all of VCO to the local files.   It is a standard installation of the device to VCO 6.0.2.   I tried all the stuff that I can get:

    I put the - Dmaven.wagon.http.ssl.insecure = true Dmaven.wagon.http.ssl.allowall = true

    I created a file of keys to the VCO ssl key and he passed as the truststore -Djavax .net .ssl .trustStore = keystore.pks - Djavax .net .ssl .trustStorePassword = 123qwe x

    I turned on debugging and outputs verbose

    Nothing seems to work, thoughts or ideas is appreciated.

    Thank you

    Tim

    Here is an example of newspaper, very similar regardless of the options passed.


    o11n MVN-paquet : import-package-DserverUrl=vcoadmin:[email protected]:8281-Djavax.net.debug=all-Dmaven.wagon.http.ssl.insecure=true-Dmaven.wagon.http.ssl.allowall=true-Dsun.security.ssl.allowUnsafeRenegotiation=true-Djavax.net.ssl.trustStore=keystore.pks-Djavax.net.ssl.trustStorePassword=test123 -X

    Apache Maven 3.2.5 (12a6b3acb947671f09b81f49094c53f426d8cea1; 2014-12 - 14 T 12: 29:23 - 05:00)

    House of Maven: /usr/local/Cellar/maven/3.2.5/libexec

    Java version: 1.6.0_65, name of seller: Apple Inc..

    House of Java: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home

    Default locale: en_US, platform encoding: MacRoman

    OS name: 'mac os x', version: "10.10.3," arch: "x86_64" family: "mac"

    [INFO] Error stacktraces are turned on.

    [DEBUG] Read the global settings of /usr/local/Cellar/maven/3.2.5/libexec/conf/settings.xml

    [DEBUG] Read /Users/tperry/.m2/settings.xml user settings

    [DEBUG] Using local repository at /Users/tperry/.m2/repository

    [DEBUG] With the help of Manager EnhancedLocalRepositoryManager with priority 10.0 for /Users/tperry/.m2/repository

    [INFO] Analysis of projects...

    [DEBUG] Statistics collection of dependency: {ConflictMarker.analyzeTime = 1, ConflictMarker.markTime = 0, ConflictMarker.nodeCount = 211, ConflictIdSorter.graphTime = 1, ConflictIdSorter.topsortTime = 1, ConflictIdSorter.conflictIdCount = 63, ConflictIdSorter.conflictIdCycleCount = 0, ConflictResolver.totalTime = 11, ConflictResolver.conflictItemCount = 145, DefaultDependencyCollector.collectTime = 327, DefaultDependencyCollector.transformTime = 16}

    [DEBUG] com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2:

    [DEBUG] com.vmware.o11n.tool:o11ntool - internal: pot: 6.0.2: compile

    [DEBUG] dom4j:dom4j:jar:1.6.1: compile

    [DEBUG] xml - apis: xml - apis: jar: 1.0.b2: compile

    [DEBUG] org.apache.maven:maven - plugin-api: jar: 2.0: compile

    [DEBUG] org.apache.maven:maven - project: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - settings: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - jar: profile: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - model: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - artifact-Manager: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - repository - metadata:jar:2.0.6: compile

    [DEBUG] org.apache.maven:maven - plugin-registry: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile

    [DEBUG] junit:junit:jar:4.11:test

    [DEBUG] org.hamcrest:hamcrest - core: jar: 1.3:test

    [DEBUG] classworlds:classworlds:jar:1.1 - alpha-2: compile

    [DEBUG] org.apache.maven:maven - artifact: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - archiver: pot: 2.2: compile

    [DEBUG] org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7: compile

    [DEBUG] org.codehaus.plexus:plexus - utils:jar:1.5.7: compile

    [DEBUG] org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2: compile

    [DEBUG] org.apache.maven:maven - monitor: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus - interpolation: pot: 1.6: compiles

    [DEBUG] org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1: compile

    [DEBUG] log4j:log4j:jar:1.2.17:runtime

    [DEBUG] commons-io: commons-io: pot: 2.4: compile

    [DEBUG] commons-lang: commons-lang: pot: 2.5: compile

    [DEBUG] com.vmware.o11n:o11n - util:jar:6.0.2: compile

    [DEBUG] org.bouncycastle:bcprov - jdk15on:jar:1.50: compile

    [DEBUG] org.bouncycastle:bcpkix - jdk15on:jar:1.50: compile

    [DEBUG] com.rubiconproject.oss:jchronic:jar:0.2.6: compile

    [DEBUG] net.sf.ehcache:ehcache - core: jar: 2.6.2: compile

    [DEBUG] ognl:ognl:jar:2.6.9: compile

    [DEBUG] org.codehaus.woodstox:stax2 - api: jar: 3.0.1: compile

    [DEBUG] stax:stax - api: jar: 1.0.1: compile

    [DEBUG] org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5: compile

    [DEBUG] org.slf4j:slf4j - api: jar: 1.6.6: compile

    [DEBUG] org.slf4j:slf4j - log4j12:jar:1.6.6: compile

    [DEBUG] Commons-codec: commons-codec: pot: 1.8: compile

    [DEBUG] org.apache.httpcomponents:httpclient:jar:4.3.5: compile

    [DEBUG] Commons-Logging: commons-logging: pot: 1.1.1: compile

    [DEBUG] org.apache.httpcomponents:httpcore:jar:4.3.2: compile

    [DEBUG] com.vmware.o11n:o11n - model: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - security: pot: 6.0.2: compile

    [DEBUG] org.springframework:spring - context: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - aop:jar:4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - expression: pot: 4.0.2.RELEASE: compile

    Org.springframework.Security:spring [DEBUG] - security-core: jar: 3.2.3.RELEASE: compile

    [DEBUG] aopalliance:aopalliance:jar:1.0: compile

    [DEBUG] antlr:antlr:jar:2.7.6: compile

    [DEBUG] org.springframework:spring - web: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - beans: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - core: jar: 4.0.2.RELEASE: compile

    [DEBUG] org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1: compile

    [DEBUG] com.vmware.o11n:o11n - modelejb-client: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2: compile

    [DEBUG] org.mozilla:rhino:jar:1.7R4: compile

    [DEBUG] commons-collections: commons-collections: pot: 3.2.1: compile

    [DEBUG] com.vmware.o11n:o11n - j2eeutil:jar:6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - sdkapi:jar:6.0.2: compile

    [DEBUG] org.hornetq:hornetq - jms-client: pot: 2.2.5.Final:runtime

    [DEBUG] org.hornetq:hornetq - client-core: jar: 2.2.5.Final:runtime

    [DEBUG] org.jboss.netty:netty:jar:3.2.5.Final:runtime

    [DEBUG] Created the new Kingdom maven.api class

    [DEBUG] Importation of foreign packages in the Kingdom maven.api class

    [DEBUG]   Imported: org.apache.maven.wagon.events < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.impl < plexus.core

    [DEBUG]   Imported: org.apache.maven.exception < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.version < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.metadata < plexus.core

    [DEBUG]   Imported: javax.enterprise.util. * < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.collection < plexus.core

    [DEBUG]   Imported: org.apache.maven.monitor < plexus.core

    [DEBUG]   Imported: org.apache.maven.wagon.repository < plexus.core

    [DEBUG]   Imported: org.apache.maven.repository < plexus.core

    [DEBUG]   Imported: org.apache.maven.wagon.resource < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.logging < plexus.core

    [DEBUG]   Imported: org.apache.maven.profiles < plexus.core

    [DEBUG]   Imported: org.apache.maven.classrealm < plexus.core

    [DEBUG]   Imported: org.apache.maven.execution.scope < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.artifact < plexus.core

    [DEBUG]   Imported: org.apache.maven.execution < plexus.core

    [DEBUG]   Imported: org.apache.maven.reporting < plexus.core

    [DEBUG]   Imported: org.apache.maven.usability < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.container < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.component < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.transfer < plexus.core

    [DEBUG]   Imported: org.apache.maven.wagon.authentication < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core

    [DEBUG]   Imported: org.apache.maven.lifecycle < plexus.core

    [DEBUG]   Imported: org.eclipse.aether. * < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.graph < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.classworlds < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.internal.impl < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.repository < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.resolution < plexus.core

    [DEBUG]   Imported: javax.inject. * < plexus.core

    [DEBUG]   Imported: org.apache.maven.settings < plexus.core

    [DEBUG]   Imported: org.codehaus.classworlds < plexus.core

    [DEBUG]   Imported: org.apache.maven.wagon. * < plexus.core

    [DEBUG]   Imported: org.apache.maven.toolchain < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.spi < plexus.core

    [DEBUG]   Imported: org.apache.maven.wagon.observers < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core

    [DEBUG]   Imported: org.apache.maven.configuration < plexus.core

    [DEBUG]   Imported: org.apache.maven.cli < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.context < plexus.core

    [DEBUG]   Imported: org.apache.maven.wagon.authorization < plexus.core

    [DEBUG]   Imported: org.apache.maven.project < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.installation < plexus.core

    [DEBUG]   Imported: org.eclipse.aether.deployment < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.lifecycle < plexus.core

    [DEBUG]   Imported: org.apache.maven.rtinfo < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.configuration < plexus.core

    [DEBUG]   Imported: org.apache.maven.artifact < plexus.core

    [DEBUG]   Imported: org.apache.maven.model < plexus.core

    [DEBUG]   Imported: org.slf4j. * < plexus.core

    [DEBUG]   Imported: javax.enterprise.inject. * < plexus.core

    [DEBUG]   Imported: org.apache.maven. * < plexus.core

    [DEBUG]   Imported: org.apache.maven.wagon.proxy < plexus.core

    [DEBUG]   Imported: org.apache.maven.plugin < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus. * < plexus.core

    [DEBUG]   Imported: org.codehaus.plexus.personality < plexus.core

    [DEBUG] Filling of class maven.api Kingdom

    [DEBUG] Created the new class field extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG] Importation of foreign packages in class domain extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]   Imported: maven.api

    [DEBUG] Fill class domain extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]   Included: com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2

    [DEBUG]   Included: com.vmware.o11n.tool:o11ntool - inner: jar: 6.0.2

    [DEBUG]   Included: dom4j:dom4j:jar:1.6.1

    [DEBUG]   Included: xml - apis: xml - apis: jar: 1.0.b2

    [DEBUG]   Included: org.apache.maven:maven - archiver: jar: 2.2

    [DEBUG]   Included: org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7

    [DEBUG]   Included: org.codehaus.plexus:plexus - utils:jar:1.5.7

    [DEBUG]   Included: org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2

    [DEBUG]   Included: org.codehaus.plexus:plexus - interpolation: jar: 1.6

    [DEBUG]   Included: org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1

    [DEBUG]   Included: log4j:log4j:jar:1.2.17

    [DEBUG]   Included: commons-io: commons-io: jar: 2.4

    [DEBUG]   Included: commons-lang: commons-lang: jar: 2.5

    [DEBUG]   Included: com.vmware.o11n:o11n - util:jar:6.0.2

    [DEBUG]   Included: org.bouncycastle:bcprov - jdk15on:jar:1.50

    [DEBUG]   Included: org.bouncycastle:bcpkix - jdk15on:jar:1.50

    [DEBUG]   Included: com.rubiconproject.oss:jchronic:jar:0.2.6

    [DEBUG]   Included: net.sf.ehcache:ehcache - base: jar: 2.6.2

    [DEBUG]   Included: ognl:ognl:jar:2.6.9

    [DEBUG]   Included: org.codehaus.woodstox:stax2 - api: jar: 3.0.1

    [DEBUG]   Included: stax:stax - api: jar: 1.0.1

    [DEBUG]   Included: org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5

    [DEBUG]   Included: org.slf4j:slf4j - api: jar: 1.6.6

    [DEBUG]   Included: org.slf4j:slf4j - log4j12:jar:1.6.6

    [DEBUG]   Included: Commons-codec: commons-codec: jar: 1.8

    [DEBUG]   Included: org.apache.httpcomponents:httpclient:jar:4.3.5

    [DEBUG]   Included: Commons-Logging: commons-logging: jar: 1.1.1

    [DEBUG]   Included: org.apache.httpcomponents:httpcore:jar:4.3.2

    [DEBUG]   Included: com.vmware.o11n:o11n - model: jar: 6.0.2

    [DEBUG]   Included: com.vmware.o11n:o11n - security: jar: 6.0.2

    [DEBUG]   Included: org.springframework:spring - context: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.springframework:spring - aop:jar:4.0.2.RELEASE

    [DEBUG]   Included: org.springframework:spring - expression: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.springframework.security:spring - security-core: jar: 3.2.3.RELEASE

    [DEBUG]   Included: aopalliance:aopalliance:jar:1.0

    [DEBUG]   Included: antlr:antlr:jar:2.7.6

    [DEBUG]   Included: org.springframework:spring - web: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.springframework:spring - beans: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.springframework:spring - base: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1

    [DEBUG]   Included: com.vmware.o11n:o11n - modelejb-client: jar: 6.0.2

    [DEBUG]   Included: com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2

    [DEBUG]   Included: org.mozilla:rhino:jar:1.7R4

    [DEBUG]   Included: commons-collections: commons-collections: jar: 3.2.1

    [DEBUG]   Included: com.vmware.o11n:o11n - j2eeutil:jar:6.0.2

    [DEBUG]   Included: com.vmware.o11n:o11n - sdkapi:jar:6.0.2

    [DEBUG]   Included: org.hornetq:hornetq - jms-client: pot: 2.2.5.Final

    [DEBUG]   Included: org.hornetq:hornetq - basic-client: pot: 2.2.5.Final

    [DEBUG]   Included: org.jboss.netty:netty:jar:3.2.5.Final

    [DEBUG] Kingdoms of extension for the project sovlabs:o11nplugin - sovlabs-package: package: 6.0.2.1: [ClassRealm [extension > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2, parent: sun.misc.Launcher$AppClassLoader@7987aeca]]

    [DEBUG] Created the new project of Kingdom of class > sovlabs:o11nplugin - sovlabs-package: 6.0.2.1

    [DEBUG] Kingdom of settlement project classes > sovlabs:o11nplugin - sovlabs-package: 6.0.2.1

    [DEBUG] Looking for ClassRealm package wrapping cycle mappings [project > sovlabs:o11nplugin - sovlabs-package: 6.0.2.1, parent: ClassRealm [maven.api, parent: null]]

    [DEBUG] Kingdoms of extension for the project sovlabs:sovlabs:pom:6.0.2.1: (none)

    [DEBUG] Rising maps of cycle for pom in packaging of ClassRealm [plexus.core, parent: null]

    [DEBUG] Fix the plugin version for org.apache.maven.plugins:maven - install-plugin

    [DEBUG] Found no metadata org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in local (/ Users/tperry/.m2/repository)

    [DEBUG] unable to find org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml in http://192.168.159.131:8280 / vco-repo has been cached in the local repository, resolution will not be returned until added by archetype update interval is elapsed or are forced to update

    [DEBUG] Query remote ignored for the org.apache.maven.plugins:maven-install-plugin/maven-metadata.xml metadata updates cached locally.

    Resolved [DEBUG] version of the plugin for org.apache.maven.plugins:maven - install-plugin repository 2.5.2 (https://repo.maven.apache.org/maven2, by default, releases)

    [DEBUG] Fix the plugin version for org.apache.maven.plugins:maven - deploy-plugin

    [DEBUG] Found no metadata org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in local (/ Users/tperry/.m2/repository)

    [DEBUG] unable to find org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml in http://192.168.159.131:8280 / vco-repo has been cached in the local repository, resolution will not be returned until added by archetype update interval is elapsed or are forced to update

    [DEBUG] Query remote ignored for the org.apache.maven.plugins:maven-deploy-plugin/maven-metadata.xml metadata updates cached locally.

    Resolved [DEBUG] version of the plugin for org.apache.maven.plugins:maven - deploy-plugin for 2.8.2 of the repository (https://repo.maven.apache.org/maven2, by default, releases)

    [DEBUG] Adjust the plugin version of compiler - org.apache.maven.plugins:maven - plugin

    [DEBUG] Found no metadata org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml in local (/ Users/tperry/.m2/repository)

    [DEBUG] unable to find org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml in http://192.168.159.131:8280 / vco-repo has been cached in the local repository, resolution will not be returned until added by archetype update interval is elapsed or are forced to update

    [DEBUG] Query remote ignored for the org.apache.maven.plugins:maven-compiler-plugin/maven-metadata.xml metadata updates cached locally.

    Resolved [DEBUG] version of the plugin for org.apache.maven.plugins:maven - compiler-plugin repository 3.3 (https://repo.maven.apache.org/maven2, by default, releases)

    [DEBUG] Adjust the plugin prefix o11n-package of [org.apache.maven.plugins, org.codehaus.mojo]

    [DEBUG] Plugin solved the prefix o11n-package com.vmware.o11n.mojo.pkg:maven - o11n-package-plugin sovlabs:o11nplugin POM-sovlabs-package: package: 6.0.2.1

    [DEBUG] = REACTOR MANUFACTURING PLAN =.

    [DEBUG] Project: sovlabs:o11nplugin - sovlabs-package: package: 6.0.2.1

    [DEBUG] Tasks: [o11n-package: import-package]

    [DEBUG] Style: aggregation

    [DEBUG] =======================================================================

    [INFO]

    [INFO] ------------------------------------------------------------------------

    [INFO] Building o11nplugin-sovlabs-Pack 6.0.2.1

    [INFO] ------------------------------------------------------------------------

    [DEBUG] Adjust the plugin prefix o11n-package of [org.apache.maven.plugins, org.codehaus.mojo]

    [DEBUG] Plugin solved the prefix o11n-package com.vmware.o11n.mojo.pkg:maven - o11n-package-plugin sovlabs:o11nplugin POM-sovlabs-package: package: 6.0.2.1

    [DEBUG] Default life cycle - > [validate, initiate, generate-sources, process-sources, generate resources, resources process, compiling, process-classes, generate-test-sources, process-test-sources, generate-test-resources and process-test-resources, test-compile, process-test-classes, test, prepare package, package, pre-integration-test, integration test, post-integration-test, check, install, deploy]

    [DEBUG] Own lifecycle-> [pre clean, clean, clean post]

    [DEBUG] Life cycle of the site-> [prior to the site, site, site of the post and deploy site]

    [DEBUG] = GENERATION OF PROJECT PLAN.

    [DEBUG] Project: sovlabs:o11nplugin - sovlabs-package: 6.0.2.1

    [DEBUG] [Addictions (to collect):]

    [DEBUG] [Dependencies (resolve):]

    [DEBUG] repositories (dependencies): [added by archetype (http://192.168.159.131:8280 / vco-repo, by default, the versions + snapshots), Central (https://repo.maven.apache.org/maven2, by default, release)]

    [DEBUG] repositories (plugins): [added by archetype (http://192.168.159.131:8280 / vco-repo, by default, the versions + snapshots), Central (https://repo.maven.apache.org/maven2, by default, release)]

    [DEBUG] -----------------------------------------------------------------------

    [DEBUG] Objective: com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package (by default-cli)

    [DEBUG] Style: regular

    [DEBUG] Configuration: <? XML version = "1.0" encoding = "UTF-8"? >

    < configuration >

    < allPackages-default = "false" >$ {allPackages} < / allPackages >

    < exportHistory-default = "true" >$ {exportHistory} < / exportHistory >

    < ignoreServerCertificate-default = "true" >$ {ignoreServerCertificate} < / ignoreServerCertificate >

    sovlabs < packageName > < / packageName >

    < project >$ {project} < / project >

    < projectName-default = "${project.artifactId}" >$ {projectName} < / ProjectName >

    < ServerURI >$ {ServerURI} < / serverUrl >

    < targetDirectory >$ {basedir} < / targetDirectory >

    < / configuration >

    [DEBUG] =======================================================================

    [INFO]

    [Info]---Maven-o11n-Paquet-plugin:6.0.2:import-Paquet (by default-cli) @ o11nplugin-sovlabs-package-

    [DEBUG] Statistics collection of dependency: {ConflictMarker.analyzeTime = 1, ConflictMarker.markTime = 0, ConflictMarker.nodeCount = 211, ConflictIdSorter.graphTime = 1, ConflictIdSorter.topsortTime = 0, ConflictIdSorter.conflictIdCount = 63, ConflictIdSorter.conflictIdCycleCount = 0, ConflictResolver.totalTime = 10, ConflictResolver.conflictItemCount = 145, DefaultDependencyCollector.collectTime = 20, DefaultDependencyCollector.transformTime = 12}

    [DEBUG] com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2:

    [DEBUG] com.vmware.o11n.tool:o11ntool - internal: pot: 6.0.2: compile

    [DEBUG] dom4j:dom4j:jar:1.6.1: compile

    [DEBUG] xml - apis: xml - apis: jar: 1.0.b2: compile

    [DEBUG] org.apache.maven:maven - plugin-api: jar: 2.0: compile

    [DEBUG] org.apache.maven:maven - project: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - settings: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - jar: profile: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - model: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - artifact-Manager: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - repository - metadata:jar:2.0.6: compile

    [DEBUG] org.apache.maven:maven - plugin-registry: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile

    [DEBUG] junit:junit:jar:4.11:test

    [DEBUG] org.hamcrest:hamcrest - core: jar: 1.3:test

    [DEBUG] classworlds:classworlds:jar:1.1 - alpha-2: compile

    [DEBUG] org.apache.maven:maven - artifact: pot: 2.0.6: compile

    [DEBUG] org.apache.maven:maven - archiver: pot: 2.2: compile

    [DEBUG] org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7: compile

    [DEBUG] org.codehaus.plexus:plexus - utils:jar:1.5.7: compile

    [DEBUG] org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2: compile

    [DEBUG] org.apache.maven:maven - monitor: pot: 2.0.6: compile

    [DEBUG] org.codehaus.plexus:plexus - interpolation: pot: 1.6: compiles

    [DEBUG] org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1: compile

    [DEBUG] log4j:log4j:jar:1.2.17:runtime

    [DEBUG] commons-io: commons-io: pot: 2.4: compile

    [DEBUG] commons-lang: commons-lang: pot: 2.5: compile

    [DEBUG] com.vmware.o11n:o11n - util:jar:6.0.2: compile

    [DEBUG] org.bouncycastle:bcprov - jdk15on:jar:1.50: compile

    [DEBUG] org.bouncycastle:bcpkix - jdk15on:jar:1.50: compile

    [DEBUG] com.rubiconproject.oss:jchronic:jar:0.2.6: compile

    [DEBUG] net.sf.ehcache:ehcache - core: jar: 2.6.2: compile

    [DEBUG] ognl:ognl:jar:2.6.9: compile

    [DEBUG] org.codehaus.woodstox:stax2 - api: jar: 3.0.1: compile

    [DEBUG] stax:stax - api: jar: 1.0.1: compile

    [DEBUG] org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5: compile

    [DEBUG] org.slf4j:slf4j - api: jar: 1.6.6: compile

    [DEBUG] org.slf4j:slf4j - log4j12:jar:1.6.6: compile

    [DEBUG] Commons-codec: commons-codec: pot: 1.8: compile

    [DEBUG] org.apache.httpcomponents:httpclient:jar:4.3.5: compile

    [DEBUG] Commons-Logging: commons-logging: pot: 1.1.1: compile

    [DEBUG] org.apache.httpcomponents:httpcore:jar:4.3.2: compile

    [DEBUG] com.vmware.o11n:o11n - model: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - security: pot: 6.0.2: compile

    [DEBUG] org.springframework:spring - context: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - aop:jar:4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - expression: pot: 4.0.2.RELEASE: compile

    Org.springframework.Security:spring [DEBUG] - security-core: jar: 3.2.3.RELEASE: compile

    [DEBUG] aopalliance:aopalliance:jar:1.0: compile

    [DEBUG] antlr:antlr:jar:2.7.6: compile

    [DEBUG] org.springframework:spring - web: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - beans: pot: 4.0.2.RELEASE: compile

    [DEBUG] org.springframework:spring - core: jar: 4.0.2.RELEASE: compile

    [DEBUG] org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1: compile

    [DEBUG] com.vmware.o11n:o11n - modelejb-client: pot: 6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2: compile

    [DEBUG] org.mozilla:rhino:jar:1.7R4: compile

    [DEBUG] commons-collections: commons-collections: pot: 3.2.1: compile

    [DEBUG] com.vmware.o11n:o11n - j2eeutil:jar:6.0.2: compile

    [DEBUG] com.vmware.o11n:o11n - sdkapi:jar:6.0.2: compile

    [DEBUG] org.hornetq:hornetq - jms-client: pot: 2.2.5.Final:runtime

    [DEBUG] org.hornetq:hornetq - client-core: jar: 2.2.5.Final:runtime

    [DEBUG] org.jboss.netty:netty:jar:3.2.5.Final:runtime

    [DEBUG] Created the new plugin of Kingdom of class > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG] Importation of foreign packages in the Kingdom plugin class > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]   Imported: < project > sovlabs:o11nplugin - sovlabs-package: 6.0.2.1

    [DEBUG] Filling of class Kingdom plugin > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2

    [DEBUG]   Included: com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:jar:6.0.2

    [DEBUG]   Included: com.vmware.o11n.tool:o11ntool - inner: jar: 6.0.2

    [DEBUG]   Included: dom4j:dom4j:jar:1.6.1

    [DEBUG]   Included: xml - apis: xml - apis: jar: 1.0.b2

    [DEBUG]   Included: org.apache.maven:maven - archiver: jar: 2.2

    [DEBUG]   Included: org.codehaus.plexus:plexus - archiver: jar: 1.0 - alpha-7

    [DEBUG]   Included: org.codehaus.plexus:plexus - utils:jar:1.5.7

    [DEBUG]   Included: org.apache.maven.shared:maven - filtering: jar: 1.0 - beta-2

    [DEBUG]   Included: org.codehaus.plexus:plexus - interpolation: jar: 1.6

    [DEBUG]   Included: org.codehaus.plexus:plexus - compiler-api: jar: 1.8.1

    [DEBUG]   Included: log4j:log4j:jar:1.2.17

    [DEBUG]   Included: commons-io: commons-io: jar: 2.4

    [DEBUG]   Included: commons-lang: commons-lang: jar: 2.5

    [DEBUG]   Included: com.vmware.o11n:o11n - util:jar:6.0.2

    [DEBUG]   Included: org.bouncycastle:bcprov - jdk15on:jar:1.50

    [DEBUG]   Included: org.bouncycastle:bcpkix - jdk15on:jar:1.50

    [DEBUG]   Included: com.rubiconproject.oss:jchronic:jar:0.2.6

    [DEBUG]   Included: net.sf.ehcache:ehcache - base: jar: 2.6.2

    [DEBUG]   Included: ognl:ognl:jar:2.6.9

    [DEBUG]   Included: org.codehaus.woodstox:stax2 - api: jar: 3.0.1

    [DEBUG]   Included: stax:stax - api: jar: 1.0.1

    [DEBUG]   Included: org.codehaus.woodstox:woodstox - core - asl:jar:4.0.5

    [DEBUG]   Included: org.slf4j:slf4j - api: jar: 1.6.6

    [DEBUG]   Included: org.slf4j:slf4j - log4j12:jar:1.6.6

    [DEBUG]   Included: Commons-codec: commons-codec: jar: 1.8

    [DEBUG]   Included: org.apache.httpcomponents:httpclient:jar:4.3.5

    [DEBUG]   Included: Commons-Logging: commons-logging: jar: 1.1.1

    [DEBUG]   Included: org.apache.httpcomponents:httpcore:jar:4.3.2

    [DEBUG]   Included: com.vmware.o11n:o11n - model: jar: 6.0.2

    [DEBUG]   Included: com.vmware.o11n:o11n - security: jar: 6.0.2

    [DEBUG]   Included: org.springframework:spring - context: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.springframework:spring - aop:jar:4.0.2.RELEASE

    [DEBUG]   Included: org.springframework:spring - expression: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.springframework.security:spring - security-core: jar: 3.2.3.RELEASE

    [DEBUG]   Included: aopalliance:aopalliance:jar:1.0

    [DEBUG]   Included: antlr:antlr:jar:2.7.6

    [DEBUG]   Included: org.springframework:spring - web: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.springframework:spring - beans: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.springframework:spring - base: pot: 4.0.2.RELEASE

    [DEBUG]   Included: org.apache.geronimo.specs:geronimo - jms_1.1_spec:jar:1.1

    [DEBUG]   Included: com.vmware.o11n:o11n - modelejb-client: jar: 6.0.2

    [DEBUG]   Included: com.vmware.o11n:o11n - scriptingmodel:jar:6.0.2

    [DEBUG]   Included: org.mozilla:rhino:jar:1.7R4

    [DEBUG]   Included: commons-collections: commons-collections: jar: 3.2.1

    [DEBUG]   Included: com.vmware.o11n:o11n - j2eeutil:jar:6.0.2

    [DEBUG]   Included: com.vmware.o11n:o11n - sdkapi:jar:6.0.2

    [DEBUG]   Included: org.hornetq:hornetq - jms-client: pot: 2.2.5.Final

    [DEBUG]   Included: org.hornetq:hornetq - basic-client: pot: 2.2.5.Final

    [DEBUG]   Included: org.jboss.netty:netty:jar:3.2.5.Final

    [DEBUG]   Excluded: org.apache.maven:maven - plugin-api: jar: 2.0

    [DEBUG]   Excluded: org.apache.maven:maven - project: jar: 2.0.6

    [DEBUG]   Excluded: org.apache.maven:maven - settings: jar: 2.0.6

    [DEBUG]   Excluded: org.apache.maven:maven - view profile: jar: 2.0.6

    [DEBUG]   Excluded: org.apache.maven:maven - model: jar: 2.0.6

    [DEBUG]   Excluded: org.apache.maven:maven - artifact-Manager: jar: 2.0.6

    [DEBUG]   Excluded: org.apache.maven:maven - repository - metadata:jar:2.0.6

    [DEBUG]   Excluded: org.apache.maven:maven - plugin-registry: jar: 2.0.6

    [DEBUG]   Excluded: org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1

    [DEBUG]   Excluded: junit:junit:jar:4.11

    [DEBUG]   Excluded: org.hamcrest:hamcrest - core: jar: 1.3

    [DEBUG]   Excluded: classworlds:classworlds:jar:1.1 - alpha-2

    [DEBUG]   Excluded: org.apache.maven:maven - artifact: jar: 2.0.6

    [DEBUG]   Excluded: org.apache.maven:maven - monitor: jar: 2.0.6

    [DEBUG] Configuration of mojo com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - Kingdom ClassRealm plugin package [plugin > com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2, parent: sun.misc.Launcher$AppClassLoader@7987aeca]

    [DEBUG] Mojo configuration ' com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package "with base-> Configurator

    [DEBUG]   (f) allPackages = false

    [DEBUG]   (f) exportHistory = true

    [DEBUG]   (f) ignoreServerCertificate = true

    [DEBUG]   (f) packageName = sovlabs

    [DEBUG]   (f) = MavenProject project: sovlabs:o11nplugin - sovlabs-package: 6.0.2.1 @ /Users/tperry/development/java/sovlabs/o11nplugin-sovlabs-package/pom.xml

    [DEBUG]   (f) projectName = o11nplugin-sovlabs-package

    [DEBUG]   (f) serverUrl = vcoadmin:[email protected]:8281

    [DEBUG]   (f) targetDirectory = / Users/tperry/development/java/sovlabs/o11nplugin-sovlabs-package

    [DEBUG] - configuration - end

    o11nplugin-sovlabs-package

    true

    [DEBUG] Connection to server VMO: 192.168.159.130:8281

    [DEBUG] Create Session

    trustStore is: keystore.pks

    trustStore type is: jks

    trustStore provider is:

    init truststore

    adding that cert trust:

    Subject: CN = localhost.sovsystems.com, OR = VMware, O = VMware, C = US

    Issuer: CN = localhost.sovsystems.com, OR = VMware, O = VMware, C = US

    Algorithm: RSA; Serial number: 0x14e0c0cf436

    Valid from Thursday, June 18 09:40:52 EDT 2015 until Monday, June 16 at 09:40:52 EDT 2025

    adding that cert trust:

    Subject: CN = localhost.localdom, OR = VMware, O = VMware, C = US

    Issuer: CN = localhost.localdom, OR = VMware, O = VMware, C = US

    Algorithm: RSA; Serial number: 0x14e1acfbd66

    Valid from 21 June to 06:28:18 EDT Sun 2015 until Thursday, June 19 at 06:28:18 EDT 2025

    trigger the seeding of SecureRandom

    done seeding SecureRandom

    log4j: WARN no appenders could be found for logger (org.apache.http.impl.conn.BasicClientConnectionManager).

    log4j: WARN Please initialize log4j correctly system.

    log4j: WARN see http://logging.Apache.org/log4j/1.2/FAQ.html#noconfig for more information.

    principal, setSoTimeout (0) called

    Allow the dangerous renegotiation: true

    Allow legacy Hello messages: true

    Is the first handshake: true

    Is secure renegotiation: false

    % No session caching client

    ClientHello, TLSv1

    RandomCookie: GMT: 1418206677 bytes = {70, 53, 184, 192, 171, 103, 63, 205, 239, 130, 185, 55, 52, 10, 142, 255, 182, 157, 75, 73, 218, 99, 55, 109, 97, 21, 99, 190}

    Session ID: {}

    Cipher suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA TLS_RSA_WITH_AES_128_CBC_SHA TLS_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_256_CBC_SHA SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA TLS_EMPTY_RENEGOTIATION_INFO_SCSV]

    Compression methods: {0}

    ***

    [write] MD5 and SHA1 hashes: len = 81

    0000: 01 00 00 4 03 01 55 88 1 46 35 67 AB C0 B8 D5... M... U.... F5... g

    0010: 3F CD 82 37 34 8 0A FF B9 EF B6 4B 9 D 49 DA 63?... 74... KI.c

    0020: 37 6 61 15 63 BE 00 00 26 00 04 00 05 00 00... &... 7ma.c 2F /.

    0030: 35 00 33 00 39 00 32 00 38 00 0 A 00 16 00 13 00 5.3.9.2.8...

    0040: 09 00 15 00 12 00 03 00 08 00 14 00 11 00 FF 01...

    0050: 00                                                 .

    hand WRITING: TLSv1 Handshake, length = 81

    [write] MD5 and SHA1 hashes: len = 110

    0000: 01 03 01 00 45 00 00 00 20 00 00 04 01 00 80 00... E... .......

    0010: 00 05 00 00 00 00 35 00 00 33 00 00 39 00 00 2F... /... 5.3.9.

    0020: 32 00 00 38 00 00 0 A 07 00 C0 00 00 16 00 00 13 2.8...

    0030: 00 00 09 06 00 40 00 00 15 00 00 12 00 00 03 02... @...

    0040: 00 80 00 00 08 00 00 14 00 00 11 00 00 FF 55 88... U.

    0050: 1ST 46 35 67 AB C0 B8 D5 3F CD 82 37 34 0A B9 EF... F5... g?... 74.

    0060: 8 FF B6 9 D 4B 49 DA 63 37 6 D 61 15 63 OR... KI.c7ma.c.

    hand WRITING: message of SSLv2 client hello, length = 110

    [Raw write]: length = 112

    0000: 6 80 01 03 01 00 45 00 00 00 20 00 00 04 01 00. n... E... .....

    0010: 80 00 00 05 00 00 00 00 35 00 00 33 00 00 39 2F... /... 5.3.9

    0020: 00 00 32 00 00 38 00 00 0 A 07 00 00 00 16 00 C0... 2..8..........

    0030: 00 13 00 00 09 06 00 40 00 00 15 00 00 12 00 00... @...

    0040: 03 02 00 80 00 00 08 00 00 14 00 00 11 00 00 FF...

    0050:55 88 1 46 35 67 AB C0 B8 D5 3F CD EF B9 37 U 82... F5... g?... 7

    0060: 0 34A 8 FF B6 9 d 4 b 49 DA 63 37 6 D 61 15 63 EITHER 4... KI.c7ma.c.

    [First reading]: length = 5

    0000: 15 03 01 00 02...

    [First reading]: length = 2

    0000: 02 28                                              . (

    main, READ: alert TLSv1, length = 2

    principal, RECV TLSv1 ALERT: handshake_failure fatal.

    principal, called closeSocket()

    principal, exception handling: javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    principal, called close()

    closeInternal (true) main, called

    [WARNING] Ignored exceptions.

    javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:174)

    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:136)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.recvAlert(SSLSocketImpl.java:1822)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1004)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1188)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1215)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1199)

    at org.apache.http.conn.ssl.SSLSocketFactory.connectSocket(SSLSocketFactory.java:535)

    at org.apache.http.conn.ssl.SSLSocketFactory.connectSocket(SSLSocketFactory.java:403)

    at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:177)

    at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:304)

    at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611)

    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446)

    at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:106)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:57)

    at ch.dunes.model.client.VcoEndpointLocator.tryHardAndLocateEndpoint(VcoEndpointLocator.java:44)

    at com.vmware.o11n.model.support.proxy.RemoteHttpVSOFactoryInvocationHandler.getServiceUrl(RemoteHttpVSOFactoryInvocationHandler.java:308)

    at com.vmware.o11n.model.support.proxy.RemoteHttpVSOFactoryInvocationHandler.init(RemoteHttpVSOFactoryInvocationHandler.java:242)

    at com.vmware.o11n.tools.client.VSOTrustAllFactoryClient.initHandler(VSOTrustAllFactoryClient.java:47)

    at ch.dunes.model.client.VSOFactoryClient.connectRemoteProxy(VSOFactoryClient.java:224)

    at ch.dunes.model.client.VSOFactoryClient.connect(VSOFactoryClient.java:302)

    at ch.dunes.model.client.VSOFactoryClient.connect(VSOFactoryClient.java:262)

    at ch.dunes.model.client.VSOFactoryClient.connect(VSOFactoryClient.java:269)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.connectVCOServer(ImportPackageMojo.java:205)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.execute(ImportPackageMojo.java:130)

    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:132)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)

    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)

    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:120)

    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:355)

    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:155)

    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:584)

    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:216)

    at org.apache.maven.cli.MavenCli.main(MavenCli.java:160)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)

    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)

    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)

    trustStore is: keystore.pks

    trustStore type is: jks

    trustStore provider is:

    init truststore

    adding that cert trust:

    Subject: CN = localhost.sovsystems.com, OR = VMware, O = VMware, C = US

    Issuer: CN = localhost.sovsystems.com, OR = VMware, O = VMware, C = US

    Algorithm: RSA; Serial number: 0x14e0c0cf436

    Valid from Thursday, June 18 09:40:52 EDT 2015 until Monday, June 16 at 09:40:52 EDT 2025

    adding that cert trust:

    Subject: CN = localhost.localdom, OR = VMware, O = VMware, C = US

    Issuer: CN = localhost.localdom, OR = VMware, O = VMware, C = US

    Algorithm: RSA; Serial number: 0x14e1acfbd66

    Valid from 21 June to 06:28:18 EDT Sun 2015 until Thursday, June 19 at 06:28:18 EDT 2025

    trigger the seeding of SecureRandom

    done seeding SecureRandom

    trigger the seeding of SecureRandom

    done seeding SecureRandom

    principal, setSoTimeout (0) called

    Allow the dangerous renegotiation: true

    Allow legacy Hello messages: true

    Is the first handshake: true

    Is secure renegotiation: false

    % No session caching client

    ClientHello, TLSv1

    RandomCookie: GMT: 1418206677 bytes = {5, 153, 124, 38, 128, 81, 162, 210, 153, 175, 228, 69, 197, 151, 238, 200, 164, 180, 214, 141, 25, 106, 189, 152, 128, 170, 31, 196}

    Session ID: {}

    Cipher suites: [SSL_RSA_WITH_RC4_128_MD5, SSL_RSA_WITH_RC4_128_SHA TLS_RSA_WITH_AES_128_CBC_SHA TLS_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_256_CBC_SHA SSL_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA, SSL_RSA_WITH_DES_CBC_SHA, SSL_DHE_RSA_WITH_DES_CBC_SHA, SSL_DHE_DSS_WITH_DES_CBC_SHA, SSL_RSA_EXPORT_WITH_RC4_40_MD5, SSL_RSA_EXPORT_WITH_DES40_CBC_SHA, SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA TLS_EMPTY_RENEGOTIATION_INFO_SCSV]

    Compression methods: {0}

    ***

    [write] MD5 and SHA1 hashes: len = 81

    0000: 01 00 00 4 03 01 55 88 1 05 99 7 26 80 51 D5... M... U... &. Q

    0010: A2 D2 99 AF 45 C5 97 EA A4 B4 D6 8 D C8 E4 6 TO 19... E.........j

    0020: 98 BD 80 AA 1F 00 00 26 00 04 00 05 00 00 2F C4... &... /.

    0030: 35 00 33 00 39 00 32 00 38 00 0 A 00 16 00 13 00 5.3.9.2.8...

    0040: 09 00 15 00 12 00 03 00 08 00 14 00 11 00 FF 01...

    0050: 00                                                 .

    hand WRITING: TLSv1 Handshake, length = 81

    [write] MD5 and SHA1 hashes: len = 110

    0000: 01 03 01 00 45 00 00 00 20 00 00 04 01 00 80 00... E... .......

    0010: 00 05 00 00 00 00 35 00 00 33 00 00 39 00 00 2F... /... 5.3.9.

    0020: 32 00 00 38 00 00 0 A 07 00 C0 00 00 16 00 00 13 2.8...

    0030: 00 00 09 06 00 40 00 00 15 00 00 12 00 00 03 02... @...

    0040: 00 80 00 00 08 00 00 14 00 00 11 00 00 FF 55 88... U.

    0050: 1ST D5 05 99 7 26 80 51 A2 D2 99 AF E4 C5 97 45... &. Q..... E...

    0060: EE C8 A4 B4 D6 8 D 19 6a BD 98 80 AA 1F C4... j...

    hand WRITING: message of SSLv2 client hello, length = 110

    [Raw write]: length = 112

    0000: 6 80 01 03 01 00 45 00 00 00 20 00 00 04 01 00. n... E... .....

    0010: 80 00 00 05 00 00 00 00 35 00 00 33 00 00 39 2F... /... 5.3.9

    0020: 00 00 32 00 00 38 00 00 0 A 07 00 00 00 16 00 C0... 2..8..........

    0030: 00 13 00 00 09 06 00 40 00 00 15 00 00 12 00 00... @...

    0040: 03 02 00 80 00 00 08 00 00 14 00 00 11 00 00 FF...

    0050:55 88 1st D5 05 99 7 26 80 51 A2 D2 99 AF E4 45 u... &. Q..... E

    0060: C5 97 EE C8 A4 B4 D6 8 D   19 6a BD 98 80 AA 1F C4... j...

    [First reading]: length = 5

    0000: 15 03 01 00 02...

    [First reading]: length = 2

    0000: 02 28                                              . (

    main, READ: alert TLSv1, length = 2

    principal, RECV TLSv1 ALERT: handshake_failure fatal.

    principal, called closeSocket()

    principal, exception handling: javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    principal, called close()

    closeInternal (true) main, called

    [ERROR] Org.springframework.remoting.RemoteAccessException: couldn't access HTTP calling remote service to [https://192.168.159.130:8281 https://192.168.159.130: 8281/vco]; nested exception is javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    Org.springframework.remoting.RemoteAccessException [DEBUG]: could not access HTTP calling remote service to [https://192.168.159.130:8281 https://192.168.159.130: 8281/vco]; nested exception is javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    ch.dunes.util.DunesServerException: org.springframework.remoting.RemoteAccessException: could not access HTTP calling remote service to [https://192.168.159.130:8281 https://192.168.159.130: 8281/vco]; nested exception is javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    at ch.dunes.model.client.VSOFactoryClient.connectRemoteProxy(VSOFactoryClient.java:244)

    at ch.dunes.model.client.VSOFactoryClient.connect(VSOFactoryClient.java:302)

    at ch.dunes.model.client.VSOFactoryClient.connect(VSOFactoryClient.java:262)

    at ch.dunes.model.client.VSOFactoryClient.connect(VSOFactoryClient.java:269)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.connectVCOServer(ImportPackageMojo.java:205)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.execute(ImportPackageMojo.java:130)

    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:132)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)

    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)

    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:120)

    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:355)

    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:155)

    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:584)

    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:216)

    at org.apache.maven.cli.MavenCli.main(MavenCli.java:160)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)

    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)

    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)

    Caused by: org.springframework.remoting.RemoteAccessException: could not access HTTP calling remote service to [https://192.168.159.130:8281 https://192.168.159.130: 8281/vco]; nested exception is javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.convertHttpInvokerAccessException(HttpInvokerClientInterceptor.java:216)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.invoke(HttpInvokerClientInterceptor.java:147)

    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)

    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:207)

    to com.sun.proxy. $Proxy21.authenticate (unknown Source)

    at com.vmware.o11n.model.support.proxy.RemoteHttpVSOFactoryInvocationHandler.connect(RemoteHttpVSOFactoryInvocationHandler.java:106)

    at ch.dunes.model.client.VSOAccessPointAwareFactoryClient.connectWithToken(VSOAccessPointAwareFactoryClient.java:31)

    at ch.dunes.model.client.VSOFactoryClient.connectRemoteProxy(VSOFactoryClient.java:225)

    ... more than 26

    Caused by: javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:174)

    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:136)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.recvAlert(SSLSocketImpl.java:1822)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1004)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1188)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1215)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1199)

    at org.apache.http.conn.ssl.SSLSocketFactory.connectSocket(SSLSocketFactory.java:535)

    at org.apache.http.conn.ssl.SSLSocketFactory.connectSocket(SSLSocketFactory.java:403)

    at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:177)

    at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:304)

    at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611)

    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446)

    at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:106)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:57)

    at org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor.executeHttpPost(HttpComponentsHttpInvokerRequestExecutor.java:213)

    at org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor.doExecuteRequest(HttpComponentsHttpInvokerRequestExecutor.java:147)

    at org.springframework.remoting.httpinvoker.AbstractHttpInvokerRequestExecutor.executeRequest(AbstractHttpInvokerRequestExecutor.java:138)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.executeRequest(HttpInvokerClientInterceptor.java:194)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.executeRequest(HttpInvokerClientInterceptor.java:176)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.invoke(HttpInvokerClientInterceptor.java:144)

    ... 32 more

    [DEBUG] Disconnect from the server

    [INFO] ------------------------------------------------------------------------

    [INFO] BUILD FAILURE

    [INFO] ------------------------------------------------------------------------

    [INFO] Total time: 1.072 s

    [INFO] Finished in: 2015-06 - 22 T 10: 42:29 - 04:00

    [INFO] Final memory: 8 M / 81 M

    [INFO] ------------------------------------------------------------------------

    Finalizer called close()

    Finalizer, call closeInternal (true)

    Finalizer called close()

    Finalizer, call closeInternal (true)

    [ERROR] cannot run the purpose com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package (by default-cli) on the project o11nplugin-sovlabs-package: unable to connect to the server by using the url "[vcoadmin:[email protected]:8281]": org.springframework.remoting.RemoteAccessException: could not access HTTP calling remote service to [https://192.168.159.130:8281 https://192.168.159.130: 8281/vco]; nested exception is javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure--> [help 1]

    org.apache.maven.lifecycle.LifecycleExecutionException: cannot run the purpose com.vmware.o11n.mojo.pkg:maven - o11n-package - plugin:6.0.2:import - package (by default-cli) on the project o11nplugin-sovlabs-package: unable to connect to the server by using the url "[vcoadmin:[email protected]:8281]".

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:216)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)

    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)

    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)

    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:120)

    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:355)

    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:155)

    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:584)

    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:216)

    at org.apache.maven.cli.MavenCli.main(MavenCli.java:160)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)

    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)

    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)

    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)

    Caused by: org.apache.maven.plugin.MojoExecutionException: unable to connect to the server by using the url "[vcoadmin:[email protected]:8281]".

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.connectVCOServer(ImportPackageMojo.java:211)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.execute(ImportPackageMojo.java:130)

    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:132)

    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:208)

    ... 19 more

    Caused by: ch.dunes.util.DunesServerException: org.springframework.remoting.RemoteAccessException: could not access HTTP calling remote service to [https://192.168.159.130:8281 https://192.168.159.130: 8281/vco]; nested exception is javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    at ch.dunes.model.client.VSOFactoryClient.connectRemoteProxy(VSOFactoryClient.java:244)

    at ch.dunes.model.client.VSOFactoryClient.connect(VSOFactoryClient.java:302)

    at ch.dunes.model.client.VSOFactoryClient.connect(VSOFactoryClient.java:262)

    at ch.dunes.model.client.VSOFactoryClient.connect(VSOFactoryClient.java:269)

    at com.vmware.o11n.mojo.pkg.ImportPackageMojo.connectVCOServer(ImportPackageMojo.java:205)

    ... more than 22

    Caused by: org.springframework.remoting.RemoteAccessException: could not access HTTP calling remote service to [https://192.168.159.130:8281 https://192.168.159.130: 8281/vco]; nested exception is javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.convertHttpInvokerAccessException(HttpInvokerClientInterceptor.java:216)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.invoke(HttpInvokerClientInterceptor.java:147)

    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)

    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:207)

    to com.sun.proxy. $Proxy21.authenticate (unknown Source)

    at com.vmware.o11n.model.support.proxy.RemoteHttpVSOFactoryInvocationHandler.connect(RemoteHttpVSOFactoryInvocationHandler.java:106)

    at ch.dunes.model.client.VSOAccessPointAwareFactoryClient.connectWithToken(VSOAccessPointAwareFactoryClient.java:31)

    at ch.dunes.model.client.VSOFactoryClient.connectRemoteProxy(VSOFactoryClient.java:225)

    ... more than 26

    Caused by: javax.net.ssl.SSLHandshakeException: received fatal alert: handshake_failure

    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:174)

    at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:136)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.recvAlert(SSLSocketImpl.java:1822)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1004)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1188)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1215)

    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1199)

    at org.apache.http.conn.ssl.SSLSocketFactory.connectSocket(SSLSocketFactory.java:535)

    at org.apache.http.conn.ssl.SSLSocketFactory.connectSocket(SSLSocketFactory.java:403)

    at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:177)

    at org.apache.http.impl.conn.ManagedClientConnectionImpl.open(ManagedClientConnectionImpl.java:304)

    at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:611)

    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:446)

    at org.apache.http.impl.client.AbstractHttpClient.doExecute(AbstractHttpClient.java:863)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:82)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:106)

    at org.apache.http.impl.client.CloseableHttpClient.execute(CloseableHttpClient.java:57)

    at org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor.executeHttpPost(HttpComponentsHttpInvokerRequestExecutor.java:213)

    at org.springframework.remoting.httpinvoker.HttpComponentsHttpInvokerRequestExecutor.doExecuteRequest(HttpComponentsHttpInvokerRequestExecutor.java:147)

    at org.springframework.remoting.httpinvoker.AbstractHttpInvokerRequestExecutor.executeRequest(AbstractHttpInvokerRequestExecutor.java:138)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.executeRequest(HttpInvokerClientInterceptor.java:194)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.executeRequest(HttpInvokerClientInterceptor.java:176)

    at org.springframework.remoting.httpinvoker.HttpInvokerClientInterceptor.invoke(HttpInvokerClientInterceptor.java:144)

    ... 32 more

    [ERROR]

    [ERROR]

    [ERROR] For more information about errors and possible solutions, please read the following articles:

    [ERROR] [help 1] http://cwiki.Apache.org/Confluence/display/Maven/MojoExecutionException

    Cessna:o11nplugin - sovlabs-package tperry$


    Hi Tim,.

    Of the handshake could be caused by your customer send message hello SSLv2 client while vRO 6.x server supports TLS only.

    The debug output, it seems that you use Java 1.6u65. I suggest to try with a recent version of Java 1.7 (AFAIK, SSLv2 client hello is removed from the list of client protocol by default for Java 1.7).

  • vCAC 6.0.0.29 Plugin fails to display all VirtualMachines

    Hello expert vCO.

    I had a few problems with the plugin of vCO for vCAC (6.0.0.29 version) running on vCO 5.5.0. More specifically, when I try to expand file VirtualMachines or perform the action of getManagedVirtualMachines() , I get an error of plugin:

    unknown-error.png

    Newspapers of vCO regarding the vCAC plugin show that it could be related to a problem of parsing XML from the server vCAC:

    2014-09-19 12:50:00.962 - content of 0400 [http-bio-142.42.194.85-8281-exec-4] ERROR {} [AbstractResourceElementConfigPersister] error loading the resource with the id: af0beeb8-9963-42e7-a5c1-46152b6688ea

    com.thoughtworks.xstream.io.StreamException: only content allowed before the start tag and not I (position: START_DOCUMENT view... @ 1:1)

    at com.thoughtworks.xstream.io.xml.XppReader.pullNextEvent(XppReader.java:124)

    at com.thoughtworks.xstream.io.xml.AbstractPullReader.readRealEvent(AbstractPullReader.java:148)

    at com.thoughtworks.xstream.io.xml.AbstractPullReader.readEvent(AbstractPullReader.java:141)

    at com.thoughtworks.xstream.io.xml.AbstractPullReader.move(AbstractPullReader.java:118)

    at com.thoughtworks.xstream.io.xml.AbstractPullReader.moveDown(AbstractPullReader.java:103)

    to com.thoughtworks.xstream.io.xml.XppReader. < init > (XppReader.java:63)

    at com.thoughtworks.xstream.io.xml.AbstractXppDriver.createReader(AbstractXppDriver.java:54)

    at com.thoughtworks.xstream.XStream.fromXML(XStream.java:913)

    at com.vmware.o11n.plugin.dynamicops.configuration.VcacConfigPersister.bytes2Config(VcacConfigPersister.java:52)

    at com.vmware.o11n.plugin.dynamicops.configuration.VcacConfigPersister.bytes2Config(VcacConfigPersister.java:21)

    at com.vmware.o11n.plugin.sdk.spring.platform.AbstractResourceElementConfigPersister.getAll(AbstractResourceElementConfigPersister.java:37)

    at com.vmware.o11n.plugin.dynamicops.configuration.XStreamConfigurationServiceImpl.reload(XStreamConfigurationServiceImpl.java:165)

    at com.vmware.o11n.plugin.dynamicops.configuration.XStreamConfigurationServiceImpl.load(XStreamConfigurationServiceImpl.java:141)

    to com.vmware.o11n.plugin.dynamicops.VcacPluginFactory$ 2.call(VcacPluginFactory.java:227)

    to com.vmware.o11n.plugin.dynamicops.VcacPluginFactory$ 2.call(VcacPluginFactory.java:224)

    at com.vmware.o11n.plugin.sdk.spring.AbstractSpringPluginFactory.doInCurrent(AbstractSpringPluginFactory.java:193)

    at com.vmware.o11n.plugin.dynamicops.VcacPluginFactory.afterInitialized(VcacPluginFactory.java:224)

    at com.vmware.o11n.plugin.sdk.spring.AbstractSpringPluginAdaptor.createPluginFactory(AbstractSpringPluginAdaptor.java:74)

    at com.vmware.o11n.plugin.sdk.spring.AbstractSpringPluginAdaptor.createPluginFactory(AbstractSpringPluginAdaptor.java:30)

    to ch.dunes.vso.sdk.SDKDatasource$ 1.create(SDKDatasource.java:206)

    at ch.dunes.vso.sdk.PluginFactoryCreator.getPluginFactory(PluginFactoryCreator.java:30)

    at ch.dunes.vso.sdk.SDKDatasourceInvoker.getPluginFactory(SDKDatasourceInvoker.java:181)

    at ch.dunes.vso.sdk.SDKDatasourceInvoker.fetchRelation(SDKDatasourceInvoker.java:62)

    at ch.dunes.vso.sdk.SDKFinder.fetchRelation(SDKFinder.java:324)

    at ch.dunes.vso.sdk.SDKFinder._findRelation(SDKFinder.java:298)

    at ch.dunes.vso.sdk.SDKFinder.findRelation(SDKFinder.java:219)

    at ch.dunes.vso.sdk.ModulesFactory.findRelation(ModulesFactory.java:520)

    at com.vmware.o11n.sdk.EnhancedScriptingSDK.findRelation(EnhancedScriptingSDK.java:99)

    at com.vmware.o11n.service.sdk.SdkModuleServiceImpl.findRelation(SdkModuleServiceImpl.java:57)

    at com.vmware.o11n.service.factory.VcoFactoryFacade.findRelation(VcoFactoryFacade.java:1602)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at com.vmware.o11n.service.security.AccessRightsInterceptor.invoke(AccessRightsInterceptor.java:92)

    at com.vmware.o11n.service.security.AccessRightsInterceptor.invoke(AccessRightsInterceptor.java:83)

    at com.vmware.o11n.service.webremoting.VcoDelegatingWebFacade.invokeOperation(VcoDelegatingWebFacade.java:106)

    at com.vmware.o11n.integration.initialization.VcoFactoryServiceFacadeProxy.invokeOperation(VcoFactoryServiceFacadeProxy.java:86)

    at sun.reflect.GeneratedMethodAccessor110.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:319)

    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:196)

    to com.sun.proxy. $Proxy104.invokeOperation (unknown Source)

    at sun.reflect.GeneratedMethodAccessor109.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.springframework.remoting.support.RemoteInvocation.invoke(RemoteInvocation.java:205)

    at org.springframework.remoting.support.DefaultRemoteInvocationExecutor.invoke(DefaultRemoteInvocationExecutor.java:38)

    at org.springframework.remoting.support.RemoteInvocationBasedExporter.invoke(RemoteInvocationBasedExporter.java:78)

    at org.springframework.remoting.support.RemoteInvocationBasedExporter.invokeAndCreateResult(RemoteInvocationBasedExporter.java:114)

    at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.handleRequest(HttpInvokerServiceExporter.java:73)

    at org.springframework.web.context.support.HttpRequestHandlerServlet.service(HttpRequestHandlerServlet.java:67)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

    at net.sf.ehcache.constructs.web.filter.GzipFilter.doFilter(GzipFilter.java:95)

    at net.sf.ehcache.constructs.web.filter.Filter.doFilter(Filter.java:86)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123)

    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:581)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)

    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99)

    at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:680)

    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:929)

    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)

    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1002)

    to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.java:585)

    to org.apache.tomcat.util.net.JIoEndpoint$ SocketProcessor.run (JIoEndpoint.java:312)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    Caused by: org.xmlpull.v1.XmlPullParserException: only content allowed before the start tag and not I (position: START_DOCUMENT view... @ 1:1)

    at org.xmlpull.mxp1.MXParser.parseProlog(MXParser.java:1519)

    at org.xmlpull.mxp1.MXParser.nextImpl(MXParser.java:1395)

    at org.xmlpull.mxp1.MXParser.next(MXParser.java:1093)

    at com.thoughtworks.xstream.io.xml.XppReader.pullNextEvent(XppReader.java:109)

    ... more than 74

    2014-09-19 12:50:00.978 - 0400 [http-bio-142.42.194.85-8281-exec-4] DEBUG {} [VSOFactoryClient] disconnect from the server

    2014-09-19 12:50:00.991 - 0400 [http-bio-142.42.194.85-8281-exec-4] DEBUG {} [SDKDatasource] try to delete a SDK session that does not exist

    2014 09-19 12:51:04.757 - 0400 [http-bio-142.42.194.85-8281-exec-3] {} [VcoDelegatingWebFacade] Server error ERROR...

    ch.dunes.model.sdk.SDKFinderException: cannot run 'fetchRelation' to type: virtualFolder_VirtualMachines: java.lang.RuntimeException:

    at ch.dunes.vso.sdk.SDKFinder.fetchRelation(SDKFinder.java:334)

    at ch.dunes.vso.sdk.SDKFinder._findRelation(SDKFinder.java:298)

    at ch.dunes.vso.sdk.SDKFinder.findRelation(SDKFinder.java:219)

    at ch.dunes.vso.sdk.ModulesFactory.findRelation(ModulesFactory.java:520)

    at com.vmware.o11n.sdk.EnhancedScriptingSDK.findRelation(EnhancedScriptingSDK.java:99)

    at com.vmware.o11n.service.sdk.SdkModuleServiceImpl.findRelation(SdkModuleServiceImpl.java:57)

    at com.vmware.o11n.service.factory.VcoFactoryFacade.findRelation(VcoFactoryFacade.java:1602)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at com.vmware.o11n.service.security.AccessRightsInterceptor.invoke(AccessRightsInterceptor.java:92)

    at com.vmware.o11n.service.security.AccessRightsInterceptor.invoke(AccessRightsInterceptor.java:83)

    at com.vmware.o11n.service.webremoting.VcoDelegatingWebFacade.invokeOperation(VcoDelegatingWebFacade.java:106)

    at com.vmware.o11n.integration.initialization.VcoFactoryServiceFacadeProxy.invokeOperation(VcoFactoryServiceFacadeProxy.java:86)

    at sun.reflect.GeneratedMethodAccessor110.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:319)

    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:196)

    to com.sun.proxy. $Proxy104.invokeOperation (unknown Source)

    at sun.reflect.GeneratedMethodAccessor109.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.springframework.remoting.support.RemoteInvocation.invoke(RemoteInvocation.java:205)

    at org.springframework.remoting.support.DefaultRemoteInvocationExecutor.invoke(DefaultRemoteInvocationExecutor.java:38)

    at org.springframework.remoting.support.RemoteInvocationBasedExporter.invoke(RemoteInvocationBasedExporter.java:78)

    at org.springframework.remoting.support.RemoteInvocationBasedExporter.invokeAndCreateResult(RemoteInvocationBasedExporter.java:114)

    at org.springframework.remoting.httpinvoker.HttpInvokerServiceExporter.handleRequest(HttpInvokerServiceExporter.java:73)

    at org.springframework.web.context.support.HttpRequestHandlerServlet.service(HttpRequestHandlerServlet.java:67)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:722)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:305)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

    at net.sf.ehcache.constructs.web.filter.GzipFilter.doFilter(GzipFilter.java:95)

    at net.sf.ehcache.constructs.web.filter.Filter.doFilter(Filter.java:86)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123)

    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:581)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)

    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99)

    at org.apache.catalina.valves.RemoteIpValve.invoke(RemoteIpValve.java:680)

    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:929)

    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)

    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1002)

    to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.java:585)

    to org.apache.tomcat.util.net.JIoEndpoint$ SocketProcessor.run (JIoEndpoint.java:312)

    at java.util.concurrent.ThreadPoolExecutor.runWorker (unknown Source)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (unknown Source)

    at java.lang.Thread.run (unknown Source)

    2014 09-19 12:51:04.759 - 0400 [http-bio-142.42.194.85-8281-exec-3] {} [VcoFactoryServiceFacadeProxy] ch.dunes.util.DunesServerException ERROR: cannot run 'fetchRelation' to type: virtualFolder_VirtualMachines: java.lang.RuntimeException:

    You have an idea why this might happen? Thanks for your help!

    This is resolved. If the IaaS vCAC server is unresponsive or hangs, it is the trace of the stack as we. Maybe some better "timeout" messages can be sent from the plug-in?

Maybe you are looking for