<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Provisioning Server in Java in Intel® Business Client Software Development</title>
    <link>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914637#M5418</link>
    <description>Hi,&lt;BR /&gt;I am planning to implement the iAMT provisioning server in java so that it can be easily integrated with our product and will work in both windows and linux platforms. But when i looked at the iAMT SCA and SCS it got implemented in .NET environment and can be used on only windows.&lt;BR /&gt;&lt;BR /&gt;Could you please let us know if you have any java samples (or implementation) for the provisioning server?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Periyasamy&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 06 Jan 2010 12:35:55 GMT</pubDate>
    <dc:creator>peri</dc:creator>
    <dc:date>2010-01-06T12:35:55Z</dc:date>
    <item>
      <title>Provisioning Server in Java</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914637#M5418</link>
      <description>Hi,&lt;BR /&gt;I am planning to implement the iAMT provisioning server in java so that it can be easily integrated with our product and will work in both windows and linux platforms. But when i looked at the iAMT SCA and SCS it got implemented in .NET environment and can be used on only windows.&lt;BR /&gt;&lt;BR /&gt;Could you please let us know if you have any java samples (or implementation) for the provisioning server?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Periyasamy&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Jan 2010 12:35:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914637#M5418</guid>
      <dc:creator>peri</dc:creator>
      <dc:date>2010-01-06T12:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Provisioning Server in Java</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914638#M5419</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Hello,&lt;BR /&gt;Unfortunately we do not have any provisioning samples in Java at this time.&lt;BR /&gt;I will pass on you request to our development teams.&lt;BR /&gt;&lt;BR /&gt;There have been requests for Java in the past and I anticipate something for Java will be available ina future release.</description>
      <pubDate>Wed, 06 Jan 2010 18:50:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914638#M5419</guid>
      <dc:creator>Lance_A_Intel</dc:creator>
      <dc:date>2010-01-06T18:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Provisioning Server in Java</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914639#M5420</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/335374"&gt;Lance Atencio (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;Hello,&lt;BR /&gt;Unfortunately we do not have any provisioning samples in Java at this time.&lt;BR /&gt;I will pass on you request to our development teams.&lt;BR /&gt;&lt;BR /&gt;There have been requests for Java in the past and I anticipate something for Java will be available ina future release.&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Hi,&lt;BR /&gt;Does the webservices exposed in the iAMT SDK support provisioning through java client (using axis stubs)?&lt;BR /&gt;&lt;BR /&gt;I am trying to provision the iAMT device with PSK method (one-touch) and using the following java client code to call the methods in the SecurityAdministrationService for the provisioning after we get hello packets from the iAMT device.&lt;BR /&gt;&lt;BR /&gt; SecurityAdministrationService serv = new SecurityAdministrationServiceLocator();&lt;BR /&gt; //	 Get the port from the "vpro" host&lt;BR /&gt; URL targetEntry = new URL("https://164.99.164.82:16993/SecurityAdministrationService");&lt;BR /&gt; SecurityAdministrationSoapPortType pt = serv.getSecurityAdministrationSoapPortType(targetEntry); &lt;BR /&gt; &lt;BR /&gt; //	 Set the authentication data (read username and password)&lt;BR /&gt; ((SecurityAdministrationSoapBindingStub) pt).setUsername("admin");&lt;BR /&gt; ((SecurityAdministrationSoapBindingStub) pt).setPassword("Novell@1");			&lt;BR /&gt; ((SecurityAdministrationSoapBindingStub) pt).setTlsEnabled(true);&lt;BR /&gt;&lt;BR /&gt;String pidString = "O6UI48K6";&lt;BR /&gt; String ppsString = "G5JIDUIAVKPPW8DVN4OTEIZGGJ4HOFXL";&lt;BR /&gt; byte [] PID =pidString.getBytes();&lt;BR /&gt; byte [] PPS = ppsString.getBytes();&lt;BR /&gt; &lt;BR /&gt; ((SecurityAdministrationSoapBindingStub) pt).setTLSPSK(PID, PPS);&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; UnsignedIntHolder status = new UnsignedIntHolder();&lt;BR /&gt; StringHolder version = new StringHolder();&lt;BR /&gt; &lt;BR /&gt; ((SecurityAdministrationSoapBindingStub) pt).getCoreVersion(status, version);&lt;BR /&gt;&lt;BR /&gt;But i get the following error:&lt;BR /&gt;AxisFault&lt;BR /&gt; faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException&lt;BR /&gt; faultSubcode: &lt;BR /&gt; faultString: javax.net.ssl.SSLException: Received fatal alert: internal_error&lt;BR /&gt; faultActor: &lt;BR /&gt; faultNode: &lt;BR /&gt; faultDetail: &lt;BR /&gt; {http://xml.apache.org/axis/}stackTrace:javax.net.ssl.SSLException: Received fatal alert: internal_error&lt;BR /&gt; at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)&lt;BR /&gt; at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Unknown Source)&lt;BR /&gt; at com.sun.net.ssl.internal.ssl.SSLSocketImpl.recvAlert(Unknown Source)&lt;BR /&gt; at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(Unknown Source)&lt;BR /&gt; at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(Unknown Source)&lt;BR /&gt; at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(Unknown Source)&lt;BR /&gt; at com.sun.net.ssl.internal.ssl.AppOutputStream.write(Unknown Source)&lt;BR /&gt; at java.io.BufferedOutputStream.flushBuffer(Unknown Source)&lt;BR /&gt; at java.io.BufferedOutputStream.flush(Unknown Source)&lt;BR /&gt; at org.apache.commons.httpclient.ChunkedOutputStream.flush(ChunkedOutputStream.java:191)&lt;BR /&gt; at org.apache.commons.httpclient.methods.EntityEnclosingMethod.writeRequestBody(EntityEnclosingMethod.java:506)&lt;BR /&gt; at org.apache.commons.httpclient.HttpMethodBase.writeRequest(HttpMethodBase.java:2114)&lt;BR /&gt; at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:1096)&lt;BR /&gt; at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:398)&lt;BR /&gt; at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171)&lt;BR /&gt; at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397)&lt;BR /&gt; at org.apache.axis.transport.http.CommonsHTTPSender.invoke(CommonsHTTPSender.java:196)&lt;BR /&gt; at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)&lt;BR /&gt; at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)&lt;BR /&gt; at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)&lt;BR /&gt; at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)&lt;BR /&gt; at org.apache.axis.client.Call.invokeEngine(Call.java:2784)&lt;BR /&gt; at org.apache.axis.client.Call.invoke(Call.java:2767)&lt;BR /&gt; at org.apache.axis.client.Call.invoke(Call.java:2443)&lt;BR /&gt; at org.apache.axis.client.Call.invoke(Call.java:2366)&lt;BR /&gt; at org.apache.axis.client.Call.invoke(Call.java:1812)&lt;BR /&gt; at com.intel.schemas.platform.client.SecurityAdministration._2004._01.SecurityAdministrationSoapBindingStub.getCoreVersion(SecurityAdministrationSoapBindingStub.java:2362)&lt;BR /&gt; at com.test.iamt.provisioning.ProvisioningTest.main(ProvisioningTest.java:62)&lt;BR /&gt;&lt;BR /&gt;Please let me know what is the sequence of method calls need to made to access the webservice on the iAMT device if we use axis for the provisioning.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Periyasamy&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Jan 2010 04:30:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914639#M5420</guid>
      <dc:creator>peri</dc:creator>
      <dc:date>2010-01-11T04:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Provisioning Server in Java</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914640#M5421</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/459153"&gt;pperiyasamy&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Hi,&lt;BR /&gt;I am planning to implement the iAMT provisioning server in java so that it can be easily integrated with our product and will work in both windows and linux platforms. But when i looked at the iAMT SCA and SCS it got implemented in .NET environment and can be used on only windows.&lt;BR /&gt;&lt;BR /&gt;Could you please let us know if you have any java samples (or implementation) for the provisioning server?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Periyasamy&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi Periyasamy-&lt;BR /&gt;&lt;BR /&gt;Sorry for the slow reply here, I was trying to locate some ad hoc java samples to possibly assist you, but i was unsuccessful in my search. As soon has we have some samples we will make them available. To answer your general question..."Does the webservices exposed in the iAMT SDK support provisioning through java client"... There is nothing in the SDK that prohibits the use of java.</description>
      <pubDate>Tue, 12 Jan 2010 20:24:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914640#M5421</guid>
      <dc:creator>Richard_B_Intel1</dc:creator>
      <dc:date>2010-01-12T20:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Provisioning Server in Java</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914641#M5422</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Hi RB,&lt;BR /&gt;Thanks RB for the update.&lt;BR /&gt;&lt;BR /&gt;When i looked at the SCA sample (ConfigurationServer.exe), it uses modified (done by Intel) OpenSSL's TLS-PSK for opening the connection with iAMT webservices during the provisioning. Similar way i m looking for a java implementation that i can use with the java client code (uses axis stubs). Can you suggest me if we have any such implementation which supports TLS-PSK?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Periyasamy&lt;BR /&gt;&lt;BR /&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/336054"&gt;RB (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;Hi Periyasamy-&lt;BR /&gt;&lt;BR /&gt;Sorry for the slow reply here, I was trying to locate some ad hoc java samples to possibly assist you, but i was unsuccessful in my search. As soon has we have some samples we will make them available. To answer your general question..."Does the webservices exposed in the iAMT SDK support provisioning through java client"... There is nothing in the SDK that prohibits the use of java.&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Wed, 13 Jan 2010 03:48:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914641#M5422</guid>
      <dc:creator>peri</dc:creator>
      <dc:date>2010-01-13T03:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Provisioning Server in Java</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914642#M5423</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Periyasamy-&lt;BR /&gt;&lt;BR /&gt;Have you looked through the manageability site to see what Java resources are available?&lt;A href="http://software.intel.com/en-us/manageability/"&gt;http://software.intel.com/en-us/manageability/&lt;/A&gt;&lt;BR /&gt;You can simply type "AMT Java" in the search box and find out what others are doing with Java. Also, have you looked at &lt;A href="http://software.intel.com/en-us/articles/intel-active-management-technology-downloads/"&gt;http://software.intel.com/en-us/articles/intel-active-management-technology-downloads/&lt;/A&gt; ? This site has a link to an old (and no longer supported) Java based RDK.</description>
      <pubDate>Wed, 13 Jan 2010 23:42:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914642#M5423</guid>
      <dc:creator>Richard_B_Intel1</dc:creator>
      <dc:date>2010-01-13T23:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Provisioning Server in Java</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914643#M5424</link>
      <description>&lt;DIV style="margin-left: 2px; margin-right: 2px;"&gt;Quoting &lt;A rel="/en-us/services/profile/quick_profile.php?is_paid=&amp;amp;user_id=336054" class="basic" href="https://community.intel.com/en-us/profile/336054/"&gt;RB (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="border: 1px inset; padding: 5px; background-color: #e5e5e5; margin-left: 2px; margin-right: 2px;"&gt;&lt;I&gt;
&lt;DIV style="margin: 0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Periyasamy-&lt;BR /&gt;&lt;BR /&gt;Have you looked through the manageability site to see what Java resources are available?&lt;A href="http://software.intel.com/en-us/manageability/"&gt;http://software.intel.com/en-us/manageability/&lt;/A&gt;&lt;BR /&gt;You can simply type "AMT Java" in the search box and find out what others are doing with Java. Also, have you looked at &lt;A href="http://software.intel.com/en-us/articles/intel-active-management-technology-downloads/"&gt;http://software.intel.com/en-us/articles/intel-active-management-technology-downloads/&lt;/A&gt; ? This site has a link to an old (and no longer supported) Java based RDK.&lt;/I&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Hi RB,&lt;/P&gt;
&lt;P&gt;I don't see any reference implementations in java for the provisioning. RDK only has the java code for managing iAMT devices not the provisioning.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Periyasamy&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2010 14:51:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914643#M5424</guid>
      <dc:creator>peri</dc:creator>
      <dc:date>2010-01-19T14:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Provisioning Server in Java</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914644#M5425</link>
      <description>&lt;P&gt;Hi pperiyasamy,&lt;/P&gt;
&lt;P&gt;The RDK does not provide samples in Java for Provisioning. It was based on AMT 2.0 and, most likely, it was demonstrated on systems that were setup in Small Business Mode. To my knowledge, we have no Java samples for provisioning.&lt;/P&gt;
&lt;P&gt;Gael&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2010 15:39:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/Provisioning-Server-in-Java/m-p/914644#M5425</guid>
      <dc:creator>Gael_H_Intel</dc:creator>
      <dc:date>2010-01-19T15:39:02Z</dc:date>
    </item>
  </channel>
</rss>

