WSDL Proxy Wizard and Slashes in Binding/Port Name of SAP Webservice

Hi there,
i have problems to get the Java Webservice Proxy Wizard liking the SAP WSDL File:
Here is a small excerpt of it:
<wsdl:service name="/SIE/TS_PL03_GIDService">
     <wsdl:port name="/SIE/TS_PL03_GIDSoapBinding" binding="tns:/SIE/TS_PL03_GIDSoapBinding">
<soap:address location="../sap/bc/srt/rfc/SIE/TS_PL03_GID/version3?sap-client=025"/>
</wsdl:port>
</wsdl:service>
The Editor is also underlining these Names.
I've googled a bit in order to find out if there is a W3C restriction for having forward slashes in service Names but i've not found some so far.
any help is appreciated, Alex

Hi Thomas,
With the newer version of NCo (> 2.0) there is no wizard. You would have to drag and drop the RFC/BAPI from the server explorer window of visual studio.
First open the solution explorer, click on the SAP icon. Specify the credentials. And then from the list of RFC/BAPI drag and drop on SAP connector proxy page(design view). You can also specify the filter to restrict the listing of RFC/BAPI.
Regards.

Similar Messages

  • Proxy Host and Proxy Port Profiles

    Hi Hussein,
    Could you let me know when we use Proxy Host and Proxy Port profiles. Where it will be used.
    Regards,
    Satya.

    Hi Satya,
    Are you referring to the following variables? If yes, then it is whenever you need the application to connect to the internet and a proxy server is required (an example is when you want to access Metalink from OAM to download application patches).
    - Applications Server-Side Proxy Host And Domain (s_proxyhost)
    - Applications Proxy Port (s_proxyport)
    Note: 297689.1 - Unable to update MetaLink credentials from OAM
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=297689.1
    Regards,
    Hussein

  • HTTP Proxy: My grogram runs even I put a wrong proxy host and port

    I'm new to network programming, so I just use System.setProperty() for easy. But I don't know why this piece of code runs with whatever proxy I set:
    (I download a file and display in a in JTextArea, this is the ActionListener for 'Download' button)
         private class GetFileListener implements ActionListener
              public void actionPerformed(ActionEvent event)
                   if (completeRadioButton.isSelected())
                       try
                            viewFileTextArea.setText("");
                        System.setProperty("http.proxyHost", "http://123.123.123.123");
                        System.setProperty("http.proxyPort", "123");
                        System.setProperty("proxySet", "true");
                           URL url = new URL(completeURLTextField.getText());
                           BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
                           String str;
                           while ((str = in.readLine()) != null)
                               viewFileTextArea.append(str + "\n");
                           in.close();
                       catch (MalformedURLException e)
                            viewFileTextArea.setText("URL not found!");
                       catch (IOException e)
         }Please help! Thank you very much!

    This is the new version:
         private class GetFileListener implements ActionListener
              public void actionPerformed(ActionEvent event)
                   if (completeRadioButton.isSelected())
                       try
                            viewFileTextArea.setText("");
                        SocketAddress addr = new InetSocketAddress("123.123.123.123", 123);
                        Proxy proxy = new Proxy(Proxy.Type.HTTP, addr);
                        URL url = new URL(completeURLTextField.getText());
                        URLConnection conn = url.openConnection(proxy);
                           BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
                           String str;
                           while ((str = in.readLine()) != null)
                               viewFileTextArea.append(str + "\n");
                           in.close();
                       catch (MalformedURLException e)
                            viewFileTextArea.setText("URL not found!");
                       catch (IOException e)
         }but it still runs regardless of what proxy host and port I set in InetSocketAddress. Did I wrongly use Proxy class in the code above?

  • Need Apache to only bind port 80 to one IP and not all

    So as the subject says, I need to have apache only bind port 80 on one IP address. I have a Wowza streaming server that also wants port 80 but for a different IP, but I can't get apache from taking all IP's. Any help would be great. Thanks!
    -Brian

    I have never seen this not work, but I'll take your word for it.
    If Server Admin isn't doing it then you'll have to look at your config files manually and change them if needed.
    If you're running Apache 2 then you need to look at /etc/apache2/httpd.conf and the files in /etc/apache2/sites
    For each file you're looking for you want to find either a <VirtualHost> or a <Listen> directive of *:80 and change it to to specific IP address you want it to use.

  • What is the proxy setup and the port

    What is the proxy setup and the port

    hadi123 wrote:
    What is the proxy setup and the port
    Could you give a little more detail on your question please.  
    If you looking to setup a proxy server and port so your printer can connect the printer to HP ePrint, you will often find this setting in the embedded webserver of a printer.  Open up a web browser, and type http://<address of your printer> where the address of your printer is an IP address or hostname (such as http://192.168.2.2).  From the EWS, there will be a configuration section for HP ePrint, and you should find options for setting the proxy host and port in this area.
    I work for HP.

  • Web Service proxy deployment and reuse

    Jdev. 11.1.1.4
    Hi,
    In my ADF application I have created a web service proxy with Jdev wizard.
    I have created a method in order to test it and it works ok.
    Now, I need to reuse this proxy (the package) in other java applications also in Jdev but working with struts (I don't thnk this is important but....)
    I have created a deployment profile only for the ws proxy package and generated a jar file.
    This jar file has been declared in the second application and try to execute the same method that worked in the first application.
    Just in the first sentence:
    UtilGestionDocumental utilGestionGrupos = new UtilGestionDocumental();
    we are having an "unauthorized error". No time to declare any username nor password that are send in later instructions.
    The first part of the call to the WS that we are using is this:
    UtilGestionDocumental utilGestionGrupos = new UtilGestionDocumental(); <- Here it throws the error
    SecurityPoliciesFeature securityFeatures =
    new SecurityPoliciesFeature(new String[] {
    "oracle/wss_username_token_client_policy" });
    UtilGestionDocumentalPortType entidadDocPortType =
    utilGestionGrupos.getUtilGestionDocumentalSOAP12Port(/*securityFeatures*/);
    ((BindingProvider)entidadDocPortType).getRequestContext().put(BindingProvider.USERNAME_PROPERTY,"Username");
    ((BindingProvider)entidadDocPortType).getRequestContext().put(BindingProvider.PASSWORD_PROPERTY,"Password");
    ((BindingProvider)entidadDocPortType).getRequestContext().put(BindingProvider."EndPoint....." );
    I think I'm not using the correct system to create a jar for the WS, am I ?
    someone can help me with this ?

    Does any expert can help in deploying a web service proxy as a jar file ?

  • Proxy servers and the "cannot publish" error - v.1.1.2

    Using the latest iWeb (1.1.2), attempts to publish my work to my .Mac account resulted in the infamous "publish error." I then came across this KB article:
    http://docs.info.apple.com/article.html?artnum=303927
    I turned off my proxy access in the Network settings, and voila, publishing was successful. But now, I'm circumventing my much-needed proxy.
    It's been suggested in other threads here that proxies aren't a problem if one's iDisk is accessible through it. This is not the case. With the proxy, iDisk access is fine, it's only iWeb publishing that is a problem.
    Any way to keep my proxy and still publish with .Mac?

    iDisk access and iWeb publishing ARE indeed different activities. They are similar in that they both utilize the WebDAV protocol over Port 80, but they are different in their individual requirements for back and forth communications with the .Mac servers in terms of how soon or in what timeframe they expect to hear confirmation of transfer back from the server.
    It is apparent to me that the network timeout threshold for copying something to iDisk is a lot longer than that for publishing through iWeb. In fact, I would say that iWeb has become a lot more stringent with network timeouts ever since it was updated from 1.0 to 1.1.
    Anything in between your computer and the .Mac servers contributes to network latency. There are both software and hardware contributions to this latency. Proxy servers, like routers, can be software or hardware based. Software-based latency is most often greater than hardware-based latency.
    I would guess that removing any kind of latency "generating" obstacles within your control would likely improve iWeb function and decrease the incidence of publish errors. Some of these obstacles can include background processes, busy LAN activity (like VOIP use or streaming music/video or online gaming), wireless access points, proxy servers, and routers.
    On the other hand, I also think that if Apple increased iWeb's network timeout threshold, that most of the publishing errors that people experience could be eliminated.

  • Errors/warnings occurred when generating the local proxy dll and VI wrappers for web service

    Hello,
    I'm new to web services - trying to import a WSDL that was created by an outside vendor and placed on a company server.  I imported a previous version successfully.  The error I'm getting doesn't make a lot of sense to me, here it is:
    The following errors/warnings occurred when generating the local proxy dll and VI wrappers for this web service.
    Can't generate files.
    Possible reasons are:
    1. The output file(s) might be read-only.
    Remove the read-only attribute and import the Web service again.
    2. A proxy DLL that LabVIEW created under the same file path exists in memory.
    Restart LabVIEW and import the Web service again.
    I don't see any read-only attributes on the output files and I've tried restarting LabVIEW - no luck.  Any help is greatly appreciated.
    Thanks,
    Al Rauch
    Merck & Co., Inc.

    Aaron,
    I was able to successfully import and run the web services from the WSDL file in question in LV2009 on a different computer than the one on which I had the original problem.  Unfortunately I am still having the original problem on the project computer and will need to get it working there . . . still looking for a solution to that.  Apparently LV2009 is perfectly capable of importing and running this WSDL file, but there is something still in the way on the project PC.
    Thanks,
    Al

  • Calling an MFL business service from a WSDL proxy service

    Hi,
    I'm using Service Bus v2.6, and trying to call an MFL business service from a wsdl based proxy service.
    I have done the following so far:
    - Define an MFL-based business service that writes MFL messages to a JMS queue and reads reply messages off another queue, and it works when I debug this business service by itself.
    - Define a wsdl proxy service that routes requests to the MFL business service.
    Since the tutorials don't have MFL examples, I'm struggling to get this working. I've tried different ways, but no luck.
    Here's my definition of the route node in the Proxy Service at the moment.
    1. Call a custom XQuery (.xq file) to convert incoming message to an XML representation of the MFL message, and assign the result to a variable "param1"
    2. Use "Service Callout" to call the MFL business service, and set Request Document Variable to "param1" and Response Document Variable to "param2".
    When I debug the flow, param2 (reply) comes up as empty, and I don't know how to make it work.
    I've turned on the JMS trace etc and the JMS bit is working (i.e messages being written, and read by the business service).
    There seems to be something wrong with the way I call it from the proxy service.
    Any help would be much appreciated..
    Thanks

    Hello,
    Can you indicate the classpath that you use to run your client, version of weblogic and the version of jaxrpc api that you are using.
    As a quick experiment adding the jaxrpc jar files to your classpath one at a time.
    This [url http://www.javaworld.com/javaforums/showflat.php?Cat=&Board=Enterprisejava&Number=3801&page=12&view=collapsed&sb=9&o=&fpart=1]chap seemed to have a similar problem to you and solved it by adding the jaxprc-spi jar file to his class path. It may be that the jaxrpc-impl is causing you greif.
    Also see this thread:
    http://forums.bea.com/bea/message.jspa?messageID=200612003&tstart=0
    Hussein Badakhchani
    www.orbism.com

  • Regarding Clocking wizard and Simulation clock generation - document and their uses VIVADO IPI

    While working with Vivado IPI , I came across two different IPs, one is simulation clock and the other is clocking wizard IP.
    But got error while generating wrapper of these IPs with the steps I did , I am unable to instantiate the IP of simulation clock generation version 1 of 2014.4.1 vivado. And get error "Clk gen" not found.
    So, can you please just give me correct direction whether these can be used  together, that is input of clocking wizard IP is simulation clock generation IP ( please correct if i am wrong) or I need to make external port in clocking wizard and assign Y9 pin of zedboard to that.
    In brief, I want to know the uses of these IPs w.r.t to some sequential design , please just elaborate theoretical example even.
     

     What do you want to do? Simulation only CLOCK Generator is only for simulation purpose.
    Can you please just give me correct direction whether these can be used  together, that is input of clocking wizard IP is simulation clock generation IP 
    --> No
    I need to make external port in clocking wizard and assign Y9 pin of zedboard to that
    --> Yes, Use the cloking Wizard 
     

  • JAX-WS generated WSDL on Sun Application Server 9: strange port address

    I have deployed web service to Sun System Application Server 9, using JAX-WS 2.0. Server runs on virtual Ubuntu machine in VMware on Windows host. Then I try to connect from Windows to that webservice. When I point browser to
    http://192.168.215.156:8090/X/XService?wsdl
    I get WSDL with such line:
    <soap:address location="http://ubuntu:8090/X/XService"/>
    (instead of expected 192.168.215.156 there is host name "ubuntu")
    And then calling Web Service throws UnknownHostException: ubuntu.
    I thought that port name should be generated based on request URL - but it is not. I tried to change manually generated file (in domain1/generated/.. etc) - but still, even after that change and server restart, I get "ubuntu" host when access wsdl.
    How to solve this problem, so that returned port address were "192.168.215.156"?

    I'm 100% not sure on this, but from what I can tell, SJSAS processes the WSDL file on the fly before serving it to the browser/client. It appears to modify the soap:addess location with a seemingly random domain name.
    This domain name appears to be the result of a reverse lookup on the machine's own ip address. If you have access to your dns server, you can manipulate the value that way. Or just modify the HOSTS file on that machine.
    I don't know any way to configure the WSDL emitter directly to use specific domain names.

  • MultiServer peoplesoft PIA Domain doesnt start; failed to bind, port in use

    Multi Server PIA Domain does not start (failed to bind, port in use)
    Default (Peoplesoft) PIA multi server domain installation;
    After the setup we cannot start PIA and both PIA/ PIA2 cluster. One of them fails with error message about port conflict, port already in use.
    I 've been installing this kind of PIA's many times before. But this is the first install with Peopletools 8.49.19 and BEA Weblogic 9.2 mp3, P4.
    To bypass the problem we have NOT started the PIA1, PIA2 "servers" But that is a unwanted situation. Reinstalling and reconfiguring did not help.
    The odd thing is that on all previous installed PIA’s for different tools versions and peoplesoft applications we run here (on different servers) we do not run into the same errors. I am quite sure that on those servers where it works fine we only use port 443 for both PIA, PIA1 and PIA2.
    Since it’s not the port, I expect it the listen address to be the cause. I played around with IP address, fqdn, ip 127.0.0.1 (for PIA2 only) but nothing seems to work as the previous installations.
    web PIA multi server domain
    I start in sequence:
    startWebLogicAdmin.cmd
    startManagedWebLogic.cmd PIA
    startManagedWebLogic.cmd PIA1 and
    startManagedWebLogic.cmd PIA2
    the admin is running and the console can be reached.
    the PIA just starts fine (running) zie log below (PIA_log)
    when staring PIA1 it shuts down hust before comming up.
    <26-jun-2009 21:38:58 uur CEST> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "DefaultSecure". The address 10.1.70.76 might be incorrect or another process is using port 443: java.net.BindException: Address already in use: JVM_Bind.>
    <26-jun-2009 21:38:58 uur CEST> <Error> <Server> <BEA-002606> <Unable to create a server socket for listening on channel "Default". The address 10.1.70.76 might be incorrect or another process is using port 80: java.net.BindException: Address already in use: JVM_Bind.>
    <26-jun-2009 21:38:58 uur CEST> <Emergency> <Security> <BEA-090087> <Server failed to bind to the configured Admin port. The port may already be used by another process.>
    <26-jun-2009 21:38:58 uur CEST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason: Server failed to bind to any usable port. See preceeding log message for details.>
    <26-jun-2009 21:38:58 uur CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <26-jun-2009 21:38:58 uur CEST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <26-jun-2009 21:38:58 uur CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>

    Hi there. We solved the issue by adding a second IP address to the same NIC and filled in all listen addresses accordingly in the BEA admin console. This did not answer the initial behavior but is a BEA advised solution in a multi server configuration. I am still very much interested in the cause of the behavior change between 8.1 and 9.2 since adding a second IP address is a more costly solution which was NOT necessary in weblogic8.1
    Detlev

  • Change binding port of Xserver rather than 6000

    Hi Sysop,
    Can we change the binding port of Xserver rather than port number 6000 ?
    And how we can make it done ?
    Thanks.

    Hi
    The configuration files for the Xserver on your host should be in
    /etc/dt/config/Xconfig
    /etc/dt/config/Xservers
    If these files have never been customised or don't exist you can copy the default versions of
    these files from
    /usr/dt/config/Xconfig
    /usr/dt/config/Xservers
    to /etc/dt/confi, you can then edit them.
    From your post it's unclear what you are trying to do, however the 2 config files above have
    quite a bit of useful information in them about the various settings for the Xserver.
    regards

  • Proxy Pac and Outlook 2010

    Hello guys and happy holidays to all .
    I have a problem with a client OutLook 2010 and a proxy system .
    I explain briefly :
    we need to use PEC E-Mail directly with Outlook 2010.
    Our reality with security restrictive policies  , is used a proxy Pac  that blocks any communication to the outside , except for port 443 .all other Port shall be regulated by exceptions from the proxy and firewall.
    Reading we marked a solution through proxy socks so that the ports 995 and 465, the standard ports for the pec e-mail, to pass through the starter proxy and are entitled to reach the recipient .
    Using the netstat command estimates that Ol seemed to take the settings from Internet Options , and then worked regularly.At the end of the work, we have found that it does not work .
    The situation is the following :
    Client ol2010 W7 -> proxypac -> rule that points to the proxy socks - > firewall rule -> Internet .
    Result: It would seem that Ol not inherit the settings dictated by the internet options .
    Any idea to suggest ?
    Thank you and happy holidays to all .

    WPAD has been reported not to work with AD servers. I suggest you enter the PAC URL in the network settings under Automatic Proxy Configuration.
    Push Forward Proxy info within DHCP

  • Request Response Receive Port and Solicit Response Send Port

    Can anyone give me some idea how to bind Request Response Receive Port and Solicit Response Send Port with each other through TCP/IP adapter ??

    The binding of a Receive and Send Port has nothing to with the choice of Adapter.
    1) There is no out-of-the-box TCP/IP Adapter for BizTalk, but several 3rd. Party Adapters has been made, along with this one in CodePlex: http://tcpipbz2010.codeplex.com/
    2) Most people will use an Orchestration for binding a SR Send Port to a RR Receive Port. This may not be necessary though. All you need to do is have your Send Port subscribe to your Receive Port (by setting the Filter on the Send Port to "BTS.ReceivePortName
    == [The name of your Receive Port]". In this case, internal correlation will make sure that the response is routed back to the Receive Port.
    Morten la Cour

Maybe you are looking for

  • Multiple Samsung Stratosphere problems after FF1 update

    There have been multiple posts on various issues users have found after the recent Stratopshere FF1 update.  Some were replys to older posts and some only touched on a single issue.  I wanted to consolodate into one thread, and hopefully get teh atte

  • No mailboxes show up in the Mailbox window

    I'm kind of at a loss at this point. Since this morning, none of my mail boxes are showing up. The accounts are there. They get mail. But I can't see anything in the Mailbox window. Just the separator going down the vertical and a grey section on bot

  • New installation - Cisco Prime from OVA on VMWare

    Hi, I have just imported Cisco Prime OVA and followed the setup and entered the IP Address, hostname, DNS, Gateway etc etc... When I attempt to enter via the URL https://CicsoPrime01 it doesn't accept the connection. I'm able to ping to the CiscoPrim

  • Axis2 (0.94) - transport error : Unauthorized

    Dear all, I hving difficulties to consume a custom .Net webservice resides in Ms Sharepoint server. The webservice is tested within a C# windows application and it works fine. I used wsdl2java.bat to generate the neccesary stub and helper. When I tri

  • Photoshop elements 11 printer problems

    I have photoshop elements 11 and it can not find my printer Canon MG 8120.