You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(5) |
Nov
(5) |
Dec
(15) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(13) |
Feb
(40) |
Mar
(18) |
Apr
(11) |
May
(4) |
Jun
(16) |
Jul
(8) |
Aug
(22) |
Sep
(28) |
Oct
(21) |
Nov
(43) |
Dec
(16) |
2003 |
Jan
(38) |
Feb
(42) |
Mar
(61) |
Apr
(20) |
May
(19) |
Jun
(38) |
Jul
(64) |
Aug
(59) |
Sep
(75) |
Oct
(47) |
Nov
(49) |
Dec
(11) |
2004 |
Jan
(10) |
Feb
(14) |
Mar
(11) |
Apr
(5) |
May
(1) |
Jun
(7) |
Jul
(3) |
Aug
(18) |
Sep
(14) |
Oct
(2) |
Nov
(1) |
Dec
|
2005 |
Jan
(5) |
Feb
(2) |
Mar
(2) |
Apr
(1) |
May
(3) |
Jun
(2) |
Jul
(2) |
Aug
(2) |
Sep
(2) |
Oct
(1) |
Nov
|
Dec
(1) |
2006 |
Jan
(4) |
Feb
|
Mar
(2) |
Apr
(4) |
May
|
Jun
(1) |
Jul
(6) |
Aug
(4) |
Sep
(16) |
Oct
(1) |
Nov
(2) |
Dec
(1) |
2007 |
Jan
|
Feb
(2) |
Mar
(3) |
Apr
|
May
(3) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Eashwar N. <ea...@ya...> - 2015-11-28 18:18:59
|
Hi all, Please let me know the default username and password to be passed to verify_cimom.bat program. It would be helpful to know an example usage of verify_cimom.bat Regards,Eashwar |
From: Sada M. <jrm...@ya...> - 2012-06-17 12:23:55
|
http://www.webcrawlerblog.com/wp-content/themes/webcrawler/tdksfn.html?cnj=xi.jcns&jjj=cn.sj&ssi=pjum |
From: Ritesh N. <Rit...@gl...> - 2010-12-14 10:38:41
|
------------------------------------------------------------------------------ Nokia and AT&T present the 2010 Calling All Innovators-North America contest Create new apps & games for the Nokia N8 for consumers in U.S. and Canada $10 million total in prizes - $4M cash, 500 devices, nearly $6M in marketing Develop with Nokia Qt SDK, Web Runtime, or Java and Publish to Ovi Store http://p.sf.net/sfu/nokia-dev2dev |
From: Ritesh N. <Rit...@gl...> - 2010-11-02 10:24:16
|
Hi All, I am developing a cim client using javax.wbemservices project. I encountered a problem while using the "getInstance" method that "name" property (ObjectPath) is not initialized to proper value from the response. I am able to see the fix comment //Since the getInstance method only returns the instance and not the //name we have to fix the REFS Enumeration e = inst.getProperties().elements(); while (e.hasMoreElements()) { CIMProperty p = (CIMProperty) e.nextElement(); if (p != null && p.isReference() && p.getValue() != null) { fixCIMOjbectPath((CIMObjectPath)p.getValue().getValue()); } } Despite this It does not seem to be fixed because p.isReference() is evaluating to false which causes the "fixCIMOjbectPath" not to be called. I have modified the above code to set the object path from the request[in dark blue color]. //Since the getInstance method only returns the instance and not the //name we have to fix the REFS inst.setObjectPath(name); // custom change Enumeration e = inst.getProperties().elements(); while (e.hasMoreElements()) { CIMProperty p = (CIMProperty) e.nextElement(); if (p != null && p.isReference() && p.getValue() != null) { fixCIMOjbectPath((CIMObjectPath)p.getValue().getValue()); } } return inst; This code seems to be working fine. Please let me know if you see any issues with this approach. Please also let me know if you encountered a similar issue, and fixed it some other way. I can contribute this code back to the community if required by anyone. Regards, Ritesh Chandra Nailwal Lead - Engineering | GlobalLogic India Phone: +91. 120. 406.4573 | Mobile: +91. 9818871522 |
From: alanqk <al...@gm...> - 2010-01-20 12:47:51
|
HI, everyone I want to support Chinese language in my mof file, I add #pragma locale("zh_CN") in my mof file header, and save the mof file in Unicode format. However, mofcomp got error when it compile the mof file. Please help me. Looking forward to your reply. Thank you very much. --alanqk |
From: Carlos J. da C. F. <cjc...@ua...> - 2008-10-29 19:54:53
|
Hi, I'm a newbie here as well in all the CIM, WBEM applications. I am trying to follow the tutorial on wbemservices but everytime I try to verify verify.cimom I get the same error, ********************************************************* Running program to get class definition for CIM_LogicalElement over HTTP ********************************************************* D:\WBEMSE~1\cimom\bin>C:\Programas\Java\jdk1.6.0_10\bin\java -classpath .;D:\WBE MSE~1\examples\client\verify;D:\WBEMSE~1\lib\wbem.jar SimpleGetClass localhost nochoi qwerty69 CIM_LogicalElement HTTP Exception: CIM_ERR_NOT_FOUND CIM_ERR_NOT_FOUND at javax.wbem.cimxml.Response.getSimpleCIMResponse(Response.java:108) at javax.wbem.cimxml.Response.getCIMResponse(Response.java:72) at javax.wbem.cimxml.CIMXmlImpl.getCIMResponse(CIMXmlImpl.java:381) at javax.wbem.client.adapter.http.CIMClientXML.getResponse(CIMClientXML. java:512) at javax.wbem.client.adapter.http.CIMClientXML.getFirstResponse(CIMClien tXML.java:548) at javax.wbem.client.adapter.http.CIMClientXML.getClass(CIMClientXML.jav a:922) at javax.wbem.client.CIMClient.getClass(CIMClient.java:1436) at javax.wbem.client.CIMClient.getClass(CIMClient.java:1275) at SimpleGetClass.main(SimpleGetClass.java:68) ********************************************************* Running program to enumerate subclasses for CIM_LogicalElement over HTTP ********************************************************* D:\WBEMSE~1\cimom\bin>C:\Programas\Java\jdk1.6.0_10\bin\java -classpath .;D:\WBE MSE~1\examples\client\verify;D:\WBEMSE~1\lib\wbem.jar EnumClasses localhost noch oi qwerty69 CIM_LogicalElement HTTP Exception: CIM_ERR_INVALID_NAMESPACE ********************************************************* Running program to get class definition for CIM_LogicalElement over RMI ********************************************************* D:\WBEMSE~1\cimom\bin>C:\Programas\Java\jdk1.6.0_10\bin\java -classpath .;D:\WBE MSE~1\examples\client\verify;D:\WBEMSE~1\lib\wbem.jar SimpleGetClass localhost n ochoi qwerty69 CIM_LogicalElement RMI Exception: CIM_ERR_NOT_FOUND: CIM_LogicalElement CIM_ERR_NOT_FOUND: CIM_LogicalElement at org.wbemservices.wbem.cimom.CIMOMImpl.getClass(CIMOMImpl.java:906) at org.wbemservices.wbem.cimom.GetClassOperation.run(GetClassOperation.j ava:64) at org.wbemservices.wbem.cimom.adapters.client.rmi.CIMOMRMIImpl.getClass (CIMOMRMIImpl.java:1001) at org.wbemservices.wbem.cimom.adapters.client.rmi.CIMOM_1Impl.getClass( CIMOM_1Impl.java:366) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces sorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:305) at sun.rmi.transport.Transport$1.run(Transport.java:159) at java.security.AccessController.doPrivileged(Native Method) at sun.rmi.transport.Transport.serviceCall(Transport.java:155) at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:5 35) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTranspor t.java:790) at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport .java:649) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExec utor.java:886) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor .java:908) at java.lang.Thread.run(Thread.java:619) at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Stream RemoteCall.java:255) at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java: 233) at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:142) at org.wbemservices.wbem.cimom.adapters.client.rmi.CIMOM_1Impl_Stub.getC lass(Unknown Source) at org.wbemservices.wbem.client.adapter.rmi.RMIJavaxClient.getClass(RMIJ avaxClient.java:518) at org.wbemservices.wbem.client.adapter.rmi.CIMClientRMI.getClass(CIMCli entRMI.java:329) at javax.wbem.client.CIMClient.getClass(CIMClient.java:1436) at javax.wbem.client.CIMClient.getClass(CIMClient.java:1275) at SimpleGetClass.main(SimpleGetClass.java:68) ********************************************************* Running program to enumerate subclasses for CIM_LogicalElement over RMI ********************************************************* D:\WBEMSE~1\cimom\bin>C:\Programas\Java\jdk1.6.0_10\bin\java -classpath .;D:\WBE MSE~1\examples\client\verify;D:\WBEMSE~1\lib\wbem.jar EnumClasses localhost noch oi qwerty69 CIM_LogicalElement RMI Exception: CIM_ERR_INVALID_NAMESPACE: /localhost And on the cimserver side I get [Fatal Error] :1:1: Premature end of file. Hope you can help me. Thank you for your time. Carlos Figueira |
From: Raymond I. <sor...@gm...> - 2007-08-15 18:37:41
|
On 8/15/07, Raymond Ingles <sor...@gm...> wrote: > Well, it turns out I can enumerate the InstanceNames rather than the > instances, and then create an object path from each name, and do a > getInstance() on that object path to get an instance with enumerable > properties. Just in case anyone else runs into this issue. However, the properties of the instances I retrieve from OpenWBEM have their qualifiers. The instances I get from OpenPegasus don't. So I can't tell which properties are keys and which ones aren't. So, to sum up: 1. I can enumerate instances directly from OpenPegasus, and they have qualifiers. But I can't enumerate instances directly from OpenWBEM. 2. I can enumerate instance names from both OpenPegasus and OpenWBEM, and then get instances from both. But only the ones from OpenWBEM have qualifiers that let me determine if a particular property is a key or not. So, at this point, I don't have a technique that works acceptably with both. Not fun. |
From: Raymond I. <sor...@gm...> - 2007-08-15 12:28:52
|
On 7/31/07, Raymond Ingles <sor...@gm...> wrote: > I've been able to talk to several machines around here, most running > Pegasus. But I set up a Suse 10.1 box running owcimomd (apparently > based on OpenWBEM, with owc's SMASH providers). I'm trying to classify > instances by CreationClassName, but I can't seem to get them the same > way as other CIMOM's I've been talking to. Well, it turns out I can enumerate the InstanceNames rather than the instances, and then create an object path from each name, and do a getInstance() on that object path to get an instance with enumerable properties. Just in case anyone else runs into this issue. |
From: Raymond I. <sor...@gm...> - 2007-07-31 17:51:29
|
I've been able to talk to several machines around here, most running Pegasus. But I set up a Suse 10.1 box running owcimomd (apparently based on OpenWBEM, with owc's SMASH providers). I'm trying to classify instances by CreationClassName, but I can't seem to get them the same way as other CIMOM's I've been talking to. Here's what I'm doing: // Do a deep enumeration of the instances of the class e = cc.enumerateInstances(cop, false, true, true, true, null); // Will print out all the instances of the class and its subclasses. while (e.hasMoreElements()) { CIMInstance inst = (CIMInstance)e.nextElement(); System.out.println(inst.getName()); CIMProperty ccname = inst.getProperty("CreationClassName"); if (null == ccname) { System.out.println("Whoa, no CreationClassName!"); } //CIMProperty[] props = inst.getProperties(); Enumeration props = inst.getProperties().elements(); while (props.hasMoreElements()) { CIMProperty cur_prop = (CIMProperty) props.nextElement(); System.out.print(cur_prop.getName().toString()+ " - "); if (cur_prop.getValue() != null) { System.out.print(cur_prop.getValue().toString()); } else { System.out.print(" NULL VALUE "); } if (cur_prop.isKey()) { System.out.print(" - key!"); } System.out.println(""); } } Indeed, instances that show up with properties in, say, SNIA's cimbrowser don't show *any* properties when queried by this code. A few of them do, say: OMC_SystemTimeService SystemCreationClassName - "OMC_UnitaryComputerSystem" - key! SystemName - "svdevsuse101.prodti.compuware.com" - key! CreationClassName - "OMC_SystemTimeService" - key! Name - "timeservice" - key! But, for example: OMC_SyslogNGRecordLog Whoa, no CreationClassName! Note, no properties listed. I'm somewhat confused. Like I said, this works against other machines (e.g. an Itanium HP-UX box running HP's WBEM providers). Any ideas or suggestions? |
From: Robert H. <rob...@ya...> - 2007-05-22 02:09:15
|
I apologize if this is on the sourceforge posting site, but I can not find any reference to when the wbemservices related code will be ready for Java 5? Thanks in advance ____________________________________________________________________________________Take the Internet to Go: Yahoo!Go puts the Internet in your pocket: mail, news, photos & more. http://mobile.yahoo.com/go?refer=1GNXIC |
From: Raymond I. <sor...@gm...> - 2007-05-07 20:12:02
|
I'm having trouble getting it to work on Linux or Solaris, and I've found a couple of similar questions to what I'd ask in the archives, with no answer listed. Can I hope to get answers to questions, or should I think about moving to a different substructure? I'm not asking this in an accusatory tone, honest. Just being practical. Thanks for any suggestions or direction anyone can give. |
From: Raymond I. <sor...@gm...> - 2007-05-01 14:54:38
|
I'm particularly curious about Solaris providers. I've been playing with cimworkshop and such, and I can see the class hierarchy and so forth, and maybe even create instances, but I don't seem to get any actual data out of 'em. Are there providers that come with WBEM Services? If so, is there documentation on how to use them? If not, do any exist? If they do exist somewhere, how can I get my hands on them? Thanks for any help y'all can provide. |
From: Raymond I. <sor...@gm...> - 2007-03-30 17:30:50
|
On 3/29/07, Bart Whiteley <bwh...@no...> wrote: > We use WBEM Services quite a bit against OpenWBEM. I don't recall any > SSL issues. We've had to apply a patch or two. One of them was for > longer usernames/passwords as I recall. In general, it's been working > well. Well, connecting WBEM Services "cimworkshop" to an HP-UX B.11.23 system running their OpenPegasus-based WBEM server, I can connect (if I disable SSL on the HP and enable http instead), and even see various namespaces, but any attempt to enumerate classes of one of those namespaces (e.g. /root/pg_interop) pops up a dialog that says "Attempted to complete CIM-XML action java.io.IOException and received exception {1}". Nothing's visible. It works when talking to the local box. Where can I get those patches you mentioned? |
From: Bart W. <bwh...@no...> - 2007-03-29 19:51:06
|
On Thu, 2007-03-29 at 15:01 -0400, Raymond Ingles wrote: > I understand that there's some issues with the current WBEM Services > code and SSL. But I haven't been able to get CIM Workshop to connect > to machines other than one running a WBEM Services CIMOM. E.g. one > runing on HP-UX, running the OpenPegasus one. > > How interoperable is WBEM Services supposed to be, and how > interoperable is it actually? We use WBEM Services quite a bit against OpenWBEM. I don't recall any SSL issues. We've had to apply a patch or two. One of them was for longer usernames/passwords as I recall. In general, it's been working well. |
From: Raymond I. <sor...@gm...> - 2007-03-29 19:02:18
|
I understand that there's some issues with the current WBEM Services code and SSL. But I haven't been able to get CIM Workshop to connect to machines other than one running a WBEM Services CIMOM. E.g. one runing on HP-UX, running the OpenPegasus one. How interoperable is WBEM Services supposed to be, and how interoperable is it actually? Thanks for any advice or assitance... |
From: Swapnil J. <jos...@sp...> - 2007-02-27 07:24:49
|
Dear WBEM Services Developer's, I want to know whether I can use WBEM services client SDK to develop an SMI-S based java client on j2me platform or there is any other j2me WBEM API services library available which can be used. Please Suggest: Swapnil Joshi |
From: Swapnil J. <sw...@sp...> - 2007-02-27 07:01:13
|
Dear WBEM Services Developer's, I want to know whether I can use SUN WBEM client SDK to develop an SMI-S based java client on j2me platform or there is any other j2me WBEM API library available which can be used. Please Suggest: Swapnil Joshi |
From: Kauffman, M. B. <mar...@hp...> - 2006-12-09 01:21:25
|
Hi All, I'm trying to get a CIMClient to talk to my server using SSL? Does anyone have an example of how to do that? Below is a snippet of what I have so far, but how do I specify SSL? Thanks in advance! Best Regards, Mark Kauffman // Create the strings for username and password String userName =3D "myclient"; // String password =3D createPassword(); String password =3D "mypassword"; =20 // The following needs to change for ppu, cant uss "","". CIMNameSpace cns =3D new CIMNameSpace("", ""); UserPrincipal up =3D new UserPrincipal(userName); PasswordCredential pc =3D new PasswordCredential(password);=20 =20 /* Connect to the namespace as root with the root password. */ wbemClient =3D new CIMClient(cns, up, pc); /* Eventually I want to call invokeMethod... */ * parameters for CIMClient.invokeMethod(CIMObjectPath arg0, * String arg1, * CIMArgument[] arg2, * CIMArgument[] arg3); */ |
From: jim f. <hoc...@ya...> - 2006-11-09 18:49:37
|
there are too many open ports please reconfigure your server to monitor the wbem service PROVIDER not the client processes ces...@li... wrote: Send Wbemservices-development mailing list submissions to wbe...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/wbemservices-development or, via email, send a message with subject or body 'help' to wbe...@li... You can reach the person managing the list at wbe...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of Wbemservices-development digest..." Today's Topics: 1. Re: status of Wbem Services (erich) 2. Re: Wbemservices-development Digest, Vol 4, Issue 7 (erich) 3. Re: status of Wbem Services (enr...@up...) ---------------------------------------------------------------------- Message: 1 Date: Fri, 29 Sep 2006 16:38:02 +0800 From: "erich" Subject: Re: [Wbemservices-development] status of Wbem Services To: , Message-ID: <200...@ms...> Content-Type: text/plain; charset="US-ASCII" Hi Mr. Lee, I think the wbemservices project does not have enough manpower to maintain it, although it is a good open source project. I have no idea if it is compliant with DSP0004 V2.3 or not. But I think the JSR48 is still 1.0 and it just finished its "Public Review" stage. (http://jcp.org/en/jsr/detail?id=48) Regards, Eric Hsu -----Original Message----- From: wbe...@li... [mailto:wbe...@li...] On Behalf Of van...@em... Sent: Wednesday, September 27, 2006 2:37 AM To: wbe...@li... Subject: [Wbemservices-development] status of Wbem Services Can anyone tell me the current status of this project? Is it compliant with DSP0004 V2.3 and the recently adopted JSR48 2.1 or is it at 1.0 and if so are there any plans to bring it up to date with 2.1 (are the 2.1 changes significant?). Many Thanks, Lee ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Wbemservices-development mailing list Wbe...@li... https://lists.sourceforge.net/lists/listinfo/wbemservices-development ------------------------------ Message: 2 Date: Fri, 29 Sep 2006 16:53:59 +0800 From: "erich" Subject: Re: [Wbemservices-development] Wbemservices-development Digest, Vol 4, Issue 7 To: "'Keehn, Damien'" , Message-ID: <200...@ms...> Content-Type: text/plain; charset="US-ASCII" Dear Damien, Thank you for the information. After searching the internet, I fond 2 articles about using SSL in Java program: 1. SECURE COMMUNICATION WITH JSSE http://java.sun.com/developer/JDCTechTips/2004/tt0817.html#1 2. SSL SERVERS http://java.sun.com/developer/JDCTechTips/2004/tt0914.html#2 I tried to make the SSL support in wbemservices project to work and finally found that the SSL support works find in wbemservices v1.0.2 if you have a certificate in the WBEM server (CIMOM). (I check the README file and it says nothing about it.) A roughly procedure to make the SSL to work: 1. Download the wbemservices v1.0.2. 2. Get a certificate. (If you do not have one, you could use keytool utility of JDK to create one. Please ref. http://java.sun.com/developer/JDCTechTips/2004/tt0914.html#2 for an example.) 3. Run the WBEM server (CIMOM) with the "javax.net.ssl.keyStore" and "javax.net.ssl.keyStorePassword" system properties. You could have it in "cimom\bin\start_cimom.bat". For example: %JAVA% %CLASSPATH% -Xmx128m -Djava.security.manager -Djavax.net.ssl.keyStore="C:\.keystore" -Djavax.net.ssl.keyStorePassword=keystorepassword -Djava.security.policy=%CIMOMBIN%\cimom.policy -DBaseDir=%WBSERHOME% -Dpropdir=%CIMOMBIN% -Dlogdir=%WBLOGDIR% %CIMOMSERVER% %WBSERFILE% 4. Run workshop and use "https://...." in the "Host URL" field as well as any "User Name" and "Passowrd" when you log in the WBEM server. Note: If you run the workshop in another computer, you also need the certificate(at least the public key) in that computer as well as the "javax.net.ssl.keyStore" and "javax.net.ssl.keyStorePassword" system properties when you run the workshop Java program. This is not the scenario we use a browser to connect to an https web site. When I use a browser to visit an https web site, the browser gets some information about the certificate and shows it in another window and asks me to confirm if I accept that certificate when the certificate is not recognized and saved in the browser. Hope next version has this mechanism. Then the client side, i.e. the workshop, does not need to keep the public key of the certificate. Regards, Eric Hsu -----Original Message----- From: wbe...@li... [mailto:wbe...@li...] On Behalf Of Keehn, Damien Sent: Thursday, September 28, 2006 11:29 PM To: wbe...@li... Subject: Re: [Wbemservices-development] Wbemservices-development Digest,Vol 4, Issue 7 Dear Eric, SSL does not work in the available source. Development on the available source has stopped as far as I can see. WBEM Solutions members (Jim Davis, Carl Chan...) claim to be working on a new updated release (2.0), but I have not heard anything is quite a while. Carl, Jim what's going on? Damien Keehn ------------------------------------------------------------------------ Today's Topics: 1. Did anyone any ever try the SSL support in wbemservices? (erich) ---------------------------------------------------------------------- Message: 1 Date: Thu, 28 Sep 2006 02:35:56 +0800 From: "erich" Subject: [Wbemservices-development] Did anyone any ever try the SSL support in wbemservices? To: Message-ID: <200...@ms...> Content-Type: text/plain; charset="us-ascii" Dear Carl, Jack and all other people, I try to enable the SSL support in wbem server (the CIMOM) in wbemservices v1.0.2 by changing the port from 5988 to 5989 of the instance of WBEMServices_CIMXMLObjectManagerClientProtocolAdapter from the workshop and restart the CIMOM. I restart the workshop and try to log in with the "https://.... " in the "Host Url" field in the login dialog, but get an error message after a wait of several minutes. I check the source codes of v1.0.2 as well as the latest source codes from the CVS and find that the codes for the SSL support are not complete. Then, I check the email archive and find some messages about discussion about the SSL support in wbemservices: http://sourceforge.net/mailarchive/message.php?msg_id=3628948 http://sourceforge.net/mailarchive/message.php?msg_id=9623229 Is anyone still keeping those test codes of SSL support and could give them to me? Thanks for your time and kindly help in advance. Eric Hsu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://sourceforge.net/mailarchive/forum.php?forum=wbemservices-developm ent/attachments/20060928/cd3867ae/attachment.html ------------------------------ ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDE V ------------------------------ _______________________________________________ Wbemservices-development mailing list Wbe...@li... https://lists.sourceforge.net/lists/listinfo/wbemservices-development End of Wbemservices-development Digest, Vol 4, Issue 7 ****************************************************** ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Wbemservices-development mailing list Wbe...@li... https://lists.sourceforge.net/lists/listinfo/wbemservices-development ------------------------------ Message: 3 Date: Fri, 29 Sep 2006 10:56:35 +0200 (CEST) From: enr...@up... Subject: Re: [Wbemservices-development] status of Wbem Services To: "wbe...@li..." Message-ID: <606...@ca...> Content-Type: text/plain; charset=ISO-8859-1 I think that WBEMServices is now a commercial product of the WBEMsolutions Inc. people, as they were the original developers. But this is only my opinion.. (http://www.wbemsolutions.com/products_jwbemserver.html) -Enric --- Original Message --- > Hi Mr. Lee, > > I think the wbemservices project does not have enough manpower > to maintain > it, although it is a good open source project. I have no idea > if it is > compliant with DSP0004 V2.3 or not. But I think the JSR48 is > still 1.0 and > it just finished its "Public Review" stage. > (http://jcp.org/en/jsr/detail?id=48) > > Regards, > Eric Hsu > > -----Original Message----- > From: wbe...@li... > [mailto:wbe...@li...] > On Behalf Of > van...@em... > Sent: Wednesday, September 27, 2006 2:37 AM > To: wbe...@li... > Subject: [Wbemservices-development] status of Wbem Services > > Can anyone tell me the current status of this project? Is it > compliant > with DSP0004 V2.3 and the recently adopted JSR48 2.1 or is it > at 1.0 and > if so are there any plans to bring it up to date with 2.1 (are > the 2.1 > changes significant?). > > Many Thanks, > > Lee > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance > to share your > opinions on IT & business topics through brief surveys -- and > earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Wbemservices-development mailing list > Wbe...@li... > https://lists.sourceforge.net/lists/listinfo/wbemservices-development > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance > to share your > opinions on IT & business topics through brief surveys -- and > earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Wbemservices-development mailing list > Wbe...@li... > https://lists.sourceforge.net/lists/listinfo/wbemservices-development ------------------------------ ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV ------------------------------ _______________________________________________ Wbemservices-development mailing list Wbe...@li... https://lists.sourceforge.net/lists/listinfo/wbemservices-development End of Wbemservices-development Digest, Vol 4, Issue 9 ****************************************************** >FREE!> http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ > protection around walmart.com http://www.subscribenw.com/nl05 --------------------------------- Everyone is raving about the all-new Yahoo! Mail beta. |
From: Rodolfo C. <cam...@gm...> - 2006-11-05 19:46:36
|
Dear list friends, I'm having an error when trying to connect my client (programmed in jdk1.5) to machines with Solaris 8, I do not have this problem consulting machines with Solaris 9 & 10. Here's my Client, there is one curious thing, when I run this program with jdk1.4.2 there is no problem, but when I run it with jdk1.5 I've got a ClassNotFound exception for java.security.KeyRep (this class was included i= n jdk1.5), I think the problem is with the RMI version. I have to run this program using jdk1.5 because the rest of the client was written using it and it will be very hard to bring it back to jdk1.4.2. Wha= t can I do?? I've been reading RMI specifications from sun documentation, but still not have the answer. Can I configure my JVM to run as lower versions of JVM?? import java.util.Enumeration; import java.util.Vector; import com.sun.wbem.cim.CIMException; import com.sun.wbem.cim.CIMInstance; import com.sun.wbem.cim.CIMNameSpace; import com.sun.wbem.cim.CIMObjectPath; import com.sun.wbem.cim.CIMProperty; import com.sun.wbem.client.CIMClient; import com.sun.wbem.security.PasswordCredential; import com.sun.wbem.security.UserPrincipal; public class TesterOld { public static void main(String[] args) { //Creando el espacio de nombre para el IP dado y root\cimv2 String ip =3D "citorgalt.dnsalias.net";//args[0]; CIMNameSpace cns =3D new CIMNameSpace(ip, "root\\cimv2"); UserPrincipal up =3D new UserPrincipal("root"); PasswordCredential pc =3D new PasswordCredential("root"); CIMClient cc =3D null; try { //Conectando System.out.println(cns.getHost()); cc =3D new CIMClient(cns, up, pc); System.out.println("Connected to: " + cc); CIMObjectPath cop =3D new CIMObjectPath("Solaris_ComputerSystem= "); Enumeration e =3D cc.enumerateInstances(cop, false, false, true= , false, null); while (e.hasMoreElements()) { CIMInstance ci =3D (CIMInstance) e.nextElement(); System.out.println("\nProperties of: " + ci.getClassName())= ; Vector properties =3D ci.getProperties(); for (int j =3D 0; j < properties.size(); j++) { CIMProperty cimprop =3D (CIMProperty) properties.get(j)= ; //Imprimiendo propiedades System.out.println(cimprop.getName() + ": " + cimprop.getValue()); } } } catch (CIMException e) { e.printStackTrace(); try { //Cerrando la conexi=F3n cc.close(); } catch (CIMException e1) { e1.printStackTrace(); } } } } Thanks in advance, Rodolfo Campos. |
From: Choy, J. <jac...@hp...> - 2006-09-29 16:53:25
|
Although I do not work on this project anymore (what little I really did, anyways), the other problem is there might be a conflict of interest with the moderators of an open-source project also working on an equivalent commercial product. I think someone (without the conflict of interest) needs to pick up the flag and run with it. Regards, Jack -----Original Message----- From: wbe...@li... [mailto:wbe...@li...] On Behalf Of enr...@up... Sent: Friday, September 29, 2006 1:57 AM To: wbe...@li... Subject: chpoyjRe: [Wbemservices-development] status of Wbem Services I think that WBEMServices is now a commercial product of the WBEMsolutions Inc. people, as they were the original developers. But this is only my opinion.. (http://www.wbemsolutions.com/products_jwbemserver.html) -Enric --- Original Message --- > Hi Mr. Lee, >=20 > I think the wbemservices project does not have enough manpower to=20 > maintain it, although it is a good open source project. I have no idea > if it is compliant with DSP0004 V2.3 or not. But I think the JSR48 is=20 > still 1.0 and it just finished its "Public Review" stage. > (http://jcp.org/en/jsr/detail?id=3D48) >=20 > Regards, > Eric Hsu >=20 > -----Original Message----- > From: wbe...@li... > [mailto:wbe...@li...] > On Behalf Of > van...@em... > Sent: Wednesday, September 27, 2006 2:37 AM > To: wbe...@li... > Subject: [Wbemservices-development] status of Wbem Services >=20 > Can anyone tell me the current status of this project? Is it compliant > with DSP0004 V2.3 and the recently adopted JSR48 2.1 or is it at 1.0=20 > and if so are there any plans to bring it up to date with 2.1 (are the > 2.1 changes significant?). >=20 > Many Thanks, >=20 > Lee >=20 >=20 > ---------------------------------------------------------------------- > --- Take Surveys. Earn Cash. Influence the Future of IT Join=20 > SourceForge.net's Techsay panel and you'll get the chance to share=20 > your opinions on IT & business topics through brief surveys -- and=20 > earn cash=20 > = http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEV > DEV _______________________________________________ > Wbemservices-development mailing list > Wbe...@li... > https://lists.sourceforge.net/lists/listinfo/wbemservices-development >=20 >=20 > ---------------------------------------------------------------------- > --- Take Surveys. Earn Cash. Influence the Future of IT Join=20 > SourceForge.net's Techsay panel and you'll get the chance to share=20 > your opinions on IT & business topics through brief surveys -- and=20 > earn cash=20 > = http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEV > DEV _______________________________________________ > Wbemservices-development mailing list > Wbe...@li... > https://lists.sourceforge.net/lists/listinfo/wbemservices-development ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V _______________________________________________ Wbemservices-development mailing list Wbe...@li... https://lists.sourceforge.net/lists/listinfo/wbemservices-development |
From: <enr...@up...> - 2006-09-29 08:56:48
|
I think that WBEMServices is now a commercial product of the WBEMsolutions Inc. people, as they were the original developers. But this is only my opinion.. (http://www.wbemsolutions.com/products_jwbemserver.html) -Enric --- Original Message --- > Hi Mr. Lee, > > I think the wbemservices project does not have enough manpower > to maintain > it, although it is a good open source project. I have no idea > if it is > compliant with DSP0004 V2.3 or not. But I think the JSR48 is > still 1.0 and > it just finished its "Public Review" stage. > (http://jcp.org/en/jsr/detail?id=48) > > Regards, > Eric Hsu > > -----Original Message----- > From: wbe...@li... > [mailto:wbe...@li...] > On Behalf Of > van...@em... > Sent: Wednesday, September 27, 2006 2:37 AM > To: wbe...@li... > Subject: [Wbemservices-development] status of Wbem Services > > Can anyone tell me the current status of this project? Is it > compliant > with DSP0004 V2.3 and the recently adopted JSR48 2.1 or is it > at 1.0 and > if so are there any plans to bring it up to date with 2.1 (are > the 2.1 > changes significant?). > > Many Thanks, > > Lee > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance > to share your > opinions on IT & business topics through brief surveys -- and > earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Wbemservices-development mailing list > Wbe...@li... > https://lists.sourceforge.net/lists/listinfo/wbemservices-development > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance > to share your > opinions on IT & business topics through brief surveys -- and > earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Wbemservices-development mailing list > Wbe...@li... > https://lists.sourceforge.net/lists/listinfo/wbemservices-development |
From: erich <er...@su...> - 2006-09-29 08:54:03
|
Dear Damien, Thank you for the information. After searching the internet, I fond 2 articles about using SSL in Java program: 1. SECURE COMMUNICATION WITH JSSE http://java.sun.com/developer/JDCTechTips/2004/tt0817.html#1 2. SSL SERVERS http://java.sun.com/developer/JDCTechTips/2004/tt0914.html#2 I tried to make the SSL support in wbemservices project to work and finally found that the SSL support works find in wbemservices v1.0.2 if you have a certificate in the WBEM server (CIMOM). (I check the README file and it says nothing about it.) A roughly procedure to make the SSL to work: 1. Download the wbemservices v1.0.2. 2. Get a certificate. (If you do not have one, you could use keytool utility of JDK to create one. Please ref. http://java.sun.com/developer/JDCTechTips/2004/tt0914.html#2 for an example.) 3. Run the WBEM server (CIMOM) with the "javax.net.ssl.keyStore" and "javax.net.ssl.keyStorePassword" system properties. You could have it in "cimom\bin\start_cimom.bat". For example: %JAVA% %CLASSPATH% -Xmx128m -Djava.security.manager -Djavax.net.ssl.keyStore="C:\.keystore" -Djavax.net.ssl.keyStorePassword=keystorepassword -Djava.security.policy=%CIMOMBIN%\cimom.policy -DBaseDir=%WBSERHOME% -Dpropdir=%CIMOMBIN% -Dlogdir=%WBLOGDIR% %CIMOMSERVER% %WBSERFILE% 4. Run workshop and use "https://...." in the "Host URL" field as well as any "User Name" and "Passowrd" when you log in the WBEM server. Note: If you run the workshop in another computer, you also need the certificate(at least the public key) in that computer as well as the "javax.net.ssl.keyStore" and "javax.net.ssl.keyStorePassword" system properties when you run the workshop Java program. This is not the scenario we use a browser to connect to an https web site. When I use a browser to visit an https web site, the browser gets some information about the certificate and shows it in another window and asks me to confirm if I accept that certificate when the certificate is not recognized and saved in the browser. Hope next version has this mechanism. Then the client side, i.e. the workshop, does not need to keep the public key of the certificate. Regards, Eric Hsu -----Original Message----- From: wbe...@li... [mailto:wbe...@li...] On Behalf Of Keehn, Damien Sent: Thursday, September 28, 2006 11:29 PM To: wbe...@li... Subject: Re: [Wbemservices-development] Wbemservices-development Digest,Vol 4, Issue 7 Dear Eric, SSL does not work in the available source. Development on the available source has stopped as far as I can see. WBEM Solutions members (Jim Davis, Carl Chan...) claim to be working on a new updated release (2.0), but I have not heard anything is quite a while. Carl, Jim what's going on? Damien Keehn ------------------------------------------------------------------------ Today's Topics: 1. Did anyone any ever try the SSL support in wbemservices? (erich) ---------------------------------------------------------------------- Message: 1 Date: Thu, 28 Sep 2006 02:35:56 +0800 From: "erich" <er...@su...> Subject: [Wbemservices-development] Did anyone any ever try the SSL support in wbemservices? To: <wbe...@li...> Message-ID: <200...@ms...> Content-Type: text/plain; charset="us-ascii" Dear Carl, Jack and all other people, I try to enable the SSL support in wbem server (the CIMOM) in wbemservices v1.0.2 by changing the port from 5988 to 5989 of the instance of WBEMServices_CIMXMLObjectManagerClientProtocolAdapter from the workshop and restart the CIMOM. I restart the workshop and try to log in with the "https://.... <https://..../> " in the "Host Url" field in the login dialog, but get an error message after a wait of several minutes. I check the source codes of v1.0.2 as well as the latest source codes from the CVS and find that the codes for the SSL support are not complete. Then, I check the email archive and find some messages about discussion about the SSL support in wbemservices: http://sourceforge.net/mailarchive/message.php?msg_id=3628948 http://sourceforge.net/mailarchive/message.php?msg_id=9623229 Is anyone still keeping those test codes of SSL support and could give them to me? Thanks for your time and kindly help in advance. Eric Hsu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://sourceforge.net/mailarchive/forum.php?forum=wbemservices-developm ent/attachments/20060928/cd3867ae/attachment.html ------------------------------ ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDE V ------------------------------ _______________________________________________ Wbemservices-development mailing list Wbe...@li... https://lists.sourceforge.net/lists/listinfo/wbemservices-development End of Wbemservices-development Digest, Vol 4, Issue 7 ****************************************************** ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Wbemservices-development mailing list Wbe...@li... https://lists.sourceforge.net/lists/listinfo/wbemservices-development |
From: erich <er...@su...> - 2006-09-29 08:39:30
|
Hi Mr. Lee, I think the wbemservices project does not have enough manpower to maintain it, although it is a good open source project. I have no idea if it is compliant with DSP0004 V2.3 or not. But I think the JSR48 is still 1.0 and it just finished its "Public Review" stage. (http://jcp.org/en/jsr/detail?id=48) Regards, Eric Hsu -----Original Message----- From: wbe...@li... [mailto:wbe...@li...] On Behalf Of van...@em... Sent: Wednesday, September 27, 2006 2:37 AM To: wbe...@li... Subject: [Wbemservices-development] status of Wbem Services Can anyone tell me the current status of this project? Is it compliant with DSP0004 V2.3 and the recently adopted JSR48 2.1 or is it at 1.0 and if so are there any plans to bring it up to date with 2.1 (are the 2.1 changes significant?). Many Thanks, Lee ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Wbemservices-development mailing list Wbe...@li... https://lists.sourceforge.net/lists/listinfo/wbemservices-development |
From: Keehn, D. <dam...@hp...> - 2006-09-28 15:28:58
|
Dear Eric, SSL does not work in the available source. Development on the available source has stopped as far as I can see. WBEM Solutions members (Jim Davis, Carl Chan...) claim to be working on a new updated release (2.0), but I have not heard anything is quite a while. Carl, Jim what's going on?=20 Damien Keehn ------------------------------------------------------------------------ Today's Topics: 1. Did anyone any ever try the SSL support in wbemservices? (erich) ---------------------------------------------------------------------- Message: 1 Date: Thu, 28 Sep 2006 02:35:56 +0800 From: "erich" <er...@su...> Subject: [Wbemservices-development] Did anyone any ever try the SSL support in wbemservices? To: <wbe...@li...> Message-ID: <200...@ms...> Content-Type: text/plain; charset=3D"us-ascii" Dear Carl, Jack and all other people, =20 I try to enable the SSL support in wbem server (the CIMOM) in wbemservices v1.0.2 by changing the port from 5988 to 5989 of the instance of WBEMServices_CIMXMLObjectManagerClientProtocolAdapter from the workshop and restart the CIMOM. I restart the workshop and try to log in with the "https://.... <https://..../> " in the "Host Url" field in the login dialog, but get an error message after a wait of several minutes. =20 I check the source codes of v1.0.2 as well as the latest source codes from the CVS and find that the codes for the SSL support are not complete. =20 Then, I check the email archive and find some messages about discussion about the SSL support in wbemservices: http://sourceforge.net/mailarchive/message.php?msg_id=3D3628948 =20 http://sourceforge.net/mailarchive/message.php?msg_id=3D9623229 Is anyone still keeping those test codes of SSL support and could give them to me? =20 Thanks for your time and kindly help in advance. Eric Hsu -------------- next part -------------- An HTML attachment was scrubbed... URL: http://sourceforge.net/mailarchive/forum.php?forum=3Dwbemservices-develop= m ent/attachments/20060928/cd3867ae/attachment.html=20 ------------------------------ ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V ------------------------------ _______________________________________________ Wbemservices-development mailing list Wbe...@li... https://lists.sourceforge.net/lists/listinfo/wbemservices-development End of Wbemservices-development Digest, Vol 4, Issue 7 ****************************************************** |