Get WSDL thru UDDI

Hi
I am trying out webservices and have couple of questions.
1) I register a services on uddi server and overviewDocument url being my WSDL
like http://<somehost>:<port>/HelloWorld?WSDL. Now i use jaxr ro search the registry.
Problem i am facing is how do i get this WSDL from registry and in what form i
will get. Using jaxr i am able to serach for company and get till method name
but am clueless what do i do next to get wsdl and then how do i preoceed ?
2)Say once i get wsdl by somemeans thru jaxr. (Correct me if i am wrong). What
do i do next. Should i use some tool like wsdl2java and generate client. How do
i call this webservice ?
Please help me this thing is tooo confusing.
Thanks

Hi Frank,
You might try going through the webservice overview:
http://edocs.bea.com/wls/docs81/webserv/overview.html#1071587 and the
tutorial http://webservice.bea.com/index.html#qz12
You are right; UDDI (and the JAXR API, etc.) is just a discovery
mechanism. Now that you have discovered the webservice and have the
WSDL, then you need to use the information in the WSDL to communicate
with the webservice.
HTHs,
Bruce
frank wrote:
>
Hi
I am trying out webservices and have couple of questions.
1) I register a services on uddi server and overviewDocument url being my WSDL
like http://<somehost>:<port>/HelloWorld?WSDL. Now i use jaxr ro search the registry.
Problem i am facing is how do i get this WSDL from registry and in what form i
will get. Using jaxr i am able to serach for company and get till method name
but am clueless what do i do next to get wsdl and then how do i preoceed ?
2)Say once i get wsdl by somemeans thru jaxr. (Correct me if i am wrong). What
do i do next. Should i use some tool like wsdl2java and generate client. How do
i call this webservice ?
Please help me this thing is tooo confusing.
Thanks

Similar Messages

  • BPEL statistics get-wsdl

    Hi everybody
    I am performing BPEL load testing and I am looking at the request breakdown in the BPEL domain statistics and it shows that most time is spent in the get-wsdl step.
    Does anybody know what exactly is going on in this get-wsdl step and what can be done to reduce the time spent in this step?
    Thank you

    Hi Frank,
    You might try going through the webservice overview:
    http://edocs.bea.com/wls/docs81/webserv/overview.html#1071587 and the
    tutorial http://webservice.bea.com/index.html#qz12
    You are right; UDDI (and the JAXR API, etc.) is just a discovery
    mechanism. Now that you have discovered the webservice and have the
    WSDL, then you need to use the information in the WSDL to communicate
    with the webservice.
    HTHs,
    Bruce
    frank wrote:
    >
    Hi
    I am trying out webservices and have couple of questions.
    1) I register a services on uddi server and overviewDocument url being my WSDL
    like http://<somehost>:<port>/HelloWorld?WSDL. Now i use jaxr ro search the registry.
    Problem i am facing is how do i get this WSDL from registry and in what form i
    will get. Using jaxr i am able to serach for company and get till method name
    but am clueless what do i do next to get wsdl and then how do i preoceed ?
    2)Say once i get wsdl by somemeans thru jaxr. (Correct me if i am wrong). What
    do i do next. Should i use some tool like wsdl2java and generate client. How do
    i call this webservice ?
    Please help me this thing is tooo confusing.
    Thanks

  • How to publish wsdl in UDDI?

    Hi Experts,
    Could you please provide the steps to publish wsdl in UDDI?
    Regards
    Sara

    Hi Jai & Raj,
    I have followed the steps from the below blog.
    /people/sap.user72/blog/2005/11/16/webas-a-step-by-step-guide-for-configuring-uddi-registry-on-local-server (A step by step guide for Configuring UDDI registry on Local Server)
    step 8: After the user is authenticated, the user will be taken to a Publis Service Definition page. here one could specify service specific properties like categories, wsdl locaton. After entering required information hit the publish button for publishing the service definition onto the UDDI Register, which in our case happens to be the one on the local server.
    Could you please tell me what all needs to filled for the Name, Descriptions, Identifiers, Categories and Service Definition Details for the 8th step.
    Actually, I have given some value for the Name, Categories and Service Definition Details
    Name : wsdl
    Categories : uuid:C1ACF26D-9672-4404-9D70-39B756E62AC4 - uddi-org:types - wsdlSpec
    Service Definition Details : http://<server>:<port>/XISOAPAdapter/MessageServlet?channel=:BS_Tarpon_SOA_SOAP_dn1:CC_SOAP_SOA_GetAddress_In_dn1
    When I press publish, I get the "Model Published Successfully" message with uuid value.
    Just checked with the below url, but I could't find any file under Filename.
    http://<server>:<port>/wsdl/
    Could you please tell me what other steps needs to be done?
    Regards
    Sara

  • Getting WSDL in reverse order after server upgrade from WAS 5.1 to 6.1

    Hi All.I need your help.I am working in RAD 7.0 .After the IBM websphere upgrade from 5.1 to 6.1 i am getting the wsdl generated exactly in reverse order(in 6.1) as compared to that in version 5.1.Can you tell me wat can be the issue .We are using glue-pro jar for generating the WSDL.is there any setting in RAD or WAS which need to be changed so that i can get WSDL in old format.
    Any suggestion or opinion is welcomed.

    Does it matter? And if so, why does it matter?
    From my previous experience with Glue you don't want to have it generate WSDLs anyway. It's not very good at it at all, generates WSDL that are full of errors.
    Better to write your own WSDL and tell Glue to use those.

  • How can I get this thru SQL ?

    Hi,
    I am having following sample data
    NUMRUB FORMAT
    1 X(02)
    2 9(02)
    3 9(08)
    4 X(20)
    5 9(01)
    6 X(03)
    7 9(1)
    8 X(02)
    9 9(02)
    I want output in following way
    NUMRUB FORMAT NewFormat Start Position
    1 X(02) 2 1
    2 9(02) 2 3
    3 9(08) 8 5
    4 X(20) 20 13
    5 9(09) 9 33
    6 X(03) 3 41
    7 9(1) 1 44
    8 X(02) 2 45
    9 9(02) 2 47
    How can I get this thru SQL ?
    Pl guide me.
    thanks & regards
    PJP

    SQL> create table mytable (numrub,format)
      2  as
      3  select 1, 'X(02)' from dual union all
      4  select 2, '9(02)' from dual union all
      5  select 3, '9(08)' from dual union all
      6  select 4, 'X(20)' from dual union all
      7  select 5, '9(09)' from dual union all
      8  select 6, 'X(03)' from dual union all
      9  select 7, '9(1)' from dual union all
    10  select 8, 'X(02)' from dual union all
    11  select 9, '9(02)' from dual
    12  /
    Tabel is aangemaakt.
    SQL> select numrub
      2       , format
      3       , to_number(regexp_replace(format,'(X|9)\((.*)\)','\2')) "NewFormat"
      4       , nvl
      5         ( sum(to_number(regexp_replace(format,'(X|9)\((.*)\)','\2')))
      6           over (order by numrub rows between unbounded preceding and 1 preceding)
      7         , 0
      8         ) + 1 "Start Position"
      9    from mytable
    10   order by numrub
    11  /
        NUMRUB FORMA  NewFormat Start Position
             1 X(02)          2              1
             2 9(02)          2              3
             3 9(08)          8              5
             4 X(20)         20             13
             5 9(09)          9             33
             6 X(03)          3             42
             7 9(1)           1             45
             8 X(02)          2             46
             9 9(02)          2             48
    9 rijen zijn geselecteerd.Regards,
    Rob.

  • To get WSDL files of ICI

    Hi Guys
    does anyone know how to get wsdl definitions of ICI interface (3.07 the best)?
    I only found this forum
    ICI Wsdl and XSD files
    Regards
    Radek

    i received it from icc at sap

  • Can get sound thru i tunes but not on internet

    can get sound thru i tunes but not on internet

    You are welcome. 
    As best as I can recall, the MacBook will try to remember your settings. 
    You can test it out - just hook your machine up to the TV and use it as a second display.  Try some sounds.
    -charlie

  • TS2755 last nite i updated my iphone 4s with telus to 7.0.4  now i cannot send or get pictures thru text messages

    Last nite i updated iphone 4s to 7.0.4   with telus in canada   now i cannot send or get pictures thru texts messages??????

    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. DONT CONNECT YOUR DEVICE TO A COMPUTER.
    then try it again

  • Airports (extreme&express 5th generation) can't get IP thru DHCP service

    Hey everyone!
    I got 2 devices Airport Extreme and Airport Express (5th generation both). I got the same problem on each of them. And i got additional ancient router D-Link DIR-300.
    So, i got a cable in my appartments from my ISP and it works simple thru DHCP.
    D-LINK DIR-300 works perfect with my ISP, getting IP very fast thru DHCP and works smooth, and i can easily renew ip thru web interface of this device if i want.
    Both of my apple network devices can't get IP from my ISP by DHCP service. And if I use Renew Lease button in Airport Utility it doesn't react at all. But they are easily getting IP thru DHCP service from D-LINK.
    I've connected ISP cable directly to my Macbook Pro and it works perfect aswell. DHCP server of my ISP assigns correct IP to my mac.
    What's wrong with my apple devices? Or any other suggestion how to solve problem?

    Hello Joel Goldsmith. Welcome to the Apple Discussions!
    Although you have already performed a power recycle, did you enough time to allow the modem to "recognize" the MAC address of the new device (AEBSn) connected to it?
    Modem/Router Power Recycling - Quick
    o Power-off the DSL modem, AEBSn, & computer(s); Wait at least 5 minutes.
    o Power-on the DSL modem; Wait at least 5 minutes.
    o Power-on the AEBSn; Wait at least 5 minutes.
    o Power-on the computer(s)
    If this fails to get the modem to "recognize" the Internet router, then try the "Full" version.
    Modem/Router Power ReCycling - Full
    o Power-off the DSL modem, AEBSn, & computer(s). (Wait at least 30 minutes. If possible, leave the modem off overnight.)
    o Power-on the DSL modem; Wait at least 30 minutes.
    o Power-on the AEBSn; Wait at least 5 minutes.
    o Power-on the computer(s)

  • Getting wsdl file from behind a firewall

    Hi All,
    I need to create a webservice using a WSDL file. The client is behind a proxy/firewall which requires authentication.
    I am using a service factory:
    ServiceFactory factory = createServiceFactoryInstance();
    factory.createService(wsdlLocation, serviceName);
    The call is made through the proxy, because i set the http.proxyHost and http.proxyPort properties.
    Now, the proxy server does not allow the client to get this WSDL without authorization. I have the username and password, but I don't know how to insert them to the request for the wsdl file.
    Does anyone know how to do it?
    Thanks!

    hi,
    Please ensure that u can go through firewall to port 3306.
    Try telnet mysql.server_ip 3306. I no response contact fw admin to allow your ip to go thru.
    daniel

  • Web Service Error get wsdl via URL

    Hi,
    I try to import a Webservcie as new  Model (via URL), but I get everytime following error:
    Feb 28, 2007 10:55:59 AM com.sap.ide.webdynpro.ui.service.ServicesUI [Thread[main,5,main]] ERROR: Internal error
       Plugin name: Web Dynpro Model Editor
       Plugin ID  : com.sap.ide.webdynpro.modeleditor
       Class      : com.sap.ide.webdynpro.modeleditor.wizards.model.creation.PageRenameWS
       Method     : loadNameSpacesAndModelClasses
       Message    : Cannot load NameSpaces and ModelClasses
    Class Path: D:/SAP/JDT/eclipse/plugins/com.sap.tc.cmi/_cmi_api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.exception/lib/exception.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/boot.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/iq-lib.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/util.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/webservices_lib.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/webservices.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/webservices_api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/tc_sec_wssec_lib.jar;D:/SAP/JDT/eclipse/plugins/com.sap.dictionary.runtime/lib/SapDictionaryTypesRuntime.jar;D:/SAP/JDT/eclipse/plugins/com.sap.dictionary.services/lib/SapDictionaryTypeServices.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.logging/lib/logging.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.logging/lib/loggingStandard.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.logging/lib/jARM.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.xmltoolkit/lib/sapxmltoolkit.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/activation.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jaxm-api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/saaj-api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jaxrpc-api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jnet.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jsse.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/mail.jar;D:/SAP/JDT/eclipse/plugins/com.sap.tc.webdynpro.model.webservice/lib/_webdynpro_model_webservice.jar;
    java.home: D:\j2sdk1.4.2_06
    proxyHost: http://webproxy.deutsche-boerse.de
    proxyPort: 8080
    nonProxyHosts: http://sapdephr.deutsche-boerse.de:50000|sapdephr.deutsche-boerse.de:50000|
    Temporary Directory: c:\temp\
    WSDL URL: http://sapdephr.deutsche-boerse.de:50000/WSCheckUser/Config1?wsdl
       Exception  : com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for WSDL URL http://sapdephr.deutsche-boerse.de:50000/WSCheckUser/Config1?wsdl  and service factory configuration {DynamicProxy.ClassPath=D:/SAP/JDT/eclipse/plugins/com.sap.tc.cmi/_cmi_api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.exception/lib/exception.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/boot.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/iq-lib.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/util.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/webservices_lib.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/webservices.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/webservices_api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/tc_sec_wssec_lib.jar;D:/SAP/JDT/eclipse/plugins/com.sap.dictionary.runtime/lib/SapDictionaryTypesRuntime.jar;D:/SAP/JDT/eclipse/plugins/com.sap.dictionary.services/lib/SapDictionaryTypeServices.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.logging/lib/logging.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.logging/lib/loggingStandard.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.logging/lib/jARM.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.xmltoolkit/lib/sapxmltoolkit.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/activation.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jaxm-api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/saaj-api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jaxrpc-api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jnet.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jsse.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/mail.jar;D:/SAP/JDT/eclipse/plugins/com.sap.tc.webdynpro.model.webservice/lib/_webdynpro_model_webservice.jar;, DynamicProxy.HTTPPassword=, DynamicProxy.INetProxy.Bypass=http://sapdephr.deutsche-boerse.de:50000|sapdephr.deutsche-boerse.de:50000|, DynamicProxy.INetProxy.Port=8080, DynamicProxy.HTTPUserName=, DynamicProxy.Javac.path=D:\j2sdk1.4.2_06, DynamicProxy.TempDir=c:\temp\, DynamicProxy.INetProxy.Host=http://webproxy.deutsche-boerse.de}
    com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for WSDL URL 'http://sapdephr.deutsche-boerse.de:50000/WSCheckUser/Config1?wsdl ' and service factory configuration '{DynamicProxy.ClassPath=D:/SAP/JDT/eclipse/plugins/com.sap.tc.cmi/_cmi_api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.exception/lib/exception.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/boot.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/iq-lib.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/util.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/webservices_lib.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/webservices.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/webservices_api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.engine.webservices/lib/tc_sec_wssec_lib.jar;D:/SAP/JDT/eclipse/plugins/com.sap.dictionary.runtime/lib/SapDictionaryTypesRuntime.jar;D:/SAP/JDT/eclipse/plugins/com.sap.dictionary.services/lib/SapDictionaryTypeServices.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.logging/lib/logging.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.logging/lib/loggingStandard.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.logging/lib/jARM.jar;D:/SAP/JDT/eclipse/plugins/com.tssap.sap.libs.xmltoolkit/lib/sapxmltoolkit.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/activation.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jaxm-api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/saaj-api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jaxrpc-api.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jnet.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/jsse.jar;D:/SAP/JDT/eclipse/plugins/com.sap.ext.libs.webservices/lib/mail.jar;D:/SAP/JDT/eclipse/plugins/com.sap.tc.webdynpro.model.webservice/lib/_webdynpro_model_webservice.jar;, DynamicProxy.HTTPPassword=, DynamicProxy.INetProxy.Bypass=http://sapdephr.deutsche-boerse.de:50000|sapdephr.deutsche-boerse.de:50000|, DynamicProxy.INetProxy.Port=8080, DynamicProxy.HTTPUserName=, DynamicProxy.Javac.path=D:\j2sdk1.4.2_06, DynamicProxy.TempDir=c:\temp\, DynamicProxy.INetProxy.Host=http://webproxy.deutsche-boerse.de}'
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:413)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.readOperationsFromWSDL(WSModelInfo.java:371)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadataInternal(WSModelInfo.java:341)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadata(WSModelInfo.java:305)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadata(WSModelInfo.java:315)
         at com.sap.ide.webdynpro.modeleditor.wizards.model.creation.PageRenameWS.loadNameSpacesAndModelClasses(PageRenameWS.java:435)
         at com.sap.ide.webdynpro.modeleditor.wizards.model.creation.ModelDialog.nextPressed(ModelDialog.java:105)
         at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:316)
         at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:423)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.jface.window.Window.runEventLoop(Window.java:583)
         at org.eclipse.jface.window.Window.open(Window.java:563)
         at com.sap.ide.webdynpro.modeleditor.ModelEditorCallback.createModel(ModelEditorCallback.java:52)
         at com.sap.ide.webdynpro.service.modeleditor.ModelService.createModelWithUI(ModelService.java:70)
         at com.sap.ide.webdynpro.service.modeleditor.ServiceWithUI.createModel(ServiceWithUI.java:49)
         at com.sap.ide.webdynpro.tsmodel.application.provider.ModelNodeProvider.createUniqueName(ModelNodeProvider.java:55)
         at com.tssap.selena.impl.model.elements.EntityImpl.createChildEntityUin(EntityImpl.java:936)
         at com.tssap.selena.impl.model.elements.EntityImpl.createChildEntity(EntityImpl.java:502)
         at com.sap.ide.webdynpro.tsmodel.application.actions.CreationAction.runInternal(CreationAction.java:76)
         at com.sap.ide.webdynpro.tsmodel.application.actions.CreationAction.access$000(CreationAction.java:24)
         at com.sap.ide.webdynpro.tsmodel.application.actions.CreationAction$1.run(CreationAction.java:51)
         at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1595)
         at com.sap.ide.webdynpro.tsmodel.application.actions.CreationAction.run(CreationAction.java:57)
         at com.sap.ide.webdynpro.projectbrowser.actions.PBCreateModelAction.run(PBCreateModelAction.java:95)
         at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:224)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1407)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
         at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:286)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:795)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:602)
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.WebserviceClientException: GenericServiceFactory initialization problem. Could not load web service model. See nested exception for details.
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:149)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.<init>(DGenericServiceImpl.java:49)
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:71)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:411)
         ... 53 more
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Proxy Generator Error. Problem with WSDL file parsing. See nested message.
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:182)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.generateProxyFiles(DGenericServiceImpl.java:146)
         ... 56 more
    Caused by: com.sap.engine.lib.xml.util.NestedException: IO Exception occurred while parsing file:Cannot connect to http://sapdephr.deutsche-boerse.de:50000/WSCheckUser/Config1?wsdl , passing via http proxy: http://webproxy.deutsche-boerse.de:8080, used user to connect: : http://webproxy.deutsche-boerse.de -> java.io.IOException: Cannot connect to http://sapdephr.deutsche-boerse.de:50000/WSCheckUser/Config1?wsdl , passing via http proxy: http://webproxy.deutsche-boerse.de:8080, used user to connect: : http://webproxy.deutsche-boerse.de
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1038)
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadWSDLDocument(WSDLDOMLoader.java:1125)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.generateProxy(ProxyGenerator.java:178)
         ... 57 more
    Caused by: java.io.IOException: Cannot connect to http://sapdephr.deutsche-boerse.de:50000/WSCheckUser/Config1?wsdl , passing via http proxy: http://webproxy.deutsche-boerse.de:8080, used user to connect: : http://webproxy.deutsche-boerse.de
         at com.sap.engine.services.webservices.tools.WSDLDownloadResolver.resolveEntity(WSDLDownloadResolver.java:161)
         at com.sap.engine.services.webservices.wsdl.WSDLDOMLoader.loadDOMDocument(WSDLDOMLoader.java:1018)
    I have configured in preferences the proxy. (Try it also without a proxy) . If I call the url in IE - the IE shows the wsdl.
    Thanks Stefan

    Hai Stefan,
    Down load the WSdl from Navigator, and then browse it for the web service model.
    NWDS 04s giving some problem while creating webservice model via URL.
    Regards,

  • Get WSDL

    Hello,
    My question is: How I can get access to the WSDL from an external System (without copy and paste). The external system want to access all WSDL Definitions of every message defined (or imported) in XI.So we don't want to see all WSDLs from the webservices.
    Best way would be if there are standard interfaces to the XI repository. If there are not standard interfaces may be there are function modules in ABAP or some interfaces in Java?
    I found a lot of Blogs and threads, but nothing what really answers my question, the blog and threads have all been from 2005. So I think there have been a lot of changes in this area with XI 7.0 and 7.10?
    Does anybody can help me?
    Thanks for you help!
    Markus

    Hi,
    Check this link,
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/d4c23b95c8466ce10000000a114084/content.htm
    http://help.sap.com/saphelp_nwce10/helpdata/en/45/635dd614d73bdbe10000000a
    1553f7/content.htm
    Regards,
    AKshay.
    Reward points if find useful.

  • GET WSDL METHOD

    hello everybody, I am trying to use a web service method and get outprint in xml. My codes are;
    package webpazar;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.xml.soap.Node;
    import webpazar.BankalariVerResponse.BankalariVerResult;
    public class NewServlet extends HttpServlet {
        protected void processRequest(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            response.setContentType("text/html;charset=UTF-8");
            PrintWriter out = response.getWriter();
            try {
             webpazar.Service service = new Service();
             out.println(service.getWSDLDocumentLocation());
             out.println("<br/>");
           BankalariVerResult banks=service.getServiceSoap().bankalariVer();
           out.println(banks);
           Node kod=(Node) service.getServiceSoap().bankalariVer();
           out.println("<br/>");
           out.println(kod);
           }}the output is:
    http://www.globalodemenoktasi.com/webservis/odeme/service.asmx?WSDL
    webpazar.BankalariVerResponse$BankalariVerResult@115fbb0 The web Service URL: http://www.globalodemenoktasi.com/webservis/odeme/service.asmx?WSDL
    when I call the BankalariVer() method, the program must print a xml file like;
    <banka adi="Se?iniz.." kodu="0" /><banka adi="Yap? Ve Kredi Bankas?"
    kodu="13814" /><banka adi="Garanti Bankas?" kodu="13828" /><banka
    adi="Finansbank" kodu="13842" /><banka adi="Vak?fbank" kodu="13885" /><banka
    adi="HSBC" kodu="13899" /><banka adi="?? Bankas?" kodu="13786" /><banka
    adi="Akbank" kodu="13800" />
    But I could not get this printout. How can I get this xml printout??
    Also I got some codes from .NET, but xmlNode cannot work in javawebpazar.Service servis = new webpazar.Service();
    XmlNode bankalar = servis.BankalariVer(); help help help????? please
    Edited by: center15 on Aug 13, 2008 5:31 AM

    public static void main(String[] args) {
            try {
                ahmet.mehmet.as.Service service = new ahmet.mehmet.as.Service();
                ahmet.mehmet.as.ServiceSoap port = service.getServiceSoap();
                ahmet.mehmet.as.BankalariVerResponse.BankalariVerResult result = port.bankalariVer();
                System.out.println("Result = "+result);output is:
    Result = ahmet.mehmet.as.BankalariVerResponse$BankalariVerResult@14866
    I would like to get list of banks
    the bankalariVer methods is:
    package ahmet.mehmet.as;
    import javax.xml.bind.annotation.XmlAccessType;
    import javax.xml.bind.annotation.XmlAccessorType;
    import javax.xml.bind.annotation.XmlRootElement;
    import javax.xml.bind.annotation.XmlType;
    * <p>Java class for anonymous complex type.
    * <p>The following schema fragment specifies the expected content contained within this class.
    * <pre>
    * <complexType>
    *   <complexContent>
    *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    *     </restriction>
    *   </complexContent>
    * </complexType>
    * </pre>
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "")
    @XmlRootElement(name = "BankalariVer")
    public class BankalariVer {
    }bankalariVerResponse method is:
    package ahmet.mehmet.as;
    import java.util.ArrayList;
    import java.util.List;
    import javax.xml.bind.annotation.XmlAccessType;
    import javax.xml.bind.annotation.XmlAccessorType;
    import javax.xml.bind.annotation.XmlAnyElement;
    import javax.xml.bind.annotation.XmlElement;
    import javax.xml.bind.annotation.XmlMixed;
    import javax.xml.bind.annotation.XmlRootElement;
    import javax.xml.bind.annotation.XmlType;
    * <p>Java class for anonymous complex type.
    * <p>The following schema fragment specifies the expected content contained within this class.
    * <pre>
    * <complexType>
    *   <complexContent>
    *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    *       <sequence>
    *         <element name="BankalariVerResult" minOccurs="0">
    *           <complexType>
    *             <complexContent>
    *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    *                 <sequence>
    *                   <any/>
    *                 </sequence>
    *               </restriction>
    *             </complexContent>
    *           </complexType>
    *         </element>
    *       </sequence>
    *     </restriction>
    *   </complexContent>
    * </complexType>
    * </pre>
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "bankalariVerResult"
    @XmlRootElement(name = "BankalariVerResponse")
    public class BankalariVerResponse {
        @XmlElement(name = "BankalariVerResult")
        protected BankalariVerResponse.BankalariVerResult bankalariVerResult;
         * Gets the value of the bankalariVerResult property.
         * @return
         *     possible object is
         *     {@link BankalariVerResponse.BankalariVerResult }
        public BankalariVerResponse.BankalariVerResult getBankalariVerResult() {
            return bankalariVerResult;
         * Sets the value of the bankalariVerResult property.
         * @param value
         *     allowed object is
         *     {@link BankalariVerResponse.BankalariVerResult }
        public void setBankalariVerResult(BankalariVerResponse.BankalariVerResult value) {
            this.bankalariVerResult = value;
         * <p>Java class for anonymous complex type.
         * <p>The following schema fragment specifies the expected content contained within this class.
         * <pre>
         * <complexType>
         *   <complexContent>
         *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
         *       <sequence>
         *         <any/>
         *       </sequence>
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * </pre>
        @XmlAccessorType(XmlAccessType.FIELD)
        @XmlType(name = "", propOrder = {
            "content"
        public static class BankalariVerResult {
            @XmlMixed
            @XmlAnyElement(lax = true)
            protected List<Object> content;
             * Gets the value of the content property.
             * <p>
             * This accessor method returns a reference to the live list,
             * not a snapshot. Therefore any modification you make to the
             * returned list will be present inside the JAXB object.
             * This is why there is not a <CODE>set</CODE> method for the content property.
             * <p>
             * For example, to add a new item, do as follows:
             * <pre>
             *    getContent().add(newItem);
             * </pre>
             * <p>
             * Objects of the following type(s) are allowed in the list
             * {@link Object }
             * {@link String }
            public List<Object> getContent() {
                if (content == null) {
                    content = new ArrayList<Object>();
                return this.content;
    }How can I get the list of banks???
    my web service manager give the .net codes, they dont know java

  • Unable to get notifications thru BPEL process

    Hi,
    I am trying to develop a simple email notification process thru BPEL.
    I have set up a notification to send to my email id.
    While execution, I am getting the following error (process is in faulted state)
    InvokeNotificationService (faulted)
    [2006/06/09 06:45:58] "{http://xmlns.oracle.com/ias/pcbpel/NotificationService}NotificationServiceFault" has been thrown. less
    <NotificationServiceFault>
    <part name="faultInfo" >
    <faultInfo>500 'HELO batoleti-PC': command not understood. </faultInfo>
    </part>
    </NotificationServiceFault>
    the ns_email.xml content is:
    <EmailAccounts xmlns="http://xmlns.oracle.com/ias/pcbpel/NotificationService">
    <EmailAccount>
    <Name>Default</Name>
    <GeneralSettings>
    <FromName>Oracle BPM</FromName>
    <FromAddress>[email protected]</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>dlsun4254.us.oracle.com</SMTPHost>
    <SMTPPort>21</SMTPPort>
    </OutgoingServerSettings>
    <IncomingServerSettings>
    <Server>dlsun4254.us.oracle.com</Server>
    <Port>21</Port>
    <Protocol>IMAP</Protocol>
    <UserName>bpm1</UserName>
    <Password ns0:encrypted="false" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">welcome</Password>
    <UseSSL>false</UseSSL>
    <Folder>Inbox</Folder>
    <PollingFrequency>1</PollingFrequency>
    <PostReadOperation>
    <MarkAsRead/>
    </PostReadOperation>
    </IncomingServerSettings>
    </EmailAccount>
    Can you please help me on how to reslove the NotificationServiceFault?
    Thanks in advance.
    Bala.

    you use the wrong port ..
    21 is for telnet, smtp is 25
    hth clemens

  • Why can't I get sound thru internet?

    I get sound in iTunes but not viewing a video on the internet.  I have MacBook Pro.

    Devigndesign wrote:
    The disks are 5.1 Dolby digital. And I use Hand break that has apply tv 2 sound defaults
    that doesn't mean that they have been converted correctly though.
    for an appletv file, you should have 2 audio tracks (track 2 should be AC3 pass-thru with the 5.1 audio track).
    if you are sure they have been converted correctly, then make sure you have "digital audio" enabled on the appletv (either "auto" or "on).

Maybe you are looking for

  • Is it possible to buy an external casing into which a backplane ready hard

    Is it possible to buy an external casing into which a backplane ready hard drive will slot? After I set up a RAID 0 array, I will have a spare 640GB hard drive ( the original Apple one), and I was wondering whether it is possible to purchase an empty

  • Workflow Administrator issue

    Hi, ebs 11.5.8 We successfully cloned from prod to dev. DEV been up for ~1 month. We now have an issue with the Workflow. I log in as sysadmin -> system administrator responsibility then workflow -> Global Preferences In the html page that opens it s

  • OID and Server 2008 R2 AD

    Hi, We have recently decided to upgrade our Active Directory Domain to Server 2008 R2. We use Oracle OID 10g but are experiencing problems pointing OID at a 2008 R2 domain controller because only 250 results are returned. Below is a message we have r

  • Records Missed in PSA from R/3 for BI Content Data Sources

    Hi Friends,                       I'm extracting the data for the data target "0CCA_C11" using the data sources 0CO_OM_CCA_9 & 0CO_OM_CCA_1, but for the data source 0CO_OM_CCA_1, it is showing 25000 records in R/3 while checking in RSA3 transaction,

  • Writing on Ellipsis 8

    What kind of writing instruments are there? I am very interested in taking notes in Evernote and the rubber tipped instrument I have now is too blunt. Any suggestions?