JWSDP 1.2 and RegistryServer

I have a problem with JWSDP 1.2.
All in the Tomcat Server seem to work, but when I want to use RegistryServer, the server return an error HTTP 404.
If anyone have a solution!!!
Thanks in advance.

hi
I have also problems here the answer of registryserver:
(tcpmon)
==========================================================
HTTP/1.1 200 OK
Transfer-Encoding: chunked
Date: Thu, 14 Aug 2003 11:50:15 GMT
Server: Apache-Coyote/1.1
11f
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
<soap-env:Header/>
<soap-env:Body>
<tModelList generic="2.0" operator="Sun Microsystems Inc." xmlns="urn:uddi-org:api_v2">
<tModelInfos/>
</tModelList>
</soap-env:Body></soap-env:Envelope>
0
==========================================================
thanks

Similar Messages

  • JWSDP 1.5 and Tomcat for jwsdp

    Hi,
    I downloaded and installed both JWSDP 1.5 and Tomcat for jwsdp.
    I set the variables JWSDP_HOME,JAVA_HOME,CATALINA_HOME,ANT_HOME as usual.
    But, when I launch "catalina.sh run" I have the seguent warning....
    INFO: Processing Context configuration file URL file:/opt/tomcat50-jwsdp/conf/Catalina/localhost/xindice.xml
    10-dic-2004 17.31.48 org.apache.xindice.server.XindiceServlet init
    WARNING: NamingException: javax.naming.NameNotFoundException: Name org.xml.sax.driver is not bound in this Context
    10-dic-2004 17.31.50 org.apache.xindice.core.Database setConfig
    INFO: Database points to /opt/tomcat50-jwsdp/registry-server/Xindice/./db
    10-dic-2004 17.31.51 org.apache.xindice.server.XindiceServlet init
    INFO: Database successfully started
    Does anybody tell me why?
    Thanks, Tony

    Tony:
    I'm seeing the same issue on my system.
    Redhat 9.0
    JDK 1.5.0_01
    JWSDP 1.5
    TOMCAT 5 for JWSDP
    Did a complete system wipe and reinstall and have the same issues.
    Did you get any responses, or discover a solution?
    TIA,
    drjohn

  • JWSDP 1.2 and dynamic proxies

    I am running the jaxrpc/HelloWorld example in the
    JWSDP 1.2 and I generated the client with static stubs
    and the web service works fine.
    Then I wanted to create a client that uses the same
    web service but in this time with a dynamic proxy that
    utilizes the WSDL-file. In order to do so, I had to
    modify the deployed war-file a little so that I have a URL reference
    http://127.0.0.1:80/jaxrpc-HelloWorld/HelloWorldService.wsdl
    to the HelloWorldService.wsdl file.
    My dynamic proxy client looks like that:
    package hello;
    import java.net.URL;
    import javax.xml.rpc.Service;
    import javax.xml.rpc.JAXRPCException;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.ServiceFactory;
    public class HelloClient {
    public static void main(String[] args) {
    try {
    String wsdlString ="http://127.0.0.1:8080/jaxrpc-HelloWorld/HelloWorldService.wsdl";
    String nameSpaceUri = "http://hello.org/wsdl";
    String serviceName = "HelloWorld";
    String portName = "HelloIFPort";
    URL helloWsdlUrl = new URL(wsdlString);
    ServiceFactory serviceFactory = ServiceFactory.newInstance();
    QName qName = new QName(nameSpaceUri, serviceName);
    Service helloService = serviceFactory.createService(helloWsdlUrl, qName);
    HelloIF myProxy = (HelloIF) helloService.getPort(
    new QName(nameSpaceUri, portName),
    HelloIF.class);
    System.out.println(myProxy.sayHelloBack("Buzz"));
    } catch (Exception ex) {
    ex.printStackTrace();
    And I included the server side HelloIF.class file with this HelloClient file.
    The compilation was successful (ant compile-client)
    but when I try to run this (ant run-client)
    I get this following error log:
    run-client:
    [java] could not find service: {http://hello.org/wsdl}HelloWorld
    in the specified WSDL file. The service names found were: {http://hello.org/wsdl}HelloWorldService
    [java] at com.sun.xml.rpc.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:110)
    [java] at com.sun.xml.rpc.client.dii.ConfiguredService.<init>(ConfiguredService.java:58)
    [java] at com.sun.xml.rpc.client.dii.ConfiguredService.<init>(ConfiguredService.java:47)
    [java] at com.sun.xml.rpc.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:38)
    [java] at hello.HelloClient.main(HelloClient.java:18)
    BUILD SUCCESSFUL
    Total time: 7 seconds
    What am I doing wrong? Is it the WSDL URL http://hello.org/wsdl
    that does not exist? If yes, what is the correct name space URI?
    Thanks in advance.
    [email protected]

    namespaceuri should be the same as the urn in the wsdl file.

  • JWSDP 2.0 and SAAJ SOAP - envelope error

    I've integrated JWSDP 2.0 SAAJ security into a J2EE servlet that sends and receives SAAJ SOAP. I have tested and verified all sample security configurations except encryptv1.xml and encryptv2.xml. My issues is that although I am able to encrypt messages within the servlet, I am unable to decrypt. I have a java client running on the command line that interacts with the servlet and it is able to encrypt and decrypt (actually decrypts the encrypted error response raised by the servlet). I am also able to get the client to interact (encrypt/decrypt) successfully with a simpler servlet on standalone tomcat. I am using jboss 4.0.3RC2 and jboss 4.0.4GA both with tomcat55 and java 5. The error I receive is as follows:
    [STDOUT] ERROR: 'NOT_FOUND_ERR: An attempt is made to reference a node in a context where it does not exist.'
    [STDOUT] Jun 5, 2006 12:16:13 PM com.sun.xml.messaging.saaj.soap.EnvelopeFactory createEnvelope
    SEVERE: SAAJ0511: Unable to create envelope from given source
    [STDOUT] Jun 5, 2006 12:16:13 PM com.sun.xml.wss.impl.SecurableSoapMessage findSoapHeader
    SEVERE: WSS0369: Error getting SOAPHeader from SOAPEnvelope due to Unable to create envelope from given source:
    [STDOUT] com.sun.xml.wss.XWSSecurityException: com.sun.xml.wss.XWSSecurityException: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to create envelope from given source:
    [STDOUT]      at com.sun.xml.wss.impl.misc.XWSSProcessor2_0Impl.verifyInboundMessage(XWSSProcessor2_0Impl.java:115)
    Any help will be greatly appreciated...

    I figured it out! I needed to remove the Timestamp in the server config file.
    Thanks

  • Help install jwsdp 1.0 and run JAX-RPC  example

    I installed jwsdp1.0 today and I tried to run the Hello world example for JAX-RPC (http://java.sun.com/webservices/docs/1.0/tutorial/doc/JAXRPC3.html).
    The problem is with any command passed at the console (ant command or startup (tomcat), deploytool, etc) I always get the following message : Exception in thread "main" java.lang.NoClassDefFoundError: Files/Microsoft.
    The operating system in win XP and jre is 1.4.0.
    The variables I used are JAVA_HOME (D:\Java\j2sdk1.4.0)
    and JWSPD_HOME (d:\java\jwsdp-1_0). Both bin folder are setup on the path variable (%JAVA_HOME%\bin;%JWSPD_HOME%\bin).
    Help will be very much appreciated

    Maybe this is just a typo in your post, but the variable name should be JWSDP_HOME, not JWSPD_HOME.
    Mike

  • Jwsdp 1.1 and endorsed mechanism

    Am using j2sdk 1.4.1_01. As the jwsdp tutorial suggested, in order to use the new jaxp classes, I placed the jars in a new \\jre\lib\endorsed directory in the j2sdk and also set the endorsed directories system variable to point to them. When running the xml example from the jwsdp-1.1\docs\tutorial\doc\JAXPSAX6.html file, I'm still getting the crimson parser and not the xerces parser that the tutorial says should be operating. Can anyone tell me why? Or what I must do to get the right parser? I tried running the command on the command line (Windows 2000) and in an UltraEdit DOS command but I get the same results with both - no Xerces parser.
    Thanks.
    Madeleine

    Just to say this works if you put the jars in the classpath. Is this the only way?
    Mad

  • Jwsdp 1.3 and weblogic 8.1

    I am using JWSDP 1.3 with WLS 8.1. I have generated client classes using WSDL and JAX-RPC in JWSDP 1.3.
    When I am using these client classes with WLS 8.1, I get errors.
    There may be a conflict between WLS jars and JWSDP jars.
    Please let me know if someone has worked on similar issue.
    Thanks for you help.
    BG

    How do you use JWSDP with WLS ? Is this a supported config ?
    /s
    Badal Garg wrote:
    I am using JWSDP 1.3 with WLS 8.1. I have generated client classes using WSDL and JAX-RPC in JWSDP 1.3.
    When I am using these client classes with WLS 8.1, I get errors.
    There may be a conflict between WLS jars and JWSDP jars.
    Please let me know if someone has worked on similar issue.
    Thanks for you help.
    BG

  • Tomcat50-jwsdp Security Manager and RMI

    I need to know how to configure the Tomcat 5.0 security manager to run RMI applications.
    I'm building a jax-rpc application that uses RMI to access a back-end process.
    I cannot run RMI because no security manager is running:
    java.rmi.RemoteException: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: wxservice.remote.WebService$Listener (no security manager: RMI class loader disabled); nested exception is:
         java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
         java.lang.ClassNotFoundException: wxservice.remote.WebService$Listener (no security manager: RMI class loader disabled)However, when I try to enable security using the command
    C:\tomcat50-jwsdp\bin\catalina.bat run -securityI get the following exception:
    java.security.AccessControlException: access denied (java.util.PropertyPermission org.apache.commons.launcher.waitForChild read)
            at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
            at java.security.AccessController.checkPermission(AccessController.java:427)
            at java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
            at java.lang.SecurityManager.checkPropertyAccess(SecurityManager.java:1285)
            at java.lang.System.getProperty(System.java:627)
            at org.apache.commons.launcher.ChildMain.run(ChildMain.java:199)Any help would be sincerely appreciated.

    First of all, you don't have to use RMISecurityManager as the security manager at all. It's a legacy class from Java 1.1. times that the RMI tutorials continue to refer to, see this thread:
    http://forum.java.sun.com/thread.jsp?forum=58&thread=161874
    Secondly, it is tricky but Java 2 allows a security manager to be set more than once -- it all depends on whether the currently installed manager allows to be replaced [RuntimePermission("setSecurityManager") permission].
    Finally, if you expect that the user will define a security policy through command line, all you have to do is code something like this:
    if (System.getSecurityManager() == null)
       System.setSecurityManager(your_security_manager);to set yours only when nothing was set on the command line.
    Vlad.

  • JWSDP 1.5 client and WSE 2.0 Web Service

    Hello all
    This post is mostly about .Net and WSE 2.0 but here goes:
    I�m securing a web service using WSE 2.0. One of the potential client�s of the web service is a Java client using Sun JWSDP 1.5. The problem is that the java client gets the error �Server did not recognize the value of HTTP Header SOAPAction:�, and when I look at the trace the error is:
    WSE841: An error occured processing an outgoing fault response. ---> System.Web.Services.Protocols.SoapHeaderException: Header http://schemas.xmlsoap.org/ws/2004/08/addressing:Action for ultimate recipient is required but not present in the message.
    The soap the java client is sending has no Action header and I�m told it can not be changed. Therefore I have been trying to tell my service that actionheader is not required but without success.
    This is a actionheader the webservice accepts:
    <wsa:Action wsu:Id="Id-29db7046-313a-4675-9bf8-6446b9463aeb">http://tempuri.org/send</wsa:Action>
    What I have tried is to change the policy file
    This is the default:
    <!--MessagePredicate is used to require headers. This assertion should be used along with the Integrity assertion when the presence of the signed element is required. NOTE: this assertion does not do anything for enforcement (send-side) policy.-->
    <wsp:MessagePredicate wsp:Usage="wsp:Required" Dialect="http://schemas.xmlsoap.org/2002/12/wsse#part">wsp:Body() wsp:Header(wsa:To) wsp:Header(wsa:Action) wsp:Header(wsa:MessageID) wse:Timestamp()</wsp:MessagePredicate>
    Here I tried to tell the service that only body and timestamp was required
    <wsp:MessagePredicate wsp:Usage="wsp:Required" Dialect="http://schemas.xmlsoap.org/2002/12/wsse#part">wsp:Body() wse:Timestamp()</wsp:MessagePredicate>
    I have also tried to tell the web service everything was optional:
    <wsp:MessagePredicate wsp:Usage="wsp:Optional" Dialect="http://schemas.xmlsoap.org/2002/12/wsse#part">wsp:Body() wsp:Header(wsa:To) wsp:Header(wsa:Action) wsp:Header(wsa:MessageID) wse:Timestamp()</wsp:MessagePredicate>
    I have also tried to skip the policy file and check on the the bodyparts in code but the error occurs before the webmethod is even invoked.
    It is my understanding that WS-specifications are optional and that the way to define which ones I want to use is via a policy file. Is that the correct understanding? I find it difficult to find good documentation on how to use different WS-specifications with WSE 2.0 enabled web service. Does anyone know of good documentation on WS-security using X509 certificates for signing?
    Does anyone have solution to this problem or ideas that might lead to solution?
    P.s. I have looked at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/wssinteropjwsdp15.asp but I need an example where a java client is talking to a .Net WS. It would be very helpful
    Regards,
    - Bjarki B.

    Hi,
    firstly JWSDP 1.5 is pretty old, the latest release of JWSDP is JWSDP 2.0 that happened late last year.
    The problem is most likely happening due to a bug in JWSDP 1.5. If you dump the Message that is going over the wire you will probably see
    SOAPAction : ""
    SOAPAction : "<the correct action value>"
    And this is the reason for the failure. I believe you are using SOAP 1.1 messages right ?
    What you will need to do is upgrade to
    JWSDP 2.0 and more important also upgrade your SAAJ jars in the JWSDP installation to SAAJ 1.3
    https://saaj.dev.java.net/files/documents/52/32730/saaj1.3.zip
    Alternatively, you can use Sun's Project Tango (Sun's Next Generation WebServices Interoperability Technology Offering) which has been tested to interoperate with Microsoft WCF.
    http://java.sun.com/developer/technicalArticles/glassfish/ProjectTango/
    You can download Project Tango by visiting the following page :
    https://wsit.dev.java.net/
    Look at the Try It section for instructions on how to use it.
    Using the Netbeans Plugin you can develop a java client which can securely communicate with the .Net WebService. All you need to do for that is use Netbeans to create a Java WebService Client by pointing it to the WSDL of the .Net Service.
    Let us know if this helped.
    Thanks...
    Message was edited by:
    kumar_at_sun

  • JWSDP and catalina.bat

    I recently installed JWSDP 1.1 and can not run the startup.bat script in the bin folder, which launches the bundled version of tomcat. Since the catalina.bat script is also run, i looked at it. Here is the last line
    echo hey, i made it here
    "%JAVA_HOME%\bin\java.exe " -classpath "%JWSDP_HOME%\bin";"%JWSDP_HOME%\jwsdp-shared\bin\commons-launcher.jar";"%JWSDP_HOME%\jakarta-ant-1.5.1\lib\optional.jar";"%JWSDP_HOME%\jaxp-1.2.2\lib\jaxp-api.jar" LauncherBootstrap jwsdp -DJAVA_HOME="%JAVA_HOME%" -DCATALINA_OPTS="%CATALINA_OPTS%" %CMD_LINE_ARGS%
    when i run startup, i get the following error:
    java.io.FileNotFoundException: commons-launcher.jar
    at LauncherBootstrap.main(LauncherBootstrap.java:143)
    help ???!!!!????

    Exception in thread "main" java.lang.NoClassDefFoundError: start

  • JAX RPC extension: Problem with document/literal and MyType[]

    Hi,
    I have installed the JAX RPC extension and want to generate a stub from my WSDL file. The WSDL describes a document/literal binding.
    Problem:
    A webservice server method like:
    public wineshop.model.common.SimpleProducer[] getSimpleProducerList() throws RemoteException;
    is translated into a stub method like:
    public UnknownType getSimpleProducerList() throws Exception {..}
    Is an array of own types with the binding style "document/literal" not supported in JAX RPC 1.4 or is it just a bug?
    The WSDL file is generated by JAX RPC 1.4.
    I have installed JWSDP-1.5 and generated a stub with wscompile from the WSDL file. The generated stub has the correct method return type:
    public wineshop.ws.client.SimpleProducer[] getSimpleProducerList()
    throws java.rmi.RemoteException
    It there a workaround like replacing some JDev JARs with JWSDP-1.5 to solve the problem?
    Any hints are welcome.
    Thanks Markus

    repost.....

  • JAX-RPC and non-primitive data types

    Hello all!
    I am using JWSDP v1.3 and i have a problem using non-primitive data types as return types for my operations.
    Consider the helloservice example of the JWSDP1.3 tutorial. Now suppose that instead of having the simple operation sayHello() that returns a String, we execute a query on a database, get some ResultSetMetaData and we want these Metadata to be the return type of our operation. I.e. have the operation
    public ResultSetMetaData sayHello()
    instead of the
    public String sayHello()
    of the tutorial.
    When trying to build the service i get the following error which is normal, because ResultSetMetaData is not a supported JAX-RPC type.
    run-wscompile: [echo] Running wscompile: [echo] C:\jwsdp\apache-ant\../jaxrpc/bin/wscompile.bat -define -d build - nd build -classpath build config-interface.xml -model build/model. gz [exec] error: invalid type for JAX-RPC structure: java.sql.ResultSetMetaData [exec] Result: 1
    Is there any way to define an operation like this? Can i specify somehow ResultSetMetaData as a supported-type?
    I hope someone can give me some advice on it, because i have lost one evening trying to figure it out myself :)
    Regards,
    Kostas

    Courtesy links to crossposts so people don't waste their time answering a question which has already been answered
    http://forum.java.sun.com/thread.jsp?thread=482875&forum=59&message=2253704
    http://forum.java.sun.com/thread.jsp?thread=482873&forum=331&message=2253699

  • JAX-RPC and Tomcat standalone: ClassNotFound

    Hi.
    I have just made a hello world web service and tested it in jwsdp-tomcat.
    Now i want to deploy the ws to a standalone Tomcat4.1, so I copyed the deplouable war-file to webapps and restarted tomcat.
    In the log I get the ClassNotFoundException shown below.
    Any suggestions or advice would be greatly appreciated.
    Henrik
    ### From the localhost_log:
    2002-09-19 07:27:54 WebappLoader[webservices]: Deploying class repositories to work directory C:\Tomcat4.1\work\Standalone\localhost\webservices
    2002-09-19 07:27:55 WebappLoader[webservices]: Deploy class files /WEB-INF/classes to C:\Tomcat4.1\work\Standalone\localhost\webservices\WEB-INF\classes
    2002-09-19 07:27:55 StandardManager[webservices]: Seeding random number generator class java.security.SecureRandom
    2002-09-19 07:27:55 StandardManager[webservices]: Seeding of random number generator has been completed
    2002-09-19 07:27:55 StandardContext[webservices]: Error configuring application listener of class com.sun.xml.rpc.server.http.JAXRPCContextListener
    java.lang.ClassNotFoundException: com.sun.xml.rpc.server.http.JAXRPCContextListener

    I'm using the jwsdp-1.3 and a tomcat (5.0.12) server running on a seperate linux box. Typically, when I tried to install the helloService on it it didn't work (seems to be fairly typical with this stuff, nothing works out of the box!!!), I tried to copy the jar files as above but some didn't exist so in desperation I did a search of my jwsdp-1.3 install directory and copied ALL the jars to the [CATALINA_HOME]\common\lib directory.
    Don't know which file made it work but for some reason it did....
    BJL

  • JWSDP 2.0 JAX-RPC example problem Fast Infoset

    Hi,
    I installed JWSDP 2.0 and and Tomcat 5.0 for JWSDP. The server runs fine and the example HelloWorld is accessible (I can see the WSDL file in my browser: http://localhost:8080/jaxrpc-HelloWorld/hello?WSDL).
    The Problem is that I can not run the client: I tried "ant run-client". The error occurs while trying to create a stub in the file "HelloClient.java" with the following line of code:
    stub = (HelloIF_Stub) (helloWorldService.getHelloIFPort());
    This is the error I get:
    [java] Exception in thread "main" java.lang.NoClassDefFoundError: org/jvnet/fastinfoset/FastInfosetSource
    [java] at hello.HelloWorldService_Impl.getHelloIFPort(HelloWorldService_Impl.java:59)
    [java] at hello.HelloClient.setUp(HelloClient.java:68)
    [java] at hello.HelloClient.main(HelloClient.java:45)
    [java] Java Result: 1
    I am not sure about the structure of the application, so I don't know where to look for the "FastInfosetSurce" file.
    Thanks for any help.
    Best regards.

    Hi,
    I reselved the problem by just copying the FastInfoset to the jaxrpc\lib directory (I am sure this should work in a different way).
    Well, the next problem I am getting is that the "XMLStreamWriter" class cannot be found. This class is contained in jsr173_api.jar.
    I guess my main question is the following:
    Which projects are necessary to get this simple helloWorld example to work?
    I did set the JWSDP_HOME varible. Is there another setting I have to make to have all necessary jar-files available and to be able to run the samples?
    Could anybody point me to a tutorial that does not only show a few lines of code (as the HelloWorld sample in the JWSDP-Tutorial) but that would instead lead me through a step-by-step sample application that I write by myself and actually runs at the end? The example in the JWSDP-Tutorial uses all kinds of existing config files which are not explained.
    Thanks for your help.

  • Xletview , java tv,  webservices and jaxm.properties..

    Hi.
    I am running C:\jwsdp-1.2 and C:\j2sdk1.4.2_05 .. I am doing a test
    on JavaTv using XletView. It failed when I run it in the XletView emulator. Where can i obtain the jaxm.properties..
    xjava.io.File - C:\j2sdk1.4.2_05\jre\lib\jaxm.properties
    java.lang.NullPointerException
    at com.sun.xml.rpc.soap.message.SOAPMessageContext.createMessage(SOAPMes
    sageContext.java:114)
    at com.sun.xml.rpc.client.StreamingSenderState.<init>(StreamingSenderSta
    te.java:32)
    at com.sun.xml.rpc.client.StreamingSender._start(StreamingSender.java:48
    at com.francetelecom.rd.orion.webservice.OrionWebServicePortType_Stub.ge
    tArrayOfMembers(OrionWebServicePortType_Stub.java:1620)
    at com.francetelecom.rd.orion.webservice.OrionWebServicePortTypeClient.g
    etArrayOfMembers(OrionWebServicePortTypeClient.java:72)
    at com.francetelecom.rd.orion.controller.Welcome.setUp(Welcome.java:79)
    at com.francetelecom.rd.orion.xlet.OrionXlet.initXlet(OrionXlet.java:58)
    at net.beiker.xletview.xlet.XletManager.initXlet(Unknown Source)
    at net.beiker.xletview.xlet.XletManager.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:534)

    My question is where is this file .. I can't see it anywhere.. I am using C:\jwsdp-1.2

Maybe you are looking for

  • WRT54GS LOCK-UPS

    I currently own a version 6 wrt54G and version 5 wrt54gs and can only eliminate intermittent lock-ups on both routers by downgrading to the earlier version of firmware that shipped with these routers. 1.50.8 version of the firmware for both hardware

  • Issue w/Witcher 3 Pre-Order $10 Certificates, Store Pickup and Steelbook

    I picked up my order yesterday for In-Store Pickup & had a couple of issues. First, when I was picking up my order, the associate helping me tried to pick up the two large boxes at the same time & I watched as they slipped from his grip & he dropped

  • PLEASE help me.  I'm new...

    I just purchased my first iMac a few days ago. I was installing an app called My Living Desktop but it seems like something didn't go right. Now I have an image stuck as my wallpaper and I can not get it off. It does allow me to change it to another

  • Collection Manager Red Hat VMware

    Hello, My client is asking if the Red Hat Server that Collection Manager  is installed for the SCE platform supports VMware. I have read the installation guide of the collection manager but does not state anything. Is it ok to install in VMware?

  • I need help with creating some formulas

    I'm not sure if anyone around here can help me, but I'm trying to create a Numbers document and need some help with creating a formula/function. I have a column of amounts and I would like to create a formula which deducts a percentage (11.9%) and pu