What happened to our web services after upgrading to 701?

Hi,
We started using web services on a 700 server. Looks something like this.
SAP_ABA     700     0018     SAPKA70018     Cross-Application Component
SAP_BASIS     700     0018     SAPKB70018     SAP Basis Component
PI_BASIS     2005_1_700     0018     SAPKIPYJ7I     PI_BASIS 2005_1_700
We could create a proxy in vb.net and call our SAP web services like this:
        Dim ws As New sapserver.webservice1
        Dim input As New sapserver.ZGetuname
        Dim output As New sapserver.ZGetunameResponse
        out2 = ws.ZGetuname(input)
After upgrading to nw ep 7.1, which looks like this.
SAP_ABA     701     0007     SAPKA70107     Cross-Application Component
SAP_BASIS     701     0007     SAPKB70107     SAP Basis Component
PI_BASIS     701     0007     SAPK-70107INPIBASIS     Basis Plug-In
We no longer get the same input and ouput classes generated for us when consuming the service. It looks like it is now expected to be called like a function    ws.ZGetuname( param 1, param 2).
We would like to be able to generate the proxy the same way as before. Any ideas?
Thanks.

What happened to the file numbers after switching to Photos. It would be nice to still have the file numbers show.
You mean, the filename with the number on the card?
Photos does not use the filenames as a title, when displaying the thumbnails. The filename will only show in the Info panel.
Copy the filenames to the title field in the Info panel and then enable "Metadata" in the View menu.
I wrote a script to copy the filenames automatically to the title field,  see:
Photos for Mac: Batch Changing the Titles to the Filename

Similar Messages

  • What happens to my call history after upgradeing to windows skype

    I have widows 8.01 which it had Apps that you can download from store, on the 8th July I tried to Log in skype a Notifecation came that as from 7th July the Modern windows skype will No longer work so You have download a New version for as for Widows desktop. so I downladed it wich it shows just like before as I had it. Now I want to know what happend to my call history that had where dose it go, I know in the windows desktop Normaly gose to Document, How can get Access to my chat history from my PC. Please any one can Help.

    https://support.skype.com/en/faq/FA34567/what-happens-to-my-chat-history-when-i-upgrade-to-skype-for-windows-desktop You can try to move the main.db file from the modern app to Skype for Windows desktop version. https://support.skype.com/en/faq/FA392/where-can-i-find-my-conversation-history-in-skype-for-windows-desktop-and-what-can-i-do-with-it

  • Error deploying Web Service after upgrading from WL 7.0 No Service Pack to SP5

    Hello
    I have problem using HttpServletResposneWrapper with a ServletFilter in WLW
    7.0 SP5. When I apply the filter to JWS file in Development Mode, following
    Exception is thrown when I access a JWS.
    ===================================================================
    java.lang.ClassCastException: servlet.MyServletResponse
    at weblogic.knex.dispatcher.HttpRequest.getRequestURL(HttpRequest.java:233)
    at weblogic.knex.dispatcher.HttpRequest.(HttpRequest.java:51)
    at weblogic.knex.dispatcher.HttpServer.doGet(HttpServer.java:291)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
    tStubImpl.java:1094)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :437)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:20)
    at
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at servlet.MyFilter.doFilter(MyFilter.java:25)
    at
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
    ebAppServletContext.java:5632)
    at
    weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
    r.java:685)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:3213)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2555)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:251)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:219)
    ===================================================================
    I have looked at "weblogic.knex.dispatcher.HttpRequest" class. It seems like
    this class tries to cast the response object to "ServletResponseImpl" class,
    so ClassCastException is thrown.
    Is there any workaround for this issue, since my code is compliance with
    J2EE standard. Thank you very much in advanced.
    Regards,
    Tinnapat C.
    PS. These are my codes.
    =====================================================================
    package servlet;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpServletResponseWrapper;
    public class MyServletResponse extends HttpServletResponseWrapper {
    public MyServletResponse(HttpServletResponse response) {
    super(response);
    =====================================================================
    package servlet;
    import java.io.IOException;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.HttpServletResponse;
    public class MyFilter implements Filter {
    private FilterConfig config;
    public void init(FilterConfig config) {
    System.out.println("Filter.init");
    this.config = config;
    public void doFilter(ServletRequest request, ServletResponse response,
    FilterChain chain) throws ServletException, IOException {
    System.out.println("Filter.doFilter");
    ServletResponse wrappedResponse = new
    MyServletResponse((HttpServletResponse)response);
    chain.doFilter(request, wrappedResponse);
    public void destroy() {
    System.out.println("Filter.destroy");
    =====================================================================
    <filter>
    <filter-name>MyFilter</filter-name>
    <filter-class>servlet.MyFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>MyFilter</filter-name>
    <url-pattern>*.jws</url-pattern>
    </filter-mapping>
    =====================================================================

    Hello
    I have problem using HttpServletResposneWrapper with a ServletFilter in WLW
    7.0 SP5. When I apply the filter to JWS file in Development Mode, following
    Exception is thrown when I access a JWS.
    ===================================================================
    java.lang.ClassCastException: servlet.MyServletResponse
    at weblogic.knex.dispatcher.HttpRequest.getRequestURL(HttpRequest.java:233)
    at weblogic.knex.dispatcher.HttpRequest.(HttpRequest.java:51)
    at weblogic.knex.dispatcher.HttpServer.doGet(HttpServer.java:291)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(Servle
    tStubImpl.java:1094)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :437)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:20)
    at
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at servlet.MyFilter.doFilter(MyFilter.java:25)
    at
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(W
    ebAppServletContext.java:5632)
    at
    weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManage
    r.java:685)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
    ntext.java:3213)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
    :2555)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:251)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:219)
    ===================================================================
    I have looked at "weblogic.knex.dispatcher.HttpRequest" class. It seems like
    this class tries to cast the response object to "ServletResponseImpl" class,
    so ClassCastException is thrown.
    Is there any workaround for this issue, since my code is compliance with
    J2EE standard. Thank you very much in advanced.
    Regards,
    Tinnapat C.
    PS. These are my codes.
    =====================================================================
    package servlet;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpServletResponseWrapper;
    public class MyServletResponse extends HttpServletResponseWrapper {
    public MyServletResponse(HttpServletResponse response) {
    super(response);
    =====================================================================
    package servlet;
    import java.io.IOException;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.HttpServletResponse;
    public class MyFilter implements Filter {
    private FilterConfig config;
    public void init(FilterConfig config) {
    System.out.println("Filter.init");
    this.config = config;
    public void doFilter(ServletRequest request, ServletResponse response,
    FilterChain chain) throws ServletException, IOException {
    System.out.println("Filter.doFilter");
    ServletResponse wrappedResponse = new
    MyServletResponse((HttpServletResponse)response);
    chain.doFilter(request, wrappedResponse);
    public void destroy() {
    System.out.println("Filter.destroy");
    =====================================================================
    <filter>
    <filter-name>MyFilter</filter-name>
    <filter-class>servlet.MyFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>MyFilter</filter-name>
    <url-pattern>*.jws</url-pattern>
    </filter-mapping>
    =====================================================================

  • We are using the Azure server for our web services. Server is generating an error "Unable to connect to the remote server". What is this error means

    We are using the Azure server for our web services. Server is generating an error "Unable to connect to the remote server". What is this error means  

    Hello,
    Did you means that you use the Windows Azure Virtual Machine DNS name as the server name in the Reporting Server Web Services URL?
    For example:
    Report server:http://uebi.cloudapp.net/reportserver
    Report manager:http://uebi.cloudapp.net/reports
    If you want to connect to Report Manager on the virtual machine from a remote computer, you should create a  virtual machine TCP Endpoint and open the port in the virtual machine’s firewall. By default, the report server listens for HTTP requests
    on port 80.
    Reference:http://msdn.microsoft.com/en-us/library/jj992719.aspx#bkmk_ssrs_connect_2_remote_RM
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • HT2515 What happens if our video chat is not connecting with the other person?

    What happens if our video chat is not connecting with the other person?

    Hi,
    Not really enough info to help constructively.
    Which Version of iChat ?
    Is it iChat to iChat or iChat to Messages  (i.e Mac to Mac) or AIM (iChat) to PC AIM  (needs to be a compatible version)
    Is this AIM to AIM (Includes AIM valid Screen Names from certain Apple IDs) ?
    Is it Jabber to Jabber (this can only be done Mac to Mac in Messages and/or iChat) ?
    Do you get any failure  message ?
    In the Video Menu > Connection Doctor > Errors tab do you get any info ?
    NOTES
    As mentioned it is iChat to iChat or iChat to AIM on a PC if the PC has a compatible version (which is not the latest)  (where it lists iChat it also means Messages in Mountain Lion)
    It has to be either AIM to AIM IDs or Jabber to Jabber IDs
    It cannot be Jabber to some GoogleTalk Web Browser Login (or Facebook)
    It cannot be Jabber/Google Talk to the PC app called GoogleTalk
    Google released an PC only App that will use Jabber protocols for Video (Called Jingle)
    Their web Browser Plug-in also uses Jingle for Video and Audio chat but iChat and Messages use SIP (Session Initiation Protocol) to connect.  The two are not compatible.
    Facebook also run a  Jabber server and have apparently released their Own Plug-in  which can cause problems of it's own on a Mac.
    However you also cannot video to a Web Browser Login on Mac or PC
    If this is iChat 6 it does not Video on the Yahoo Accounts  (that is Text Only)
    This means it cannot Video to any version of Yahoo on Mac or PC or any Web Browser method.
    10:27 PM      Tuesday; February 19, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Help:Invoke web service after receiving a user task response

    Hi, All:
    We encountered a problem while developing user task. The detail is as follows:
    We need to invoke a web service after a user task's response, that is to say, the web service needs some data from the response of the user task.
    Take the loan flow tuturial as a example, what we need to do is to invoke a web service after the BPEL process get the start loan APR. the web service needs the APR for its input message. how can I handle this situation?
    Thank you very much for your help!

    Thanks for your immediate response Jan Vervecken.
    I have created the Data Control from web Service proxy and I am able to recieve the output from the web Service.
    But, Currently I am invoking the webservice process method by a command button which populates my SelectOneChoice.
    My requirement is to invoke the web service 'process' method by value change event in the SelectOnechoice control.
    So, Can you pls. let me know how do I bind the web Service method 'process' to value change event of SelectOnechoice control?
    Thanks and Regards,
    Sandeep T

  • What can I do about this: After upgrading to firefox 6, I get this error. TypeError: Components.classes[cid] is undefined???

    What can I do about this:
    After upgrading to firefox 6, I get this error.
    When I click to open Firefox, A box open with the following error:
    JAVASCRIPT Application
    TypeError: Components.classes[cid] is undefined?
    After I click close on the box, then Firefox will start. I really just want to get the error fixed so that when I want firefox open, I don't have to see this box anymore.

    You need to figure out which add-on is causing that error and disable it until the developer of that add-on fixes it. There may be an error message about that in the Error Console, accessed through the Web Developer menu item or through {Ctrl + Shft + J}.
    Also see this: <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • TS3991 what happened to my web site

    petersonconstdesignInc.com
    what happened to my web site

    It was shut down when MobileMe ceased to exist 18 months ago.
    Have you only just noticed?
    In the 12 months before June 30th 2012 Apple sent you multiple emails repeatedly telling you of the forthcoming closure of MobileMe and telling you how to move your site elsewhere. I guess you didn't do this?
    iCloud does not offer web-hosting, so you'll have to find somewhere else to host your site. Hopefully you have a local backup of the site data, so you can easily upload it to another web host and repoint the domain to it.
    Read: http://support.apple.com/kb/HT5334

  • What SAP Business Objects Web Services to use with XI3.0

    I'm new to BO and is tasked to install it.
    What I've installed already is the BOE XI3.0 version and now want to install Xcelsius 2008 Enterprise.
    What I can not figure out from the Xcelsius manual or SDN or OSS is what the Business Objects Web Services are the manual instructs you to install with Xcelsius.
    I did find something called
    BusinessObjects Web Services XI for Windows and downloaded it but is not sure if this is what I need to install as the business Object Web Services on XI 3.0
    Can someone please direct me in the correct direction
    Thanks in advance
    Liezel

    Hi,
    i am not sure if i understand your question. If you mean Query as a Webservice (QaaWS), this component should be part of your XI 3.0 Enterprise installation. You could also use the flynet (www.flynet.co.uk) which is part of Xcelsius Enterprise 2008 SP1.
    Best Regards
    Ulrich
    Edited by: Ulrich Hambuch on Sep 29, 2008 1:09 AM

  • What happens if I choose to NEVER upgrade to IOS 6?

    Mapping problems.
    Power drainage
    Slow applications
    Bluetooth problems
    Hopefully Apple will fix most or all of these issues.   I certainly will not upgrade until then. 
    However, what happens if I decide to NEVER upgrade to IOS6?   Will my phone stop working at some point?

    There's no reason it should stop working. You may find yourself in a position where apps you want to run start requiring iOS 6. Be careful when updating apps to read the fine print on them before you do so.

  • What happened to ADOBE workspaces files after being downloaded before retirement?

    What happened to ADOBE workspaces files after being downloaded before retirement?

    I had this problem as well! I was working on one of several projects I had, I'm pretty sure they were saved on the computer, my computer started to chug, I reset it, and they ALL disappeared! I can't find any of the files anywhere on the hard drive, but I also can't sign into the cloud to see if they somehow got moved. I reset again, and still nothing.
    When I try to log into the cloud it tells me the sync failed. Since I only just signed up for the subscription I don't know if it's common for it to go down, or what.

  • My MacBook Air (13" Mid 2012) 1.8 GHz, i5, 4 GB 1600 MHz DDR3 becomes sluggish, particularly web browsing after upgrading to yosemite from mavericks

    my MacBook Air (13" Mid 2012) 1.8 GHz, i5, 4 GB 1600 MHz DDR3 becomes sluggish, particularly web browsing after upgrading to yosemite from mavericks

    Mine is exactly the same machine and is working with any kind of problems.
    Try to see this:
    Clean space, make faster

  • What happens in ORACLE internally during STARTUP UPGRADE ?

    Everyone,
    Could someone please explain/guide me What happens in ORACLE internally during STARTUP UPGRADE ?
    Regards,
    Sakthivel

    Hi;
    Please check below link
    startup migrate, startup upgrade, startup restrict
    startup migrate, startup upgrade, startup restrict
    Regard
    Helios

  • HT5012 Why my smart sim is no service after upgrade ios7 from iphone4

    Why my smart and globe sim is no service after upgrade ios7 from ios 6?

    Hi Kenshaine,
    I am in the same situation and my 4s is facing the same issue..It seems APPLE cant help us!! ***!

  • What happens to migrated idisk files after June 30th.

    what happens to migrated idisk files after June 30th?

    Just to be clear, there are no 'migrated files'. If you migrate, the iDisk remains untouched and accessible exactly as before (though you may need to sign in at System Preferences>MobileMe again). Whether or not you migrate, the iDisk will be teminated at the end of June and its contents erased.
    iCloud does not provide any equivalent facility, so you will need to find a third-party solution. This page examines some options:
    http://rfwilmut.net/migrate3

Maybe you are looking for

  • Query Designer 3.5 / Link in the Query

    Hello, I want in a Report a link, whats shows a Document for hole Queries and maybe a Main Document. I start the Query, then i want to click on a link and see some document.. How can i realize it ??? Thanks...

  • Wrong 'Still to be delivered' & 'Still to be invoiced' quantities against service POs in ME2* reports

    Hello All,' I have come across some strange issue in all ME2* reports when I am checking the service POs. Few of the service POs are showing zero quantity for still to be delivered & invoiced when the service entry sheet is yet to be created & invoic

  • I can't see my files after recovering my hdd?

    hi guys, do you know why i can't open my files pictures videos and docs after i recovered with the help of "recover my data" from my frozen hdd thanks in advance, there were valuable items in there

  • Streamclip - exporting for use in Final Cut Pro

    Hi, I've just downloaded Streamclip and have several DVDs (made with a dv video camera, fcp and DVD studio pro) about ten minutes long each, that I want to re-edit in Final Cut Pro into one whole movie. What is the best/correct way to do this? I trie

  • Complaints procedure

    I have an ongoing dispute with regards to provision of phone line/bb to a new-build property. This has been going on for months with repeated (too many to mention here) false promises, usually supplied by a barely understandable Indian accent from a