SOAP/WSDL and web-proxy

Hi,
I'd like to use WebServiceProxy.getServiceAt(URL) method with
a web proxy. How can I give it the address of my proxy?
Thanks,
Miguel

Hello,
Could you tell me what tool it is you are using?
Sounds interesting.
//Daniel.

Similar Messages

  • PHP5 SOAP WSDL and Xcelsius 2008 communication error

    Hi,
    I wood like to use PHP5 Soap server and WSDL for Xcelsius2008.
    Now Xcelsius 2008 can read WSDL parameters, and data from Xcelsius appear in Soap server, but in the Soap Response is the error message:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <SOAP-ENV:Body>
      <SOAP-ENV:Fault>
        <faultcode>SOAP-ENV:Client</faultcode>
        <faultstring>Bad Request</faultstring>
      </SOAP-ENV:Fault>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    My WSDL is here:
    http://www.tanit.hu/custimp/wsdl/hello/hello_04.wsdl
    My PHP5 Soap Server:
    <?php
    ini_set("soap.wsdl_cache_enabled","0");       
    $server = new SoapServer("hello_04.wsdl");
    class HelloService{
      function doHello($yourName){
        if (strlen(trim($yourName))) {
          return "Hello ".$yourName;
        } else {
          throw new SoapFault("Server","The input parameter is Empty!");
    ?>
    My PHP5 Soap Client (is working properly):
    <?php
    ini_set("soap.wsdl_cache_enabled","0");     
    try{
      $sClient = new SoapClient('http://www.tanit.hu/custimp/wsdl/hello/hello_04.wsdl'); 
      $response = $sClient->doHello('MyName');
      echo $response;
    } catch(SoapFault $e){
      var_dump($e);
    ?>
    Could somebody help me?
    Thx.

    OK.
    [I found this.|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233343330333133373334%7D.do]

  • Ical, caldav and Web proxy.

    Hi,
    I have configured ical with an external caldav server. The caldav URL server is reachable using http or https. The synchronization works fine at Home where I don't use web proxy to access to Internet. But at work, even if the network is properly configured with the proxy (Safari is working fine with the proxy configuration), ical seems to not be able to use the web proxy. Then, the synchronization is not working at work.
    Is there any limitation for ical/caldav to work through web proxy?
    Thanks.
    LauDai.

    I have exactly the same problem. A network expert suggested that the problem could be in the proxy. The CalDAV protocol used by iCal is an extension to the standard HTTP protocol, and apparently not all proxies can deal with the extensions. I don't know if there is a way to check if this is the cause of the problem.

  • Safari 3.x (Leopard) and Web Proxy Server Problems:

    I have a Squid proxy server running on Linux. Users web traffic is directed through it via WPAD server which hosts a simple PAC file. The PAC files is very clean and small. It basically points all external (Internet) web traffic to our Proxy server. All of our Windows, Linux and Tiger clients work fine. However, Leopard (Safari 3.x) doesn't work quite right. Here's what happens:
    Mac user logs into a Leopard 10.5 Mac. User launches Safari and tries to go to an external (Internet) site. The WPAD server is contacted and the Mac User is prompted to authenticate to the Proxy server. This is totally normal behavior thus far. Then, however, every few minutes the Leopard Mac user will be prompted to authenticate again (sometimes 2 or 3 times in a row!). Firefox 2.0.x, when configured to use the WPAD/PAC server and Proxy server, works fine in Leopard. Only Safari 3 in Leopard is having the problem.
    All the Macs (Tiger and Leopard) are configured to use the Proxy server via OS X's Network Pref Pane (using the "Automatic Proxy Configuaration"). Reminder: Tiger works fine (even with the Safari betas), but Leopard's doesnt not.
    I have attached our PAC file inline below (some things edited for privacy):
    // SIMR automatic configuration for Mozilla and friends
    // $Id: wpad.dat,v 1.8 2005/12/14 20:18:23 dct Exp $
    // Edit carefully, since many may be relying on this...
    function FindProxyForURL(url, host) {
    // Bypass the proxy for internal addresses
    if (!url.match("http:")
    || url.match("http://127.0.")
    || url.match("http://10.")
    || url.match("http://192.168.")
    || isPlainHostName(host)
    return "DIRECT";
    // These are exceptions given in the IE config for Windows.
    if (host == "www.ncbi.nlm.nih.gov"
    || host == "chabry.caltech.edu"
    || host == "flybase.bio.indiana.edu"
    || host == "www.fedex.com"
    || host == "domain.org"
    return "DIRECT";
    return "PROXY <proxy server>:8080";
    }

    I think I have a similar problem. I am a Mac connecting to an otherwise all PC school network.
    A new location with all correct proxies has been set up. However, Safari always crashes on first attempt to negotiate its way through our server to the internet. Internet explorer gets through because in its preferences it is possible to include the name of the school domain as well as my user name and password.
    We have been unable to find any way of including the domain name into Location in Network or into Safari.
    However, once Internet Explorer has negotiated with the server I can launch Safari and it works as normal.
    Safari/Network seems to lack this option of including a domain name that my PC server requires.
    Make sense to anyone?
    Worth mentioning that my copy of Internet Explorer (5.2) often crashes, but usually it has done its job by then. I quite like the concept of Internet Explorer sacrificing itself to clear a path for Safari.

  • Acrobat and Web Proxy Servers

    Hi
    I'm not sure if this is a Livecycle question or an Acrobat Question.
    We have a Livecycle form that calls a WebService - this works fine on the internet.
    One of our customers has a Proxy server, which does a redirect to force their users to enter a Username + Password.  Acrobat generates a "Network error" in this environment
    Is there anyway Acrobat can mirror this for the WebService call?
    My expectation is no - and that the url for the WebService needs to be added to a Proxy whitelist or similar
    Thanks,

    You are correct ....Acrobat will not know what to do with the authentication prompt from the proxy.
    Paul

  • Help - cannot access web service outside web proxy

    I'm trying to access a public web service - and web proxy stops me from doing it.
    Here is my code:
    package test;
    import java.rmi.RemoteException;
    import javax.xml.rpc.ServiceException;
    import net.webservicex.www.WeatherForecastLocator;
    import net.webservicex.www.WeatherForecastSoap;
    import net.webservicex.www.WeatherForecastSoapStub;
    import net.webservicex.www.WeatherForecasts;
    import java.net.*;
    import java.io.*;
    public class TestOutput {
    public static void main(String[] args) {
      initialiseConfiguration();
      printForecast();
    public static void initialiseConfiguration() {
      System.setProperty("http.proxySet", "true");
      System.setProperty("http.proxyHost", "proxyserver");
      System.setProperty("http.proxyPort", "8080");
      System.setProperty("http.proxyUser", "userid");
      System.setProperty("http.proxyPassword", "password");
    public static void printForecast() {
      try {
       WeatherForecastLocator wfl = new WeatherForecastLocator();
       WeatherForecastSoap wfs = wfl.getWeatherForecastSoap();
       WeatherForecasts forecasts = wfs.GetWeatherByZipCode("90210");
      } catch (Exception e) {
       e.printStackTrace();
    }Here, I was using the test web service located in www.webservicex.net/WeatherForecast.asmx
    I've created stubs using Eclipse (package net.webservicex.www) in another project, compiled into a jar, and imported into the test project.
    The test is working beautifully from my home. It's failing in the office with the error:
    AxisFault
    faultCode: {http://xml.apache.org/axis/}HTTP
    faultSubcode:
    faultString: (407)Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied. )
    faultActor:
    faultNode:
    faultDetail:
    {}:return code: 407
    It's failing when it's trying to execute
    WeatherForecasts forecasts = wfs.GetWeatherByZipCode("90210");
    The "initialiseConfiguration" function is doing its job OK - it's actually helping me to go through the proxy - if I'm doing simple stuff like accessing internet sites. I've tested it - I can get to any external site and read from it. The moment I disable "initialiseConfiguration", I can't get through the proxy.
    So, probably, the problem lies in the web services client classes generated by Eclipse and based on axis. Maybe, the code gets through the proxy, but then starts to do something without authentication??? (I'm not sure if it's possible at all, but who knows...)
    I've read a lot of postings on this subject and couldn't find a solution that would work for me. I'm very surprised, because my situation is very common - there are more and more public web services, and most organisations have firewalls. Obviously, I'm making some very elementary mistake.
    Please help

    We have the same problem, not with SOAP but with XML-RPC (err 407). We're still stumped, and i agree that the problem should be common, but i don't see the mistake, so it's not that obvious.
    Hypothesis: the proxy is spying on the requests content , and filtering out xml. Can you check that ?
    Message was edited by:
    idiallo

  • Lync 2013 Edge & Web proxy

    Hi Everyone
    I'm having a little trouble getting my head around the setup for Lync external access.
    I have setup an ADFS server, Lync 2013 server(works internally), 2012 web proxy server(doing nothing) and an edge server(currently doing nothing).
    My understanding is that the Edge and Web proxy server are in "parallel", I.E, they both face the WAN as they perform different tasks.
    The problem I have is that I'm unsure how to map everything correctly, I also don't understand how an external Lync client will get it's config. If my domain setup is:
    something.domain.internal, and I would like to register a DNS entry externally as something.domain.external. How do I map those correctly via the web proxy and edge server? Sending the request via the firewall is easy enough, however I'm unsure how I'm supposed
    to define them on my servers. Is the Lync server supposed to know about the external URL? Or does it not care?

    Hi,
    The Edge Servers run the services that allow external access to IM and presence, conferencing, audio/video, and other media services. You can also configure the Edge Server to federate with other Lync Server and other XMPP deployments.
    Lync Server uses the reverse proxy to publish a number of features, such as conferencing meetings, conference join locations, the address book, distribution list expansion, downloading meeting content, device updates, Mobility services, and more. Any reverse
    proxy that can meet the requirements for publishing the necessary resource locations can be used.
    You just need to define the Edge information in topology builder and publish it. Then configure the server as defined in topology and install local configuration store, setup Lync components and assign certificate. Here is a topology that
    using private IP addresses and NAT.
    http://technet.microsoft.com/en-us/library/gg399001.aspx
    Here are other resource how to publish Lync Server web services
    http://blogs.technet.com/b/dodeitte/archive/2013/10/29/how-to-publish-lync-server-2013-web-services-with-windows-server-2012-r2-web-application-proxy.aspx
    https://social.technet.microsoft.com/wiki/contents/articles/9807.how-to-configure-forefront-tmg-2010-as-reverse-proxy-for-lync-server-2010.aspx
    Kent Huang
    TechNet Community Support

  • Does Sun ONE Web Proxy Server have built-in log analysis tools? What kind o

    Sun ONE Web Proxy Server automatically logs all requests using either the common log-file format or an extended log-file format. The extended log-file format includes the referrer field and user agent. You can also create your own log file format by selecting which HTTP fields you would like to log. A built-in log analysis program includes reports such as total number of requests, total bytes transfered, most commmon URLs requested, most common IP addresses making requests, performance during peak periods, cache hit rates, and estimated response time reduction. The items logged and the analysis program are completely configurable using the server manager's HTML form.

    Sun Java System Web Server is a web server; it serves web pages to web clients. Sun Java System Web Proxy Server, on the other hand, is a web proxy server; it routes requests/responses between web servers and web clients.
    You can configure Web Server to act as a simple reverse proxy by installing the Web Server 6.1 Reverse Proxy Plugin. This doesn't provide any of the forward proxy or caching proxy functionality found in Web Proxy Server.
    Both Web Server 6.1 and Web Proxy Server 4.0 are supported on Solaris 10.

  • SOAP/WSDL builder for C programming

    Dear guru,
    is any possibility or can you give any hint if exist some SOAP/WSDL builder for creating C libraries from SOAP/WSDL and vice versa?
    Thanks a lot for help.
    Regards,
    Roman

    Rfcsdk, there is a genh.exe in bin folder, which can be used to generate c headers according to ddic table/struct def (se11).
    and, you may use Nco to generate wsdl / c#  class desc.
    all these two method may use se37 function
    RFC_GET_FUNCTION_INTERFACE(RFC_GET_FUNCTION_INTERFACE_US) to get function parameter info(I,E,T...) and for a struct/table use  RFC_GET_UNICODE_STRUCTURE to get detailed struct info, you may then generate your sql/c#/c typedef/...
    Hope these info can be help, you may reach me at <b><REMOVED BY MODERATOR></b>, good luck.
    Message was edited by:
            Alvaro Tejada Galindo

  • WEB proxy settings

    Hi,
    When we try to register as site visitor using (iRecruitment External Site Visitor) Responsibility when we click on (Register Today) button we got the following error.
    “You have encountered an unexpected error. Please contact the System Administrator for assistance”.
    Please advice on this issue?
    Error Codes
    “You have encountered an unexpected error. Please contact the System Administrator for assistance”
    How can i check Web proxy host and web proxy port ?
    Regards
    Naseer

    Hi Naseer,
    This is a very generic error.
    You need to provide us more information on the error.
    Alternatively, speak to your DBAs and see the external site is working fine.
    Did you add the External visitor responsibility to the GUEST user ?
    Some metalink notes which might help -
    EBS: Search Helper/Guided Resolution for iRecruitment (iRec) Issues(1451641.1)
    Oracle HRMS iRecruitment (iRec) Diagnostic Script(338342.1)
    iRecruitment Null Pointer Exception Issues(1379595.1)
    iRecruitment ORA Errors(1375267.1)
    Thanks,
    Vignesh

  • OTN Live Web Services problem, mismatched WSDLs and Soap RPC reply

    I've tried to connect to all those OTN Live Web Services using webMethods and found there might be a mismatched WSDLs and Soap RPC problem in Oracle side. There is a discussion thread of this: http://www.wmusers.com/wmusers/messages/116/904.shtml
    Is there anyone out there encounters the same problem and agree that Oracle should fix this ? Thanks a lot in advance.

    Hi Mike,
    I've just downloads all 5 WSDL and tried each single one of them again. The following are the results of the test.
    Result (OK): this is the success case
    Result (0): this is the "OTN Authentication Failure" and I cannot tell if it works if input is correct.
    Result (1): this is the error I've mentioned in the previous message and I'll give you more details later.
    Result (2): this is the "No Serializer found" exception:
    java.lang.IllegalArgumentException: No Serializer found to serialize a
    'org.w3c.dom.Element' using encoding style 'http://schemas.xmlsoap.org/soap/encoding/'.
    -- IOTNMobileWrapperPortType
    getStatusByMsgID (OTN Authentication Failure)
    getStatusesByMsgIDs (1)
    getSupportedTransports (1)
    getVersion (1)
    sendText (1)
    sendTextMsg (1)
    -- OTNDeptEmpPortType
    getDeptInfoArray (OK)
    getDeptInfoXML (2)
    getDeptNoArray (OK)
    getDeptXML (2)
    getEmpInfoArray (OK)
    getEmpInfoXML (2)
    getEmpNoArray (OK)
    getEmpXML (2)
    -- IOTNGUIDGeneratorPortType
    getGUID (1)
    -- IOTNHelloWorldPortType
    getAvailableLanguages (1)
    getDefaultHelloWorld (1)
    getHelloWorld (1)
    -- IOTNNewsPortType
    getRss (1)
    Let me explain what happens in error case (1):
    webMethods construct the "targetOutSignature" for the client base on the WSDL.
    After the reply message retrieved, it tries to "conform" (validate) it against the "targetOutSignature".
    Whenever I get this exception, I can open the exception details and actually see that the reply xml has been received but with the error message of "Output parameters do not conform to targetOutputSignature".
    If I manually remove the "targetOutputSignature" from the generated client, so that webMethods won't try to "conform" the reply message against the one described in the original WSDL, it works perfectly.
    I hope this helps. Please let me know if there is any other information I can provide.
    Thanks.
    - Louis

  • Dynamic Host and Port for Web Proxy

    hi,
    When I create a web proxy in JDev I supply the hostname and the port for the web service. The code is then compiled and then deployed. However I want the host and port to be dynamic (kept in a varaible) so when I move my deployment from Development to Test server I just need to change a value in a database or text file. I don't want to re-compile and deploy the code when I move servers. Is there any way to do this??
    Thanks
    Stephen

    Hi,
    not so in the WSDL file that is created. If from the client side access, then WS poxy classes allow you to do this
    Frank

  • Obtaining the WSDL and sending a message (like Web Services)

    Hi All,
    Is it possible to use a service interface defined in XI as any other web service? Consider the following scenario.
    1. Create an async service interface (outbound) in XI (This has a message mapping and the message goes to some inbound interface). 
    2. Can we write an external application (a Java swing client or something) which can send a message to this service interface?
    3. While writing a normal web services client we specify the url of the WSDL and then send a SOAP message using some APIs.
    4. Can this be achieved in XI? If so could you provide me some links or blogs etc to have some idea about this. Also how do we specify the URL of the interface.
    5. I have seen a similar application (an HTML file) which takes the XML payload (conforming to the message type of the interface) and sends the message to the interface. In this case the URL is formed from sender namespace, server name, port etc. The name of this HTML is XIHttp_adapter.html.
    6. Can somebody give me more inputs in this direction?
    Many Thanks,
    Sandeep

    Hi Sandeep,
    The Info below should surely help you find an answer.
    If you're on WAS 6.20 and up, you can expose an RFC as a webservice directly from WAS.
    Or if you’re on Basis layer 4.6D, you'll need to use XI (or some other integration tool) to expose the RFC as a webservice.
    To do this in XI you'll need to:
    Integration Repository
    1) Import the RFC
    2) Define a message and datatype for the SOAP interface
    3) Create inbound and outbound interfaces
    4) Create maps between the RFC and SOAP messages
    5) Create an interface map
    Integration Directory
    1) Create an RFC Receiver Channel
    2) Create a SOAP Sender Channel
    3) Generate the WSDL (Tools->Define Web Service)
    You can then handoff the WSDL and a login username and password to your developer and they will have everything they need to make the WS call.
    Here are answers to a few doubts u might have:
    1) Do I need to actually create a WS that calls the RFC ? Isn’t the virtual interface exposed by the XI sufficient?
    Yes, you need to create a WS in XI that calls the RFC.
    2) If I really have to create the WS and deploy it in order to expose it with the XI, then what is my benefit of exposing it with the XI, why not just exposing it as a normal WS ?
    You don't have WAS 6.20 or up. Even if you did, you may still want to expose it using XI in order to have all of your integration go through the same application.
    3) If I expose my web service through the XI, how does the client application executes one of its methods? To which url does it have to access (the XI or the actual WS)?
    You expose a SOAP interface in XI by generating a WSDL file. This file contains all of the information a developer will need to call the webservice including the URL.
    You actually specify the URL when you generate the WSDL. Be sure to read the documentation to get the correct format because the URL that the wizard suggests isn't correct.
    Also check this Pdf for the Receiever SOAP Adapter configuration:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/40728f7b-0401-0010-d9bc-8c73884a3789
    Also the target URL must be the URL to the WSDL. So, if you try putting it in your browser you must see the wsdl code.Please do ensure the same.....
    I hope this helps.
    Regards,
    Abhy

  • Create Client Web Proxy Off of Concrete WSDL

    We need to be able to create a Web Proxy off of our concrete WSDL that was created when we deployed our BPEL flow. And we're getting errors and people cannot create a client web proxy. I need help to figure out what's wrong with ours because we didn't create it (it was generated by the deploy process). We've created a BPEL flow that has an abstract WSDL. When we deploy to the integration server it creates the concrete WSDL on our server:
    http://adc60117fems.us.oracle.com:7868/orabpel/default/ProcessGLAccountValidationRetailReqABCSImpl/1.0/ProcessGLAccountValidationRetailReqABCSImpl?wsdl
    And it gives it an EndPoint location:
    http://adc60117fems.us.oracle.com:7868/orabpel/default/ProcessGLAccountValidationRetailReqABCSImpl/1.0
    Now in JDeveloper, if someone takes that WSDL file and right clicks on it selects "Validate WSDL", I get no errors. If you right click on that file and select "Generate Web Service Proxy" we get a "Validation Failed" error and no proxy is generated. We also get the following errors:
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}FaultType, unsupported type (U007-a): ht
    tp://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ImplementationCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}SyncChartOfAccountsGLAccoun
    tListResponseDataAreaType, unsupported type (U007-a): http://xmlns.oracle.com/En
    terpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}LanguageProficiencyType, unsupported typ
    e (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeT
    ype
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}ProcessGLAccountValidationD
    ataAreaType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObject
    s/Core/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}DeleteChartOfAccountsDataAr
    eaType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Cor
    e/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}CreateChartOfAccountsType,
    unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common
    /V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ResponseCodeType, unsupported type (U007
    -a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}SyncChartOfAccountsGLAccoun
    tListEBMType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjec
    ts/Core/Common/V2:ImplementationCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}CreateChartOfAccountsListEB
    MType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core
    /Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PartyType, unsupported type (U007-a): ht
    tp://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ImplementationCodeType, unsupported type
    (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Implementati
    onCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ValueExpressionType, unsupported type (U
    007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:QueryOperatorCo
    deType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}GLAccountValidationResponse
    Type, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/
    Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}EmploymentRecordType, unsupported type (
    U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://www.oracle
    .com/retail/integration/payload/RIBDate}RIBDate, model error: Unsupported schema
    feature : "<xs:group ref="full-date" xmlns:xs="http://www.w3.org/2001/XMLSchema
    "/>"
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}OrganizationFinancialProfileType, unsupp
    orted type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Ac
    tionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}SyncChartOfAccountsGLAccoun
    tListDataAreaType, unsupported type (U007-a): http://xmlns.oracle.com/Enterprise
    Objects/Core/Common/V2:SyncActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}CitizenshipType, unsupported type (U007-
    a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PersonFinancialProfileType, unsupported
    type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCo
    deType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}UpdateChartOfAccountsListDa
    taAreaType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects
    /Core/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}ProcessGLAccountValidationT
    ype, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/C
    ommon/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PersonInterestType, unsupported type (U0
    07-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}GLElementType, unsupported
    type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCo
    deType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ContactEmailCommunicationType, unsupport
    ed type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Actio
    nCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}ProcessGLAccountValidationR
    esponseEBMType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObj
    ects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}SortElementType, unsupported type (U007-
    a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:SortDirectionCodeTy
    pe
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PersonCertificationType, unsupported typ
    e (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeT
    ype
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}OrganizationFinancialStatementType, unsu
    pported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:
    ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}DebugLevelCodeType, unsupported type (U0
    07-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:DebugLevelCodeTy
    pe
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ValidateType, unsupported type (U007-a):
    http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PersonType, unsupported type (U007-a): h
    ttp://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}SortDirectionCodeType, unsupported type
    (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:SortDirection
    CodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PaymentRemittanceCommunicationType, unsu
    pported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:
    ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ContactAddressCommunicationType, unsuppo
    rted type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Act
    ionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PaymentDebitCommunicationType, unsupport
    ed type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Actio
    nCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}QueryOperatorCodeType, unsupported type
    (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:QueryOperator
    CodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ContactFaxCommunicationType, unsupported
    type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionC
    odeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}SyncActionCodeType, unsupported type (U0
    07-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:SyncActionCodeTy
    pe
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ActionCodeType, unsupported type (U007-a
    ): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}LogicalOperatorCodeType, unsupported typ
    e (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:LogicalOper
    atorCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}OrganizationCreditRatingType, unsupporte
    d type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Action
    CodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PartyContactType, unsupported type (U007
    -a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ContactPhoneCommunicationType, unsupport
    ed type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Actio
    nCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}OrganizationType, unsupported type (U007
    -a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}FaultType, unsupported type (U007-a): ht
    tp://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ImplementationCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}SyncChartOfAccountsGLAccoun
    tListResponseDataAreaType, unsupported type (U007-a): http://xmlns.oracle.com/En
    terpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}LanguageProficiencyType, unsupported typ
    e (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeT
    ype
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}ProcessGLAccountValidationD
    ataAreaType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObject
    s/Core/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}DeleteChartOfAccountsDataAr
    eaType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Cor
    e/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}CreateChartOfAccountsType,
    unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common
    /V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ResponseCodeType, unsupported type (U007
    -a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}SyncChartOfAccountsGLAccoun
    tListEBMType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjec
    ts/Core/Common/V2:ImplementationCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}CreateChartOfAccountsListEB
    MType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core
    /Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PartyType, unsupported type (U007-a): ht
    tp://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ImplementationCodeType, unsupported type
    (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Implementati
    onCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ValueExpressionType, unsupported type (U
    007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:QueryOperatorCo
    deType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}GLAccountValidationResponse
    Type, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/
    Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}EmploymentRecordType, unsupported type (
    U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://www.oracle
    .com/retail/integration/payload/RIBDate}RIBDate, model error: Unsupported schema
    feature : "<xs:group ref="full-date" xmlns:xs="http://www.w3.org/2001/XMLSchema
    "/>"
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}OrganizationFinancialProfileType, unsupp
    orted type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Ac
    tionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}SyncChartOfAccountsGLAccoun
    tListDataAreaType, unsupported type (U007-a): http://xmlns.oracle.com/Enterprise
    Objects/Core/Common/V2:SyncActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}CitizenshipType, unsupported type (U007-
    a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PersonFinancialProfileType, unsupported
    type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCo
    deType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}UpdateChartOfAccountsListDa
    taAreaType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects
    /Core/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}ProcessGLAccountValidationT
    ype, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/C
    ommon/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PersonInterestType, unsupported type (U0
    07-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}GLElementType, unsupported
    type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCo
    deType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ContactEmailCommunicationType, unsupport
    ed type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Actio
    nCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/EBO/ChartOfAccounts/V1}ProcessGLAccountValidationR
    esponseEBMType, unsupported type (U007-a): http://xmlns.oracle.com/EnterpriseObj
    ects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}SortElementType, unsupported type (U007-
    a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:SortDirectionCodeTy
    pe
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PersonCertificationType, unsupported typ
    e (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeT
    ype
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}OrganizationFinancialStatementType, unsu
    pported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:
    ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}DebugLevelCodeType, unsupported type (U0
    07-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:DebugLevelCodeTy
    pe
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ValidateType, unsupported type (U007-a):
    http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ResponseCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PersonType, unsupported type (U007-a): h
    ttp://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}SortDirectionCodeType, unsupported type
    (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:SortDirection
    CodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PaymentRemittanceCommunicationType, unsu
    pported type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:
    ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ContactAddressCommunicationType, unsuppo
    rted type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Act
    ionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PaymentDebitCommunicationType, unsupport
    ed type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Actio
    nCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}QueryOperatorCodeType, unsupported type
    (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:QueryOperator
    CodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ContactFaxCommunicationType, unsupported
    type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionC
    odeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}SyncActionCodeType, unsupported type (U0
    07-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:SyncActionCodeTy
    pe
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ActionCodeType, unsupported type (U007-a
    ): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}LogicalOperatorCodeType, unsupported typ
    e (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:LogicalOper
    atorCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}OrganizationCreditRatingType, unsupporte
    d type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Action
    CodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}PartyContactType, unsupported type (U007
    -a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}ContactPhoneCommunicationType, unsupport
    ed type (U007-a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:Actio
    nCodeType
    [java] WARNING: exception occurred while processing type {http://xmlns.orac
    le.com/EnterpriseObjects/Core/Common/V2}OrganizationType, unsupported type (U007
    -a): http://xmlns.oracle.com/EnterpriseObjects/Core/Common/V2:ActionCodeType
    [java] Error: generator error: java.util.NoSuchElementException
    [java] No files written

    Hi,
    see http://www.oracle.com/technology/products/jdev/howtos/1013/wsadf/adfcomplexwstypes.html
    Frank

  • Web-Service Proxy and Web-Service Client access in a Bean (EJB 3.0)

    Hello Community,
    i want to access the SAP Knowledge-Management via the Webservice "RepositoryFrameworkWS", which resides on our Portal-System, from my Java-Application, which runs on a NW CE 7.11 Ehp1 Java Server.
    I choosed to create a WS-Client as a deployable client. So i created an Bean Project, imported the WSDL and created a WS-Proxy in that project. Additionaly i added some beans to that Bean-Project which use the WS-Proxy to access the KM.
    So far so good.
    But the WSDL also creates a Service-Endpoint, which already has an url for the WS-Target and Authentication-Information (in my case it seems that no Authentication is active) in its body.
    Because my client shell run on different systems in the future i searched for a way to easiliy deploy my application and adapt target-information elsewhere. I found in the documentation, that after deploying the deployable WS-Proxy/Client this can be done in the NW-Administrator under SOA-Management->Application and Scenario Communication->Single Service Administration.
    To my surprise i found my deployed WS there. And the entry for the there listed Port was configurable. But unfortunatly this customization is ignored by the application. For example i changed authentication to a HTTP-Authentication with a specific user and also changed to Target-URL. But with no success.
    What's wrong here?
    i accessed the WS in my bean in the following way:
        public Class xyz
         @WebServiceRef (name="RepositoryFrameworkWS")
         RepositoryFrameworkWS service;
          RepositoryFrameworkWSViDocument vi = service.getPort(RepositoryFrameworkWSViDocument.class);
         vi.findResources(rid,....)
    regards
    Matthias Hayk
    Edited by: Matthias Hayk on Sep 15, 2009 10:13 AM

    Hi Matthias
    In Single Service Administration there are two views: Webservices and WS Clients configurations. First of all you should enable BASIC HTTP authentication in WS configuration. Then go to WS Client configuration and enter user/password in HTTP BASIC authentication settings.
    Hope this help.
    BR, Siarhei

Maybe you are looking for

  • How to edit a post here in the forum?

    I have noticed several posts in which the original author of the post went back into it to edit it. How is that done? There have been many times I wanted to go back and edit. Thank you. Lorna in Southern California

  • What can I do about my battery life?

    Ok so I know that my iphone is really old. I bought it in 2009 and it has been a really good phone until about 6 months ago when the battery life went downhill. My phone will not hold a charge for more than 5 min. I will let it charge for a few hours

  • App Store does not activate Applications / Cannot Download updates

    Hello, I can login to app store without problems. But all the time I try to do anything, a login prompt pops up - question about Apple ID and password - I enter and for viewing account or manage account, it works fine. iTunes store, no problems - all

  • Exchange Activesync, messages replied or forwarded are not marked

    I notice with the iPhone that when I reply or forward a message it is not marked on the server as such. So when returning to the office and browsing my messages it can be sometimes difficult to evaluate my status of inbox emails. Activesync does have

  • JComboBox simple question

    I think is a very simple question, I ve got a JComBox with an array of Strings. Something like this: JPanel myPanel; JComBox box; String levels[]={"Level 1","Level 2","Level 3","Level 4","Level 5"}; box = new JComboBox (levels); myPanel.add(box); Ok.