I can not call the webservice?!?!?

Hello,
I want to call a webservice, but the Inputfields are all disabled. I have used a simple Weahterservice where I can input a city.
I can not use it.
Also I have follow the steps in the weblog: /people/anilkumar.vippagunta2/blog/2005/07/20/developing-web-application-without-writing-single-line-of-code-my-first-web-log
But there is the same problem. I can not use the input-fields. In this example I have create the output for the state of delivery. When I push the button, the request is shown on the form: "Please enter correct from email address to send this message". So I think, that the webservice work.
What is my mistake? If anybody want to help me, I can send my project-files. It's only the usage of the webservice.
Thanks,
Peter
Edited by: Peter S on Jan 14, 2008 11:21 AM
The Webservice I used in my own sample is : http://www.webservicex.net/WeatherForecast.asmx
for WSDL use http://www.webservicex.net/WeatherForecast.asmx?wsdl

I have not called the class which was under response

Similar Messages

  • Why tuxedo7.1 or Tuxedo6.5 can not call the service on Tuxedo8.0 server

    Why tuxedo7.1 or Tuxedo6.5 can not call the service on Tuxedo8.0 server.
    I wrote the Server Application with Tuxedo version 8.0.
    And used tuxedo71 WS client to call the service.
    The client application displayd tpinit fail.
    ULog told me "prv7.1 not allowed,use -t option on wsl".
    Is there any way to solve this problem?
    thanks!

    risen,
    Yes there is a way to solve this. As the error message suggests, use the -t
    option on your WSL server. Look at
    http://edocs.bea.com/tuxedo/tux80/atmi/secadm10.htm#1284650
    [ I know this documentation is astonishingly well hidden! ]
    Peter.
    risen wrote:
    Why tuxedo7.1 or Tuxedo6.5 can not call the service on Tuxedo8.0 server.
    I wrote the Server Application with Tuxedo version 8.0.
    And used tuxedo71 WS client to call the service.
    The client application displayd tpinit fail.
    ULog told me "prv7.1 not allowed,use -t option on wsl".
    Is there any way to solve this problem?
    thanks!

  • Calling the webservice twice - Duplicate entries

    Hi Experts,
    Scenario : SOAP Client -> Call Microsoft webservice -> XI JDBC Sync call-> Call Microsoft webservice.
    BPM Steps:
    1. Receive Step -> Get the SOAP Client request (Open S/A Bridge)
    2. Send Step -> Async call to Microsoft webservice  to update the log status.
    3. Send Step -> Sync call to JDBC
    5. Send Step -> Close the S/A bridge
    6. Send Step -> Call the Microsoft webservice to update the log status.
    Receiver Determination Steps
    1. SOAP Sender to BPM
    2. BPM(Async request) to 2 Log Business Service. I have mentioned the both business service under Configured Receivers section in Receiver Determination.
    3. BPM(Sync request) to JDBC
    Issue : The JDBC part works fine. Only problem with the Microsoft webservice. Twice it update the log table. ie. Twice it calls the Microsoft's each webservice.
    Please help me out, how to stop the second retry and let me know the above approach is correct or not.
    Thanks & Regards
    Sara

    Hi Sara,
    As per your info, Earlier you was trying to call both logging updates under one Sync/Async Bridge. But on Webservice side it will give you two responses and you will handling only one.
    In later case also you are handling only 1st response of Webservice call, but the another call is still open.
    Actually you are trying to built two Sync/Async Birdges. Which is not at all possible under one BPM.
    SAP have not recommended for it.
    Refer
    http://help.sap.com/saphelp_nw04/helpdata/en/43/65d4dab39b0398e10000000a1553f6/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/83/d2a84028c9e469e10000000a1550b0/content.htm
    You need to create two seperate interfaces for this.
    For e.g.
    1st will call the Webservice before updating the JDBC tables.
    2nd After updating the JDBC table you can again call the Webservice for updated logging status.
    Thanks
    Swarup
    Edited by: Swarup Sawant on Jun 2, 2008 8:50 AM

  • Calling Web Service From Oracle PL/SQL do not invoke the webservice in SOA Server

    Hi ,
    Trying to call the webservice from oralce pl/sql Function
    created a Function
    Not able to invoke the web service of SOA Server .
    CREATE OR REPLACE FUNCTION HelloWorld_WebServices(S_STRING Varchar2) RETURN VARCHAR2 AS 
        service_ sys.utl_dbws.SERVICE; 
        call_ sys.utl_dbws.CALL; 
        service_qname sys.utl_dbws.QNAME; 
        port_qname sys.utl_dbws.QNAME; 
        response sys.XMLTYPE; 
        request sys.XMLTYPE; 
        BEGIN 
         sys.utl_dbws.set_http_proxy('Host name : Port'); 
          service_qname := sys.utl_dbws.to_qname('ns1', 'process'); 
           service_      := sys.utl_dbws.create_service(service_qname); 
           call_         := sys.utl_dbws.create_call(service_); 
            sys.utl_dbws.set_target_endpoint_address(call_, 'http:/host name : port/soa-infra/services/OFS/HelloWorld/helloworld_client_ep'); 
            sys.utl_dbws.set_property( call_, 'OPERATION_STYLE', 'process'); 
            request       := sys.XMLTYPE('<ns1:process xmlns:ns1="http://xmlns.oracle.com/OFSOrderServices/HelloWorld/HelloWorld"><ns1:input></ns1:input></ns1:process>'); 
         response      := sys.utl_dbws.invoke(call_, request); 
         return response.extract('//HelloWorld/child::text()', 'http://xmlns.oracle.com/OFSOrderServices/HelloWorld/HelloWorld').getstringval(); 
         DBMS_OUTPUT.PUT_LINE ('Values of OutputsVariables8');
    --  Return 'S';
       END;
    Execute----the below code:
      Select HelloWorld_WebServices('Hi') from dual;
    Error:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.NoClassDefFoundError
    ORA-06512: at "SYS.UTL_DBWS", line 403
    ORA-06512: at "SYS.UTL_DBWS", line 400
    ORA-06512: at "APPS.HELLOWORLD_WEBSERVICES", line 74
    29532. 00000 -  "Java call terminated by uncaught Java exception: %s"
    *Cause:    A Java exception or error was signaled and could not be
               resolved by the Java code.
    *Action:   Modify Java code, if this behavior is not intended.

    Well, you should first test if your webservice is reachable with a simple WS - Client or a Browser - Plugin, then verify the respones of the web service and after that you can take further investigations on your problem domain. The error - message refers to a line in your function, obviously, but I can't see which line and because there is more than one call to sys.utl_dbws I don't see at what point the script fails. NULL - Pointer - Execptions usually indicate that a method was invoked on a variable which should contain an object reference but is NULL.

  • How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk

    How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk.i did try all the options but I can not find the phone number to call from Croatia,
    I can not change my Apple ID to the old mail (not possible!)
    The old mail don't accept the new password..
    I can not delete the Icloud all the time asking my the password of the old mail!
    I realy need help

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • HT203175 I have no problem signing on to iTunes my issue is once on the site I can not use the "search". It says there is a runtime error R6025 pure virtual function call. Has anyone had this problem and how do I fix it. Thanks

    I do not have a problem getting in the iTunes stores. My issue is once on the site I can not use the "search". It says there is a pure virtual function call R6025. How can I solve this problem? Do I have to create a new account? Do I have to uninstall and re-install? Thanks

    Thanks so much for your feedback. I really appreciate any input here.
    If someone from Adobe could GUARANTEE that this problem would go away if I
    purchased CS4, I would pony up the cash and do it. However, I'm skeptical
    about that because I just saw someone else post a message on the forum today
    who is running CS4 and getting the exact same runtime error as me.
    I'll try un-installing and re-installing as Admin, and if that doesn't work,
    maybe I can find a used copy of CS3.
    In the meantime, I'm also wondering if a Photoshop file can carry any sort
    of corrupt metadata inside it once it has errored out? Reason I ask is, I
    had to port all of my old PSD files to the new computer, and I only seem to
    be getting this error when I attempt to work on one of the files that
    previously got the runtime error when they were sitting on my XP machine.
    When I create new files from scratch on this new computer, they seem to be
    working just fine (at least, for now).
    If so, I would probably be smart to never open those troublesome
    "errored-out" files again.

  • My iphone is gray or black it is functioning but you can not see the screen so I can not call or text or anything

    My iphone is gray or black it is functioning but you can not see the screen so I can not call or text or anything,  I have a child that is very ill and I have to have access to a phone at all times can someone help me?  It happened one other time when I plugged it in to my to listen to music.  I know it is working it said something on voice control.  I tried the press the circle button and the top button but the screen only turned white?

    Try the following:
    - A reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPod.
    If you still have the problem that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order

  • Lync 2013 and lync 2011 for mac (can not complete the call)

    hi everyone
    A brand new Lync 2013 installed and updated.
    We are testing it on our LAN enviroment (no firewall issues).Our windows clients can sign in and can work very well with all options (audio ,video,conference ).BUt our mac clients (macbook pro with lync 2011 14.0.8   140321 ) cant make audio call
    or video call.when they try to make it , it gives the following generic error ,cannot complete the call.
    I enabled lync 2011 logging ,but also can not find the related log file also on the macbook.
    One more info ,on macbookpro when we  use the lync web app ,and we can make video and audio calls.
    I tried to uninstall lync 2011 from macbook ,reinstall ...not worked
    After the install tried to update ,the lync 2011 client step by step to the latest version ,But all microsoft lync 2011 updates are at the moment are to the latest version (14.0.8)h
    T

    Hi,
    As the issue happen only for Lync Mac client, so it should be the of Lync Mac client.
    You can try to perform a Clean Uninstall for Mac Lync client and then test again.
    Here is a link below:
    http://support.microsoft.com/kb/2691870
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • When I upgraded iOS 7.1 software when a call comes in I can not click the "listen" when the screen is in lock mode

    when I upgraded iOS 7.1 software when a call comes in I can not click the "listen" when the screen is in lock mode

    User troubleshooting steps as outlined in the manual include restart, reset, restore, restore as new. Have you tried any of these? Restart involves powering off your phone and powering back on. Reset involves the following procedure:
    Close all open apps by double-tapping the home button, then swiping up and off the screen with the app window (not the smaller icon).
    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • In my iPhone 4s, since I updated to the latest iOS 6.1.2 I have noticed that my battery drains very quickly, and that after 15 days after date, I lost the cell signal, I have 3g, but I can not call or receive calls or sms. HELP!

    In my iPhone 4s, since I updated to the latest iOS 6.1.2 I have noticed that my battery drains very quickly, and that after 15 days after date, I lost the cell signal, I have 3g, but I can not call or receive calls or sms. HELP!
    Sorry for my bad english :S
    Please, please help me

    Contact the carrier.

  • I can only make the call on the third try, I can not hear the ringer

    I can only make the call on the third try, I can not hear the ringer

    Hi stig68,
    If you are having grouping issues with compilation albums in iTunes, you may find the following article helpful:
    Apple Support: Why aren't songs with the same album art grouped together?
    http://support.apple.com/kb/TS1468
    Regards,
    - Brenden

  • HT1386 I have an app called ipieta which was originally downloaded onto an ipod. I gave the ipod to someone else, but now that I've had the iphone I can not get the audio even though it is downloaded into itunes music like it said to do.  It won't work.

    I have an app called ipieta which was originally downloaded onto an ipod. I gave the ipod to someone else, but now that I've had the iphone I can not get the audio even though it is downloaded into itunes music like it said to do.  It won't work.  I've tried more than several times to get help but nothing helps. Do I need to deauthorize the ipod or perhaps erase all the downloaded ipieta stuff and start over?
    Thanks for any suggestions

    Sorry. There's nothing anyone can do. The current version of the facebook app will not run on 4.2.1. The iPhone 3G won't run anything higher than 4.2.1. You're stuck.
    Maybe it's time to buy yourself a new iPod Touch.

  • After update to OS4.2.1 I can not get the ringer to work for incoming calls

    after update to OS4.2.1 I can not get the ringer to work for incoming calls. If I set Vibrate on, that's the only notification I get. Tried everything including blowing away ALL my apps and restoring phone to new. Lost all my apps but the ringer still won't ring

    God Bless u! LOL I have an otterbox case on my phone and had no clue that the mute button was there....Thank you so much!! The volume on my movies & everything else worked...even when I would go into "settings" and adjust the volume of the ringtone. I knew it was something simple...Thanks again..

  • My 5S is starting to scramble my calls so you can not understand the party you are speaking with, does anyone know why?

    My 5S is starting to "scramble" my calls so you can not understand the party on the other end.

    Basics from the manual are restart, reset, restore
    Have you tried all of these?

  • When i call someone i can not hear the phone ring or the people talking.  they can not hear me either.  what i do notice if i select speaker then i can hear them through the speaker phone only

    when i call someone i can not hear the phone ring or the people talking.  They can not hear me either.  what i do notice if i select speaker then i can hear them through the speaker phone only

    If there's an Apple store nearby make an appointment with the genius bar to have it checked.  Be sure to sync it and back it up, as well as import your photos and videos to your computer and back up your contacts separately (such as by sync them with iCloud) in case it needs to be replaced.

Maybe you are looking for

  • Querying multiple date ranges in one select

    Hello guys, DDL: CREATE TABLE DBO.SALES ( TYPE VARCHAR(50) , REVENUE DECIMAL(19,2) , SALE_DATE_TIME DATETIME) What I'm trying to figure out is how I can pass two dates to a where clause querying this table, a start date and an end date. From this I c

  • How do I download my software purchases with Snow Leopard

    I had a virus on my iMac desktop.  I erased entire hard drive after I did a backup.  I installed my original software that came with my computer (Snow Leopard).  Now I cannot download Yosemite which I have already purchased.

  • Epub with lots of photos

    I created an iBook combining text and many photos. How do I now convert it to an epub? Most of what I've read applies to text epubs.

  • XE 10g homepage won't launch on a ghosted pc

    I work in a school & install XE on 1 computer to then backup & 'ghost' onto sister computers in a lab. The XE install is successful on the master computer. But after ghosting it to the sister stations, they get the 'page not found' error. The pcs run

  • Following Errors when installing premier pro cc - please help?

    ERROR: DF012: Unable to find file(Seq 52) ERROR: DF024: Unable to preserve original file at "C:\Windows\Fonts\MyriadPro-Regular.otf" Error 32 The process cannot access the file because it is being used by another process.(Seq 52)