Unchecking Check WS-I compliance - get web service hangs

After pressing "Get WebService Information" when adding a Web Service the IDE hangs if the Check WS-I Basic Profile 1.0 compliance checkbox is unchecked.
Using the same WSDL file with the checkbox checked the Web Services are displayed (but with warningin results box - Warning:unsupported XML Schema feature: "xsd:choice" in component null, mapping it to javax.xml.soap.SOAPElement)

The W/S consumption in Creator is based on JAX-RPC standard.
http://java.sun.com/webservices/jaxrpc/index.jsp
If the WSDL has constructs not supported by JAX-RPC, it may cause problem. If the WSDL is WS-I compliant then JAX-RPC will handle it properly. So it is better to check and make sure the WSDL is WS-I compliant so JAX-RPC can handle it properly.
- Winston
http://blogs.sun.com/roller/page/winston?catname=Creator

Similar Messages

  • How to check resource existance using standard web-services?

    Hi,
    There was the web-service KMNodeServiceStrdWSVi_Document in the SAP EP 7.0 that exposed the function "exists" checking whether the folder exists or not.
    SAP EP 7.3 does not contain KMNodeServiceStrdWSVi_Document web-service and I did not find any function in the  RepositoryFramework web-service.
    Is there any other web-service providing this functionality?
    Thanks in advance.

    Hi Arun,
    I got the data in the context in the response node .But the problem is that the web service returns an array of objects which inturns has array ob object, I m only able to get those values from the response node from the context which are simple string type.Could u pls tell me how can i get the complex data which is present in the response node in the context.
    Can i traverse the node(i.e) the rray in the context.CAn u tell me wat can i do.The response node has the complex structure as defined in the WSDL file ,i just need to get the data present in the array of that context which is populated by the web service.

  • Using to get Web Services in Widgets

    Hi,
    I wanted to use web services in widgets.
    How can we make publicly available Web Services to be available in the widgets.
    and once we get those web services, how to consume those web services in Eclipse IDE.
    Can anybody provide the information regarding this.
    Thanks in advance,
    Regards,
    Sumangala.

    hi,
    i have found a yahoo widget ..which can consume public webservice..
    check out this link : http://widgets.yahoo.com/widgets/webservice-tester
    download this widget an try..
    Also extract the source files of the widget Using the widget Converter Tool...
    thanks
    jaideep

  • How to check error type in accessing web service?

    Dear all,
    I have created a form using WSDL connection to access web service in SOAP protocol.
    But I have difficulties in error handling when acccessing web service.
    I try to put a try catch block for the following statement :
    ie. xfa.connectionSet.WebServiceDC.execute(false);
    in case for any error, I can only catch message saying GeneralFault only.
    Is there any extra object in the script that I can catch to handle for different error type?
    e.g checking SOAP.? and where should I put the codes in?
    Actualy I want to detect if network connection is not ok or if it fails to find ecert which is required under https connection
    Rgds.

    Have you tried the try catch block ?
    See the error codes it responds with.
    Then look through the properties of the Exception
    try
        doInit();
    } catch(err)
        var vDebug = "";
        for (var prop in err)
           vDebug += "property: "+ prop+ " value: ["+ err[prop]+ "]\n";
        vDebug += "toString(): " + " value: [" + err.toString() + "]";
        status.rawValue = vDebug;
    function doInit()
        doWebServiceCallThatFails();
    Have fun with these articles
    http://blogs.adobe.com/formfeed/2009/06/collected_form_development_and.html
    http://blogs.adobe.com/formfeed/2009/03/handling_javascript_exceptions.html

  • Cannot get web service using 2-way SSL to work

    WebLogic 8.1 sp4, using jdk 1.4.2_05 within BEA install dir (not JRockit). Also using WLWorkshop.
    I'm trying to call a web service provided by a third-party requiring 2-way SSL; The third-party provided a server cert to trust and a key/cert to use from our client. After updating my key and trust stores, I'm able to run this with no problem from another web service test product (CapeClear).
    How does one do this from WLS? I did the following (nothing has worked):
    - Started my WLS server; using the console, updated the Configuration|Keystores & SSL section and restarted - the console output indicates that all loaded correctly. I also changed the option on Two Way Client Cert Behavior to 'Client Certs Requested and Enforced'.
    - Updated my setDomainEnv.cmd to include the following options -Dweblogic.security.SSL.ignoreHostnameVerify=true -Dweblogic.security.SSL.enforceConstraints=off; I also added the -Dssl.debug=true -Dweblogic.StdoutDebugEnabled=true options.
    - Within Workshop, created my web service control from the provided WSDL and generated a test JPF; when I run the test, I get an exception related to an invalid content type (text\html). This occurs because the client-side SSL piece did not take place and the client was presented with a login-page rather than a web-service XML result.
    - I updated the JDK security jars with domestic strength algorithms; no change in behavior.
    - No SSL errors in the debug trace (I can provide log upon request).
    What other parameter and/or setting do I need to update to get this to work?
    Any help would be tremendously appreciated.
    Thanks,
    Rick

    I too am struggling with SSL but I was given some help by BEA. This does not help me since It seems like the proxy jar I download from the WS Home Page wants to go directly to the JPD not the jws. This example of two way SSL should work for you. I am including the Main class but not the generated files it refers to. I don't know how to attach files to the news groups. The key thing it to make use of the adapters. The Impl and Port are part of the downloaded proxy.
    public static void main(String[] args) throws Exception {
    // set weblogic ServiceFactory
    System.setProperty("javax.xml.rpc.ServiceFactory", "weblogic.webservice.core.rpc.ServiceFactoryImpl");
    // set weblogic client protocol handler
    System.setProperty("java.protocol.handler.pkgs", "weblogic.webservice.client");
    // set the SSL adapter
    SSLAdapterFactory adapterFactory = SSLAdapterFactory.getDefaultFactory();
    WLSSLAdapter adapter = (WLSSLAdapter) adapterFactory.getSSLAdapter();
    // two-way SSL you must loadLocalIdentity to provide certs back to the server
    FileInputStream clientCredentialFile = new FileInputStream ("./client/clientcred.pem");
    String pwd = "canpass";
    adapter.loadLocalIdentity(clientCredentialFile, pwd.toCharArray());
    adapter.setVerbose(true);
    adapter.setTrustedCertificatesFile("./config/ca1024.pem");
    adapter.setStrictChecking(false);
    adapterFactory.setDefaultAdapter(adapter);
    adapterFactory.setUseDefaultAdapter(true);
    String a = null;
    if (args.length < 1) {
    a = "Sample String";
    } else {
    a = args[0];
    ToUpper_Impl lookup = new ToUpper_Impl();
    ToUpperPort value = lookup.gettoUpperPort();
    String result = value.toUpper(a);
    System.out.println(result);
    }

  • Can't get web service to work

    I'm getting the following error when trying to invoke an
    ASP.NET web service on the same host...
    TypeError: Error #1034: Type Coercion failed: cannot convert
    Function-2010 to Namespace.
    at mx.rpc.wsdl::WSDL/::processNamespaces()
    at mx.rpc.wsdl::WSDL$iinit()
    at
    mx.rpc.wsdl::WSDLLoader/mx.rpc.wsdl:WSDLLoader::resultHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
    at mx.rpc::AbstractInvoker/
    http://www.adobe.com/2006/flex/mx/internal::resultHandler()
    at mx.rpc::Responder/result()
    at mx.rpc::AsyncRequest/acknowledge()
    at ::DirectHTTPMessageResponder/completeHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at flash.net::URLLoader/flash.net:URLLoader::onComplete()
    I'm using
    http://localhost/Hello/Service1.asmx?WSDL
    as the wsdl and it works when I navigate to it with the browser.
    Any help would be very appreciated.
    Thanks

    Sorry for the late response, I wasn't able to access the
    forums for awhile there.
    I'm using .NET 2.0
    Yes I have tried a hello world example. I have a very basic
    ASP webservice:
    using System;
    using System.Data;
    using System.Web;
    using System.Collections;
    using System.Web.Services;
    using System.Web.Services.Protocols;
    using System.ComponentModel;
    namespace Hello
    /// <summary>
    /// Summary description for Service1
    /// </summary>
    [WebServiceBinding( ConformsTo = WsiProfiles.BasicProfile1_1
    [ToolboxItem( false )]
    public class Service1 : System.Web.Services.WebService
    [WebMethod]
    public string UpdateResponses()
    return "Hello World";
    My flex code is this:
    private function doWebService():void
    var service:WebService = new WebService();
    service.loadWSDL("
    http://localhost/Hello/Service1.asmx?WSDL");
    service.addEventListener(ResultEvent.RESULT, success);
    service.addEventListener(FaultEvent.FAULT, fault);
    service.UpdateResponses();
    This works for me, however as soon as I take the flex code
    into my real project, I can't access the same ASP webservice.
    Here is the WSDL
    <?xml version="1.0" encoding="utf-8" ?>
    - <wsdl:definitions xmlns:soap="
    http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tm="
    http://microsoft.com/wsdl/mime/textMatching/"
    xmlns:soapenc="
    http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:mime="
    http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:tns="
    http://tempuri.org/" xmlns:s="
    http://www.w3.org/2001/XMLSchema"
    xmlns:soap12="
    http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:http="
    http://schemas.xmlsoap.org/wsdl/http/"
    targetNamespace="
    http://tempuri.org/" xmlns:wsdl="
    http://schemas.xmlsoap.org/wsdl/">
    - <wsdl:types>
    - <s:schema elementFormDefault="qualified"
    targetNamespace="
    http://tempuri.org/">
    - <s:element name="UpdateResponses">
    <s:complexType />
    </s:element>
    - <s:element name="UpdateResponsesResponse">
    - <s:complexType>
    - <s:sequence>
    <s:element minOccurs="0" maxOccurs="1"
    name="UpdateResponsesResult" type="s:string" />
    </s:sequence>
    </s:complexType>
    </s:element>
    </s:schema>
    </wsdl:types>
    - <wsdl:message name="UpdateResponsesSoapIn">
    <wsdl:part name="parameters"
    element="tns:UpdateResponses" />
    </wsdl:message>
    - <wsdl:message name="UpdateResponsesSoapOut">
    <wsdl:part name="parameters"
    element="tns:UpdateResponsesResponse" />
    </wsdl:message>
    - <wsdl:portType name="Service1Soap">
    - <wsdl:operation name="UpdateResponses">
    <wsdl:input message="tns:UpdateResponsesSoapIn" />
    <wsdl:output message="tns:UpdateResponsesSoapOut" />
    </wsdl:operation>
    </wsdl:portType>
    - <wsdl:binding name="Service1Soap"
    type="tns:Service1Soap">
    <soap:binding transport="
    http://schemas.xmlsoap.org/soap/http"
    />
    - <wsdl:operation name="UpdateResponses">
    <soap:operation soapAction="
    http://tempuri.org/UpdateResponses"
    style="document" />
    - <wsdl:input>
    <soap:body use="literal" />
    </wsdl:input>
    - <wsdl:output>
    <soap:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    - <wsdl:binding name="Service1Soap12"
    type="tns:Service1Soap">
    <soap12:binding transport="
    http://schemas.xmlsoap.org/soap/http"
    />
    - <wsdl:operation name="UpdateResponses">
    <soap12:operation soapAction="
    http://tempuri.org/UpdateResponses"
    style="document" />
    - <wsdl:input>
    <soap12:body use="literal" />
    </wsdl:input>
    - <wsdl:output>
    <soap12:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    - <wsdl:service name="Service1">
    - <wsdl:port name="Service1Soap"
    binding="tns:Service1Soap">
    <soap:address location="
    http://localhost/Hello/Service1.asmx"
    />
    </wsdl:port>
    - <wsdl:port name="Service1Soap12"
    binding="tns:Service1Soap12">
    <soap12:address location="
    http://localhost/Hello/Service1.asmx"
    />
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>

  • Question about get web service result in actionscript and convert data format

    Hi, All
    I have question about how to get dataset from web services
    and put it in tree structure. I have 2 questions about this:
    1, How can I get data correctly in actionscript?
    I have no problem to get data by
    <mx:ArrayCollection id="acFolder"
    source="{mx.utils.ArrayUtil.toArray(MyGServices.getFolder.lastResult)}"
    />
    And display in datagrid.
    But when I try to use
    public function
    handleFolderContents(event:mx.rpc.events.ResultEvent):void{
    arData=mx.utils.ArrayUtil.toArray(event.result);
    acData=new ArrayCollection(arData);
    input.text=acData.getItemAt(0).id;
    Seems I can’t get data, it always say:
    TypeError: Error #1009: Cannot access a property or method of
    a null object reference.
    2, how to convert data format
    I get data from web service and want to convert it to tree
    structure, as mention below:
    I get:
    <Array>
    <id>111</id>
    <Name>Production1</Name>
    </Array>
    <Array>
    <id>222</id>
    <Name>Production2</Name>
    </Array>
    Convert to:
    <mx:XMLList id="treeData">
    <node>
    <node label="Production1" data="111">
    <node label="Production2" data="222"/>
    </node>
    </node>
    </mx:XMLList>
    Please help me.
    Thanks.

    First, don't specify the package path in the argument
    declaration. Instead import the event object:
    import mx.rpc.events.ResultEvent;
    The docs state this emphatically.
    Second, try "lastResult", in place of "result":
    arData=mx.utils.ArrayUtil.toArray(event.lastResult); // I am
    not positive about this. I maybe recall reading that result was ok
    for the event object, but maybe not.
    Finally, why do you want to convert the xml? You certainly
    could, but it would be a manual process, recursively reading the
    existing xml nodes and building the new structure, but again, why?
    Just use a labelFunction if necessary to display the nodes as
    you wish.
    Tracy

  • Check SAP CRM System status - Web service

    is there a way to check a SAP CRM system status - is it available? just simple check to see it SAP CRM system is up and running? Is web service available?
    Jawahar

    Hello
    This u can check in SICF transaction.
    Also u can check in CCMS monitoring

  • Getting web service results from double click event

    I have an Elixir ILOG Org Chart and I want to add nodes dynamically when a user clicks on the node.  When the click event fires, Can I assign the results of the webservice result to the node as children of that node; similar to what someone would do when calling a function in another language like Java or C#.  For instance I have a method that handles the double click or single click of a user on a node in my Org Chart:
    private function doubleClickHandler(event:OrgChartEvent):void{
         event.item.appendChild(getResults(_id, _idSecond, "") );
    private function webServicehandler_Result(event:ResultEvent):XML{
         return event.result;
    getResults(x,y,z) is the function that calls the web service and returns XML results of all the employees/people that are underneith the object that was double clicked on.  Will this work?

    Use the change event.

  • Web service hangs without any errors and exceptions

    hi all,
    We have a ejb application web service that is binded with shedular bc to trigger for every 2 hours
    and it runs for one and half hours making continous transactions with database..
    In the web service a outer for loop will be iterated by fetching list of data from database. And this list will be iterated in the inner for loop.
    This logic works fine for sometime, but suddenly after some random period of time without any errors and exceptions the outer for loop gets no list from database
    and the inner for loop is never executed and the web service completes processing.
    This i can able to see form my log files.
    i dont understand why the list is not fetched from the database, is the problem with hibernate or it lost the connection with database,
    either case it has to throw exception but the service is not.
    otherwise does this is garbage collector issue.
    Thanks in advance,
    Bye

    Without any code to see what's going on we'd be flying blind trying to answer this one.

  • DIServer Login Question - Invalid Credentials Web Service Hangs

    Hi everybody,
    I was able to successfully configure the DIServer and connect via a web service (similar to the SDK Samples provided). I am now able to login using a valid username/password and the <dis:Login> SOAP message, but if I provide a bad username or password it seems to just hang forever, without returning an 'invalid user/password' message - just nothing. Anyone else have this problem?
    The only workaround I can think of now is to just set the timeout on my web request to a short time span with a generic error message. But I'd like to be able to differentiate between invalid credentials and just a problem with the DI Server connection.
    Thanks for any help.

    Looks like a reboot of the DI Server has fixed the problem. Probably should've tried that before posting.

  • SunRay running on Ubuntu but still unable to get web services

    Here is where I stand, I am trying to get port 1660/SunRay administration page. I have been messing with the system for about a week I need to be pointed in the right direction. Thanks
    root@test-corp-esx-03:/opt/SUNWut/sbin#
    ls
    utadm        utcapture  utcrypto  
    utdssync  utfwsync    utinstall        utlicenseadm  utpolicy    utquery   
    utresadm   utsession  utwall
    utadminuser  utcard     utdesktop 
    utfwadm   utgroupsig  utkiosk          utmhadm       utpreserve  utreader  
    utresdef   utusbadm
    utamghadm    utconfig   utdevadm  
    utfwload  utgstatus   utkioskoverride  utmhconfig    utpw        utreplica 
    utrestart  utuser
    root@test-corp-esx-03:/opt/SUNWut/sbin#
    netstat -napt
    Active Internet connections (servers
    and established)
    Proto Recv-Q Send-Q Local
    Address           Foreign Address         State       PID/Program
    name
    tcp        0      0
    0.0.0.0:7008            0.0.0.0:*               LISTEN     
    4647/inetd
    tcp        0      0
    0.0.0.0:7011            0.0.0.0:*               LISTEN     
    5482/utdevmgrd
    tcp        0      0
    0.0.0.0:7012            0.0.0.0:*               LISTEN     
    25185/utdsd
    tcp        0      0
    0.0.0.0:389             0.0.0.0:*               LISTEN     
    29836/slapd
    tcp        0      0
    127.0.0.1:3306          0.0.0.0:*               LISTEN     
    4513/mysqld
    tcp        0      0
    0.0.0.0:80              0.0.0.0:*               LISTEN     
    13790/apache2
    tcp        0      0
    127.0.0.1:631           0.0.0.0:*               LISTEN     
    4612/cupsd
    tcp        0      0
    0.0.0.0:7007            0.0.0.0:*               LISTEN     
    5451/utsessiond
    tcp6       0      0
    :::389                  :::*                    LISTEN     
    29836/slapd
    tcp6       0      0
    127.0.0.1:8005          :::*                    LISTEN     
    5498/java
    tcp6       0      0
    :::8009                 :::*                    LISTEN     
    4887/jsvc
    tcp6       0      0
    :::8010                 :::*                    LISTEN     
    5498/java
    tcp6       0      0
    :::8080                 :::*                    LISTEN     
    5498/java
    tcp6       0      0
    :::8180                 :::*                    LISTEN     
    4887/jsvc
    tcp6       0      0
    :::22                   :::*                    LISTEN     
    12699/sshd
    tcp6       0    148
    10.3.225.56:22          10.3.226.45:2805        ESTABLISHED
    19454/0
    root@test-corp-esx-03:/opt/SUNWut/sbin#
    ./utconfig
    Configuration of Sun Ray Core
    Services Software
    This script automates the
    configuration of the Sun Ray Core Services
    software and related software
    products.  Before proceeding, you should
    have read the Sun Ray Core Services
    4.0 Installation Guide and filled out
    the Configuration Worksheet.  This
    script will prompt you for the values
    you filled out on the Worksheet. 
    For your convenience, default values
    (where applicable) are shown in
    brackets.
    WARNING: SunRay Datastore is
    enabled. This script may clobber the current
    configuration.
    Continue (y/[n])?
    y
    Configure Sun Ray Web
    Administration? ([y]/n)? y
    Enter Apache Tomcat installation
    directory [/usr/local/tomcat]:
    Enter HTTP port number
    [1660]:
    Enable secure connections? ([y]/n)?
    n
    Enter Tomcat process username
    [utwww]:
    Enable remote server administration?
    (y/[n])? y
    Previous Sun Ray Kiosk Mode
    configuration:
    Current kiosk user account
    settings:
      user name prefix:  
    utku
      first account uid: 
    150000
      number of accounts:
    25
      kiosk group name:  
    utkiosk
      kiosk group gid:   
    auto
    Do you wish to preserve this
    configuration? ([y]/n)? y
    Configure this server for a failover
    group? (y/[n])? n
    About to configure the following
    software products:
    Sun Ray Data Store
    3.0
        Hostname:
    test-corp-esx-03
        Sun Ray root entry:
    o=utdata
        Sun Ray root name:
    utdata
        Sun Ray utdata admin password:
    (not shown)
        SRDS 'rootdn':
    cn=admin,o=utdata
    Sun Ray Web
    Administration
        Apache Tomcat installation
    directory: /usr/local/tomcat
        HTTP port number:
    1660
        HTTPS port:
    Disabled
        Tomcat process username:
    utwww
        Remote server administration:
    Enabled
    Sun Ray Core Services
    4.0
        Failover group:
    no
        Sun Ray Kiosk Mode:
    yes
    Continue ([y]/n)?
    y
    Creating Sun Ray Core Services
    Configuration ...
    Sun Ray Web Administration enabled
    to start at system boot.
    Saving /etc/opt/SUNWut/gmSignature
    to /etc/opt/SUNWut/gmSignature.bak
    Unique "/etc/opt/SUNWut/gmSignature"
    has been generated.
    Restarting Sun Ray Data Store
    Stopping Sun Ray Data Store
    daemon
    Sun Ray Data Store daemon
    stopped
    Starting Sun Ray Data Store daemon
    Wed Aug 27 13:08 : utdsd
    starting
    Adding user admin
    Failed to add user(s) to the
    list
    ERROR: Could not retrieve
    policy.
    ERROR: Could not retrieve
    policy.
    The current policy has been
    modified.  You must restart the
    authentication manager to activate
    the changes.
    Configuration of Sun Ray Core
    Services has completed.  Please check
    the log file,
    /var/log/SUNWut/utconfig.2008_08_27_13:07:46.log, for
    errors.
    root@test-corp-esx-03:/opt/SUNWut/sbin#Edited by: swedishvolvo on Aug 28, 2008 12:33 PM

    Alright I figured out what was casing the problem. It was the location I had set for the Java Runtime Enviroment webadmin.conf file.
    I was getting this error message
    root@test-corp-esx-03:/opt/SUNWut/webadmin/conf# /opt/SUNWut/lib/utwebadmin start
    No Java Runtime Environment (JRE) found at /usr/share/java.
    root@test-corp-esx-03:/opt/SUNWut/webadmin/conf# This is my print out of my now working the webadmin.conf file located at /opt/SUNWut/webadmin/conf
    # ident "$Id$ SMI"
    # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
    # Use is subject to license terms.
    # =============================================================================
    # Configuration settings for the Sun Ray Administration GUI
    # Configuration settings should be adapted via the utconfig -w command that
    # automatically takes care of the necessary adaptations in this file. Any manual
    # changes in this file will require a restart of the Admin GUI using the
    # /opt/SUNWut/lib/utwebadmin restart command. The restart ensures that the
    # Tomcat configuration files (server.xml and web.xml) are updated accordingly.
    # =============================================================================
    # =============================================================================
    # General environment settings
    # =============================================================================
    # The location of the Java Runtime Environment (should be JRE 1.5 and above)
    jre.home=/usr/lib/jvm/java-6-sun-1.6.0.06
    # Any Java options (e.g. memory allocation) that should be applied
    jre.options=
    # The location of the Apache Tomcat binaries (should be Tomcat 5.5)
    catalina.home=/usr/local/tomcat
    # Any additional options that should be applied to Tomcat
    catalina.options=
    # The location of the log file for utwebadmin
    log.file=/var/opt/SUNWut/log/utwebadmin.log
    # The logging level (e.g. FINEST, FINER, FINE, CONFIG, INFO, WARNING, SEVERE)
    log.level=SEVERE
    # The automatic start of the tomcat daemon during system startup
    # (default is true)
    auto.start=true
    # =============================================================================
    # Tomcat Web server settings
    # =============================================================================
    # The Unix user account which will be used by Tomcat
    process.username=utwww
    # The Unix group name which will be used by Tomcat
    process.groupname=utadmin
    # The session timeout (specified in minutes)
    session.timeout=30
    # Secure HTTP port number (default is 1661)
    https.port=0
    # Unsecure HTTP port number (default is 1660)
    http.port=1660
    # Remote administration (default is 127.0.0.1 - localhost only),
    # use ".*" to enable remote access from any host.
    remote.access=.*
    # Shutdown port (default is 50505), this setting will automatically be
    # adapted, if the port is already occupied by another application
    shutdown.port=50505utwebadmin is running! See port 1660!
    root@test-corp-esx-03:/opt/SUNWut/webadmin/conf# netstat -napt
    Active Internet connections (servers and established)
    Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
    tcp        0      0 0.0.0.0:7008            0.0.0.0:*               LISTEN      4647/inetd
    tcp        0      0 0.0.0.0:7011            0.0.0.0:*               LISTEN      5482/utdevmgrd
    tcp        0      0 0.0.0.0:7012            0.0.0.0:*               LISTEN      19939/utdsd
    tcp        0      0 0.0.0.0:389             0.0.0.0:*               LISTEN      29836/slapd
    tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      4513/mysqld
    tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      2786/apache2
    tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      4612/cupsd
    tcp        0      0 0.0.0.0:7007            0.0.0.0:*               LISTEN      5451/utsessiond
    tcp6       0      0 :::389                  :::*                    LISTEN      29836/slapd
    tcp6       0      0 127.0.0.1:8005          :::*                    LISTEN      5498/java
    tcp6       0      0 127.0.0.1:50505         :::*                    LISTEN      2653/java
    tcp6       0      0 :::8009                 :::*                    LISTEN      4887/jsvc
    tcp6       0      0 :::8010                 :::*                    LISTEN      5498/java
    tcp6       0      0 :::8080                 :::*                    LISTEN      5498/java
    tcp6       0      0 :::8180                 :::*                    LISTEN      4887/jsvc
    tcp6       0      0 :::22                   :::*                    LISTEN      12699/sshd
    tcp6       0      0 :::1660                 :::*                    LISTEN      2653/java
    tcp6       0    740 10.3.225.56:22          10.3.226.45:1644        ESTABLISHED 2415/1
    root@test-corp-esx-03:/opt/SUNWut/webadmin/conf#Edited by: swedishvolvo on Sep 3, 2008 11:54 AM

  • How to retrieve unchecked default remind value in exchange web service

    I can get the default remind minutes value from user configuration dictionary property ('piRemindDefault'). How do I get the value from EWS if I uncheck the Default reminder checkbox in outlook calendar option. Thanks.
    The 'piRemindDefault' properity always return value even I unchecked the 'Default Reminders:' checkbox in calendar option.
     

    The piRemindDefault is just the default reminder period (which is 15 minutes by default) so even when you untick reminders its not going to change the value. You looking at the Calendar Config object to get the reminders option you need to look at the OWA.UserOptions
    config object in the root of Mailbox eg
    FolderId RootFolderi = new FolderId(WellKnownFolderName.Root, "[email protected]");
    UserConfiguration usConfig = UserConfiguration.Bind(service, "OWA.UserOptions", RootFolderi, UserConfigurationProperties.All);
    if (usConfig.Dictionary.ContainsKey("enablereminders"))
    Console.WriteLine(usConfig.Dictionary["enablereminders"]);
    Cheers
    Glen

  • Can't setup the Web Services as printer says "cannot connect to the server to get the update"

    Just purchased and am setting up my HP Officejet pro 8600. It has set-up wirelessly without a hitch until I tried to install/enable the web services and I continue to get a message saying "the printer could not connect to the server" therefore it cannot check for an update on Web Services apps and they will not be enabled. Never had so much trouble setting up an HP printer in the past. Looks like this web services is more of a headache and a gimmick to sell this printer.

    Hi Guys,
    I found the solution after 2 days.
    Open internet explorer and type in the IP address of the printer in the address bar then press enter.
    The embedded web server of the printer should pull up.
    C. Click the network tab near the top.
    On the left side, click IPv4 under your connection type, wireless or wired.
    D. Change the IP address from automatic to manual.
    Enter the same IP address, default gateway, and subnet mask.
    Enter 8.8.8.8 for the primary dns and 8.8.4.4 for the secondary then click apply.
    E. After the apply button has been clicked to apply the static IP settings, enable Web Services.
    Good luck

  • How to get data from web service in ADF mobile

    I'm new to ADF mobile application development. I'm currently blocked in a scenario. I have a web service(from third party) which needs <wsse:Security> to retrieve data. In soapUI, the web service will retrieve the response only when there is this security tag. Otherwise it will give response as invalid security. The web service looks like this:
            <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xx="http://xmlns.oracle.com/apps/csf/soaprovider/plsql/xx_fs_mob_login/" xmlns:get="http://xmlns.oracle.com/apps/csf/soaprovider/plsql/xx_fs_mob_login/get_login/">
                   <soapenv:Header>
                      <xx:SOAHeader>
                         <!--Optional:-->
                         <xx:Responsibility>XXX</xx:Responsibility>
                         <!--Optional:-->
                         <xx:RespApplication>XXX</xx:RespApplication>
                         <!--Optional:-->
                         <xx:SecurityGroup>XXX</xx:SecurityGroup>
                         <!--Optional:-->
                         <xx:NLSLanguage>XXX</xx:NLSLanguage>
                         <!--Optional:-->
                         <xx:Org_Id>XXX</xx:Org_Id>
                      </xx:SOAHeader>
        <The portion which is excluded from the soap, but which is required for getting response>
        <wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
                         <wsse:UsernameToken wsu:Id="UsernameToken-1">
                            <wsse:Username>XXX</wsse:Username>
                            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">XXX</wsse:Password>
                            <wsse:Nonce EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">XXX</wsse:Nonce>
                            <wsu:Created>2013-02-13T08:58:50.649Z</wsu:Created>
                         </wsse:UsernameToken>
                      </wsse:Security>
        <The portion which is excluded from the soap, but which is required for getting response>
                   </soapenv:Header>
                   <soapenv:Body>
                      <get:InputParameters>
                         <!--Optional:-->
                         <get:P_USERNAME>XXX</get:P_USERNAME>
                      </get:InputParameters>
                   </soapenv:Body>
                </soapenv:Envelope>
    I tried the steps described in ADF mobile tutorial to get web service data. But I'm getting response code 500 from the server. I tried the steps for secured web service also. But I'm not sure which security policy has been implemented in the web service. I tried with oracle/wss_username_client_token_policy and some others but didn't succeed. Later I tried by creating web service client/proxy. But as Oracle ADF only supports java 1.4, I got errors in the generated code(errors on generics and annotation).
    The WSDL for the web service is as follows:
        <definitions xmlns:tns="http://xmlns.oracle.com/apps/csf/soaprovider/plsql/xx_fs_mob_login/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns1="http://xmlns.oracle.com/apps/csf/soaprovider/plsql/xx_fs_mob_login/get_login/" name="XX_FS_MOB_LOGIN" targetNamespace="http://xmlns.oracle.com/apps/csf/soaprovider/plsql/xx_fs_mob_login/">
        <types>
        <schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://xmlns.oracle.com/apps/csf/soaprovider/plsql/xx_fs_mob_login/get_login/">
        <include schemaLocation="http://27.251.157.211:8000/webservices/SOAProvider/plsql/xx_fs_mob_login/APPS_XX_FS_MOB_LOGIN_GET_LOGIN.xsd"/>
        </schema>
        <schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://xmlns.oracle.com/apps/csf/soaprovider/plsql/xx_fs_mob_login/">
        <element name="SOAHeader">
        <complexType>
        <sequence>
        <element name="Responsibility" minOccurs="0" type="string"/>
        <element name="RespApplication" minOccurs="0" type="string"/>
        <element name="SecurityGroup" minOccurs="0" type="string"/>
        <element name="NLSLanguage" minOccurs="0" type="string"/>
        <element name="Org_Id" minOccurs="0" type="string"/>
        </sequence>
        </complexType>
        </element>
        </schema>
        </types>
        <message name="GET_LOGIN_Input_Msg">
        <part name="header" element="tns:SOAHeader"/>
        <part name="body" element="tns1:InputParameters"/>
        </message>
        <message name="GET_LOGIN_Output_Msg">
        <part name="body" element="tns1:OutputParameters"/>
        </message>
        <portType name="XX_FS_MOB_LOGIN_PortType">
        <operation name="GET_LOGIN">
        <input message="tns:GET_LOGIN_Input_Msg"/>
        <output message="tns:GET_LOGIN_Output_Msg"/>
        </operation>
        </portType>
        <binding name="XX_FS_MOB_LOGIN_Binding" type="tns:XX_FS_MOB_LOGIN_PortType">
        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <operation name="GET_LOGIN">
        <soap:operation soapAction="http://XXX:8000/webservices/SOAProvider/plsql/xx_fs_mob_login/"/>
        <input>
        <soap:header message="tns:GET_LOGIN_Input_Msg" part="header" use="literal"/>
        <soap:body parts="body" use="literal"/>
        </input>
        <output>
        <soap:body use="literal"/>
        </output>
        </operation>
        </binding>
        <service name="XX_FS_MOB_LOGIN_Service">
        <port name="XX_FS_MOB_LOGIN_Port" binding="tns:XX_FS_MOB_LOGIN_Binding">
        <soap:address location="http://XXX:8000/webservices/SOAProvider/plsql/xx_fs_mob_login/"/>
        </port>
        </service>
        </definitions>
    Please help me to figure out a solution for this.
    Thanks in advance
    Rino

    how to store the data in the mobile which i fetched from the server using RMS. Can u give me a eg. code. here and send me a link to my email id. [email protected]
    I am using Oravle10g as the database. It is installed in the server.
    I made a connection in servlet using ODBC:JDBC.
    I am able to see the data fetched from the server in my mobile.
    Now, i am trying to save the data. But i dont know how to use the RMS to connect to the Oracle database or pass the string etc.
    Do help me if you dont mind.
    I kept reading and tried some codes but i failed.
    Me still trying...........
    Thanks in Advance.

Maybe you are looking for

  • I can't email pdf's from Adobe professional 11.0.5 using default mail client Microsoft Outlook 2013 32 bit

    I am using Adobe Professional v 11.0.5 and have moved from Microsoft Outlook 2010 to 2013 now I am unable to e-mail pdfs directly to local configured mail client. As a work around I have to save file to desktop and place as an attachment in newly com

  • Broadband does not auto reconnect after power loss

    I have a D-Link DSL-302G ADSL modem and Netgear AC1900 on an  Eaton Powerware 5110 UPS. When there is power loss or brown out in our neighbourhood , our internet goes off and  does not reconnect automatically. I then have to physically turn off the N

  • Regarding error in xml validation 7.1

    Hi I am doing file to idoc scenario. In the sender agreement i selected validation by Adapter and uploaded the particular xsd.after executing the scenario in runtime workbench it is showing sucessfully processed  but in the MDT audit log I am getting

  • Autocomplete not working even after troubleshooting

    The autocomplete on my navigation bar has been broken for a while. I have tried all the suggestions given on the firefox help website but it hasn't fixed it. I am currently running firefox 3.6 since I'm still using a mac 10.4.11 I don't think I can u

  • Printing Web reports

    Hi We have a web report with 3 queries in it. In the "Paging" property of the Analysis web items in WAD, I increased the number of rows to 300 so that the users don't have to scroll from page to page to see results. Now, the entire report with values