Cant add Web Reference for web service

Hi all.
I cant seem to add a web reference to an outside web service.
I have tested some code in Visual Studio and it all works fine, but
now Im importing the code into my dreamweaver website.
I have went to "Window" menu and then "Components", and along
the right hand side the components tab opens. It has a drop down
list with "Web Services" in it. Underneath it, it says press the
"+" button to add the service. But there is no plus button! I have
looked at manuals, and it does show a "+" sign beside the drop down
box, but its not on my Dreamweaver!
I am using dreamweaver 8. This is a full product as it is at
my work.
Any help would be great.
Thanks, Paul.

Hi all.
Further to my previous post, I have noticed that my
colleagues install of dreamweaver seems to have this "+" sign in
the components panel, so I have tried to add the web service to the
page using his machine.
But I now come up with a different problem! I click on the
"Add using WSDL" from the drop down lost at top, but when I click
on the drop down for the "Proxy Generator" there is nothing in it.
When I go into the menu to edit the proxy's, I can see the one for
ASP.net VB which is the one I would be using, but when I click on
"Done" and go back to the page with the WSDL URL and the proxy,
nothing is showing in the proxy generator!
Can anyone shed light on this?

Similar Messages

  • CANT ACTIVATE WEB SERVICES

    just bought a photosmart d110 when i try to activate web services on my printer it tells me to update and when i hit ok it tells me it cant connect to server

    hello Fmu,  hope you are doing well and welcome to the forum;
    Hope you are doing great and to learn that you are having this issue.
    Without having an understand of the configuration that you are using is virtually impossible you me or anybody else in the forum to properly assist you, I will suggest for you to read this post; POST and then please include as much information as possible to make it possible for others to actually have a chance to formulate a theory and provide you with suggestions.
    There are some general steps that I can recommend to you in the mean time for you to try;
    - Set an static IP Address for your printer, This should be done outside the DHCP range (the range that your router uses to automaticly assing leasses to the clients or devices connection to the network).  You will have to do your research to see what is the procedure to accomplish this in your OS, Router and other peripheral in this case most probably your printer.
    - Use Google public DNS Servers 8.8.8.8 and alternate 8.8.4.4 (the reason that I recommend this is because I have use them all the time and have not seem conflict of any kind)
    - Make sure that your printer have the most current firmware and software available for them (remember most of the updates in firmware and software are to FIX ISSUES and sometimes are to add functionality).
    - Make sure that your Operating system is updated (To a lesser extend this are also updated to FIX ISSUES although some times can create them as well, mostly they are update to patch security issues) it may be important.
    The steps aforementioned will help establish that is not any of this circumstances creating the issue you are experiencing and is a more isolated issue. And if this is the case please post again with all relevant information please I reiterate this will give all visitor of the forum a good chance of the to understand and provide suggestions to you.
    Hope this helps;
    RobertoR
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • In NWDS add web service server from ECC 6.0 through WSIL

    Hello,
    I'm trying to list the web services present on the ECC 6.0 SAP through the Web Service Navigator in NWDS.
    We add the address: http://abapserver:1080/sap/bc/srt/wsil
    I get an error from NWDS:
    Error connecting to server '...' (http://abapserver:1080/sap/bc/srt/wsil)
    org.eclipse.swt.SWTException: Invalid thread access
    The service wsil is active in the SICF transaction...
    Thanks for your help,
    Tanguy

    Hi Athol,
    Thanks very much, your answers are very helpful.
    To use SharePoint as SAP DMS for document management. We have depend on the 3rd party products like iNet.DM from ERP.Link or Duet Enterprise and separate licenses required for products?
    Without this 3rd party products, it is not possible to use SharePoint as SAP DMS?
    What is best and cost effective way of achieving this requirement?
    Thanks and Regards,
    Venky.

  • Add web service proxy generator

    Hi, when I try to add a web service the proxy generator dropdown menu shows the text "Edit proxy generator list".  When I click on it it displays several proxy generators including .net vb, the one I want.  When I click done it returnes to the previous list box but does not list any choices.  As suggested in another forum I reloaded Dreamweaver, but this did not help.  Any ideas?
    Thanks, Tom

    Hi Tom,
    I' needed to create a proxy for a web service some days ago too. First think you should know is that web services support for .NET in DW CS4 has been removed. Now there's only web services components for ColdFusion.
    Anyway I will explain how I created mine...
    I tryed to create the proxy with DW CS3. First think I've noticed is that it ask to install Microsoft .NET Framework SDK.
    After installing last version of the .NET SDK I've noticed that DW CS3 doesn't recognized it. What finally did was to look at the edit proxy generator list, there you can see the commands used to create the proxy:
    wsdl /l:VB $$WSDLFILE
    vbc /t:library /r:System.dll,System.Data.dll,System.Web.Services.dll,System.XML.dll *.vb
    The first one creates the proxy source, the second compiles it into a DLL.
    I've just opened the DSK command prompt and used this commands manually. This way I finally got the proxy DLL compiled.
    It's my first time trying to consume a web service with .NET and it's really hard and confusing to do all this stuff. Now I'm stucked with my proxy DLL, but I can import it in my .NET code.
    If you can solve the next step I would be pleased to know.
    Regards!

  • Cant create Web services using netbeans 5.5

    I tried lots of tutorials to create a simple web service but i couldn't make it to run.
    I am using
    IDE :NB 5.5.
    App servers: SJSAS9 and Apache Tomcat 5.5.17
    JDK 1.5 available
    Apart from these do i have to use any other plug in.
    i need to continue with this sample application.
    http://www.netbeans.org/kb/55/websvc-jax-ws.html
    please help this is the complete code, and giving error once i tried to run the web service.
    package org.me.calculator;
    import javax.jws.WebMethod;
    import javax.jws.WebParam;
    import javax.jws.WebService;
    @WebService()
    public class CalculatorWS
         * Web service operation
        @WebMethod
        public int add(@WebParam(name = "i") int i, @WebParam(name = "j") int j)
           int k = i + j;
            return k;
    Error is:
    init:
    deps-module-jar:
    deps-ear-jar:
    deps-jar:
    library-inclusion-in-archive:
    library-inclusion-in-manifest:
    compile:
    compile-jsps:
    do-dist:
    dist:
    In-place deployment at D:\NetBeans\WS\CalculatorWSApplication\build\web
    Start registering the project's server resources
    Finished registering server resources
    moduleID=CalculatorWSApplication
    deployment started : 0%
    Deploying application in domain failed; com.sun.tools.apt.Main.process(Lcom/sun/mirror/apt/AnnotationProcessorFactory;[Ljava/lang/String;)I
    D:\NetBeans\WS\CalculatorWSApplication\nbproject\build-impl.xml:453: Deployment error:
    The module has not been deployed.
    See the server log for details.
    BUILD FAILED (total time: 1 second)
    Please help, i am really stucked here.

    which app server did u deploy yr web service into?
    SJSAS9 or Tomcat?I am using SJSAS9.
    did u receive any java exceptions? can u attach them
    here if u have them..?
    I am getting this under output -> Sun java system application server tab
    Exception occured in J2EEC Phase
    java.lang.NoSuchMethodError: com.sun.tools.apt.Main.process(Lcom/sun/mirror/apt/AnnotationProcessorFactory;[Ljava/lang/String;)I
    at com.sun.tools.ws.wscompile.CompileTool.buildModel(CompileTool.java:605)
    at com.sun.tools.ws.wscompile.CompileTool.run(CompileTool.java:538)
    at com.sun.tools.ws.util.ToolBase.run(ToolBase.java:56)
    at com.sun.tools.ws.util.WSToolsObjectFactoryImpl.wsgen(WSToolsObjectFactoryImpl.java:44)
    at com.sun.enterprise.webservice.WsUtil.runWsGen(WsUtil.java:1820)
    at com.sun.enterprise.webservice.WsUtil.genWSInfo(WsUtil.java:2089)
    at com.sun.enterprise.deployment.backend.ModuleDeployer.loadDescriptors(ModuleDeployer.java:396)
    at com.sun.enterprise.deployment.backend.WebModuleDeployer.deploy(WebModuleDeployer.java:155)
    at com.sun.enterprise.deployment.backend.ModuleDeployer.doRequestFinish(ModuleDeployer.java:160)
    at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:169)
    at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:95)
    at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:871)
    at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:266)
    at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:739)
    at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:174)
    at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:210)

  • Bug: JDeveloper 10.1.2.1.0 (1913) Cant create Web Service

    Hello,
    I have several java files that I usually right click on to create J2EE web services. Today I cannot create web services for any of the files, as I receive a nullpointer exception. I checked that all classes in the project compile. Specifically, I have a [main] method in the PatientWS file for which I wish to create a web service, and the class runs just fine. Based on another post, it seems the problem is with web.xml. I have deleted web.xml and it continues to get re-created so maybe it is not it. Any help will be appreciated. Please let me know if there is any other information that I need to provide.
    java.lang.NullPointerException
         at oracle.jdevimpl.webservices.generator.WARGenerator.addToClassesGroup(WARGenerator.java:280)
         at oracle.jdevimpl.webservices.generator.WARGenerator.generate9iASWarFile(WARGenerator.java:261)
         at oracle.jdevimpl.webservices.generator.WARGenerator.generateWarFile(WARGenerator.java:187)
         at oracle.jdevimpl.webservices.generator.WARGenerator.generate(WARGenerator.java:162)
         at oracle.jdevimpl.webservices.generator.JAXRPCGenerator.generateNonJAXJavaService(JAXRPCGenerator.java:1852)
         at oracle.jdevimpl.webservices.generator.JAXRPCGenerator.generateNonJAXService(JAXRPCGenerator.java:1544)
         at oracle.jdevimpl.webservices.generator.JAXRPCGenerator.generateService(JAXRPCGenerator.java:223)
         at oracle.jdeveloper.webservices.JAXRPCSvcModel.saveEdit(JAXRPCSvcModel.java:1613)
         at oracle.jdeveloper.webservices.JAXRPCJavaModel.createWebServiceFromClass(JAXRPCJavaModel.java:2852)
         at oracle.jdevimpl.webservices.WebServicesAddin.handleEvent(WebServicesAddin.java:1663)
         at oracle.ide.IdeAction.performAction(IdeAction.java:649)
         at oracle.ide.IdeAction$1.run(IdeAction.java:857)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Oracle IDE     10.1.2.18.38
    Business Components Version     10.1.2.18.73
    UML Modelers Version     10.1.2.16.83
    Versioning Support     10.1.2.16.83
    WebDAV Support Version     10.1.2.16.83
    Struts Modeler Version     10.1.2.6.27
    Designer Generators Framework     10.1.2.7.68
    CVS Client Version     (CVSNT) 2.0.51d (client/server)
    ADF UIX     2.2.20
    java.version     1.4.2_06
    java.home     C:\jdev1012\jdk\jre
    java.vm.name     Java HotSpot(TM) Client VM
    java.vm.vendor     Sun Microsystems Inc.
    java.vm.version     1.4.2_06-b03
    user.language     en
    user.region     <no value assigned>
    user.name     Mobile
    user.home     C:\Documents and Settings\Mobile
    user.dir     C:\jdev1012\jdev\bin
    os.name     Windows XP
    os.version     5.1
    os.arch     x86
    http.proxyHost     <no value assigned>
    http.proxyPort     <no value assigned>
    http.nonProxyHosts     <no value assigned>
    ide.patches     
    ide.user.dir

    I got the issue resolved by deleting all deployment descriptors from the project and the web.xml.
    Thanks,
    Frank

  • Cant Call Web service Through OIM adapter

    Hi, I am trying to call A web service using A Axis2 client in Java , but i get a error saying "input message for a required feild is null".
    However if i try to use a non Axis2 client then it works fine ..
    Please suggest any solutions?

    I will suggest you first test your OIM adapter code into your IDE or WL server:
    If you try using your Eclipse or JDeveloper can you call WS? Into JDeveloper you can tes using: Right click into WS class and 'Creating a WS Client' or just running a 'Test WebSevices' option. Just simulate using JDeveloper+OIM codes and libs it should work.
    Right now I am doing this above and I am able to test my OIM WS code fine.
    Another way is deploy your WS OIM code into WebLogic. Using WebLogic 'development mode' you should see two links: A service called 'Test Client' that you can test it and second one with just WSDL link.
    I hope this helps,
    Thiago Leoncio

  • Cant enable web services

    Just out of the box, with my Photosmart 6520, I cannot connect to web  services, even though the network sees my printer.   Plus even though the download fails, it locks up the screen and escape out.  Any ideas?
    This question was solved.
    View Solution.

    I understand you are getting unable to connect to server error message on your printer. I would first unplug router and printer for about 1 minute. I would plug router up first then printer. I would then try to enable web services. If not successful and you get same error message. I would follow these steps.
    1. Obtain your printer's IP address
    a. This can be done by pressing the wireless icon on printer.
    2. Enter the printer's IP address in a browser.
    3. Select the network tab at the top of the page.
    4. On the left select networking.
    5. Select Network Address (IP)
    6. Select Manual DNS Server
    a. Manual Preferred DNS should read 8.8.8.8
    b. Alternate DNS Server should read. 8.8.4.4
    7. Select apply you might get a warning just select okay.
    Let me know if this helps.

  • Cannot add web service security

    I use cxf to create web services and decide to use weblogic web service security policy.
    However, after deploying to weblogic 12c, I cannot see the security part in WSDL
    Where is wrong?
    import weblogic.jws.Policies;
    import weblogic.jws.Policy;
    @Component
    @WebService(name="appServiceSecurity",
              serviceName="appServiceSrcSecurity",
              targetNamespace="http://com.ws.su"               
    @Policies({
                   @Policy(uri="policy:Auth.xml", direction=Policy.Direction.inbound),
                   @Policy(uri="policy:Sign.xml"),
                   @Policy(uri="policy:Encrypt.xml")
    @SOAPBinding(style = SOAPBinding.Style.DOCUMENT,
              use=SOAPBinding.Use.LITERAL,
              parameterStyle=SOAPBinding.ParameterStyle.WRAPPED
    public class AppServiceSecurity{
    ...............

    Thank you. But I still get error: java.lang.ClassCastException: weblogic.j2ee.descriptor.wl.WeblogicApplicationBeanImpl cannot be cast to weblogic.j2ee.descriptor.wl.WeblogicWebAppBean if I deploy this web application from a folder.
    I export this web application as a war file using MyEclipse. However, after deploying this war file to weblogic 12c, I get error:
    Root cause of ServletException.
    weblogic.servlet.jsp.CompilationException: Failed to compile JSP /BZWeb/index1.jsp
    index1.jsp:2:18: The include file was not found.
    <%@ include file="/common/taglibs.jsp"%>
    ^-------------------^
    index1.jsp:2:18: The include file was not found.
    <%@ include file="/common/taglibs.jsp"%>
    ^-------------------^
    However, taglibs.jsp is in the common folder.
    How to modify the context root?
    Thanks.

  • Ebcc find from UDDI, add web service

    I get the following error when I try to find a web service from an UDDI:
    java.net.ConnectException: Operation timed out: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
    It seems as though the connection settings or the E-Business Control Center have an error somewhere. Where can I find the problem and resove it?

    error creating a web service client from th WSDL document (soamanager)
    Used NWDS 7.1 and generated client from wsdl. Created a jar file from this project and used in portal component successfully.

  • How to add Web Service Policy?

    Hi ;
    My project calling a web service. This web services secured with username&password and i don't call it correctly. I need to pass this identiy information to web service. How to adding this policy information?

    Re: Custome Header - Service Properties - WSDL
    Edited by: melothony on 13.Şub.2012 12:02 link edited

  • How to activate Business Add-In (BAdI) for Enterprise Service

    Hi,
    I have connected enterprise service
    Find Production Order by Work Centre
    external/technical Name: ProductionOrderSimpleByWorkCentreQueryResponse_In
    Namespace: http://sap.com/xi/APPL/SE/Global
    SAP Software Component Version: ESA ECC-SE 605
    Internal Name: ECC_PRODUCTIONORDERSWQR
    SAP Library - Enterprise Services for SAP ERP
    http://es-workplace.sap.com/socoview(bD1lbiZjPTAwMSZkPW1pbg==)/render.asp?packageid=DE0426DD9B0249F19515001A64D3F462&id=…
    from our ECC system to our PI 7.1 and did first tests.
    I'm getting response to my requests from the ECC system.
    But in the response, there are only the production order IDs for the requested work centre.
    I suppose that the BAdI PORD_SE_PRODUCTIONORDERSWQR, mentioned in service description, has to be activated for the service in the ECC system, to get all the other optional production order elements, defined in the service response message type.
    Am I right?
    Which steps in the ECC backend are neccessary to activate a BAdI for an enterprise service?
    Regards
    Roland

    Salegram,
    BADi is not provide us functionality for data upload for Annual PF / Pension Report.
    BADi is using for some add in our business transaction.
    just explore tx se18 ans se19.
    Amit.

  • Cant add Crystal References in VS 2008 project

    Hi
    I have a VS 2008 environment. I have three dll references I want to add to my project and I dont see them in .NET or COM tabs in Add Reference dialog. Weird, I can see them good in other projects (references to GAC assemblies) of an existing project, but once I delete them, I cant add them again because they dont show up in the Add reference. How do I make them show up?
    My dev environment is: Windows Server 2008 64bit, VS 2008. If I can add the reference, I am done  with my project. Dll's I want to add are:
    CrystalDecisions.CrystalReports.Engine
    CrystalDecisions.ReportSource
    CrystalDecisions.Shared
    I looked at this link and he didnt explain how he added the references in registry. Does anyone know about this?
    http://channel9.msdn.com/forums/TechOff/451042-VS2008-cannot-add-reference-while-developing-on-x64-hardware/

    I believe you confusion is coming from not understanding how the product works instead of an issue with the product itself.
    Your combining Crystal Reports Developer software, crystal runtime distributable, crystal .NET runtime all into one sentence and talking about installation order leads me to believe this is the case.
    On your development machine you would have VS.NET installed, it comes with the free version of Crystal included (along with its .NET runtimes).  If you want to integrate the stand alone version (say Crystal 2008) and use its .NET runtimes in your app you need to install it after VS is installed to allow it to integrate.  VS.NET can't integrate to a product that is already installed as it would never look.
    The crystal runtime distributable should never be installed on your development machine.  You use the distributable to deploy the Crystal runtimes onto a server where you want to deploy your app. You just need to make sure you are using the runtimes that match the ones you are using in your app.
    I hope that clears up some of the confusion.
    Jason

  • How to add web service reference in Bex analyser

    Hi,
    I would like to get a quick suggestion from you all about adding a new webservice into SAP Business Explorer. As per the screen shot there is already two URL's in existent and further I would like to add few more URL's into it. I would be really greatfull if you could help me out!!
    Thanks in Advance...

    Hi Vineet,
    Thanks for your reply...I tried manually but the history for that new URL is not maintained. So each time when I login I have to manually enter it.

  • I cant enable web services on the printer

    office jet pro 8600 plus
    syst window 7

    Hello,
    The first thing I would do is follow step six in this document to set a static IP: http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02817031&cc=us&dlc=en&lc=en&product=4023246&tmp...
    When it askes for DNS information, enter in Google's DNS. Preferred DNS = 8.8.8.8 Alt DNS = 8.8.4.4
    If that does not help, if you could provide me with the following information it would help me out. First, who is your ISP( Internet Service Provider, i.e. Comcast, AT&T, Verizon, ect.)? Second, who is the maker of your router? Lastly, what is the model number and firmware version of your router?
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

Maybe you are looking for

  • PO with FREE item

    HI expert,               i want to make a Po with free item. when i ticked on free the net price colume is blank and condition is also not appearing but i want give a value in net price colume so kindly suggest there is any config change is required

  • If i purchase a i phone 5 in usa will it work in uk

    I am on holiday in usa and have ben told i phone 5 wont work in uk is this true

  • SCCM 2012 Reporting Code Returns Same Value For Total Number Of Required Updates Per Computer

    I'm trying to make a custom report in SCCM 2012 R2 with SQL 2012 since Microsoft took out the ability to list the number of updates needed per computer. This was in WSUS reporting but is not in SCCM reporting. I've made a custom report for this but c

  • Info spoke and Info hub

    Hi, What is an infospoke and infohub? How they are related to each other? Is there any benefits for using the Infospoke and Infohub?. Please update me on this. Thanks and Regards Satish

  • Novell Welcome portal says 'Virtual Office' is not installed, but v1.6 is.

    Subject straight forward, NW 6.5SP3 server, installed VO 1.6, and it seems accesible, however when you go to the base portal welcome page, it says the product's not installed. Any ideas? FYI, it previously had 1.3 installed, and I was in the process