i have an application, in which i have an EntityModel.
i have a DomainService which talks to this EntityModel.
i am using simple LinqToEntitiesDomainService for this application, not .svc extension files.
On Silverlight (client), i am able to get/put the data through this service.
Now my question is:
I want to see the wsdl of hosted RIA Domain service in my application.
How can i see the wsdl for this service? (as we see the wsdl for .svc service in internet explorer)
I am using VS2008 sp1 studio, .net3.5 and RIA - july ctp.
You need to expose your service. You can see http://blogs.msdn.com/b/brada/archive/2010/03/29/silverlight-4-ria-services-ready-for-business-exposing-wcf-wsdl-services.aspx for more details.
Related
I have this Windows Service that calls WebApi service method. On Exception thrown in this method I need to notify part(or all) of my MVC Clients. All three(Windows Service project,WEB API project, MVC project) projects are under same solution on same server. Is this possible with SignalR or something else?
Windows service and MVC client can be understood and Signalr will work for same.
WebApi to webapi notify is somewhat confusing unless those are two differently hosted (at least different port or webapp) there is not need to use signalr there.
I create a client in Domino to consume a web service that works with SOAP 1.2 and has HTTPBinding.
The client generation tool for Domino Designer Web services an error is displayed when trying to generate reporting that the SOAP accepted version is 1.1.
I decided to create the client with CXF framework through tool wsdl2java. In an agent I used these classes to consume the web service, however the below error was displayed. I think it's because of the SOAP version, but I'm not sure.
com.sun.xml.internal.ws.protocol.soap.MUTube getMisUnderstoodHeaders
INFO: Element not understood={http://www.w3.org/2005/08/addressing}Action
Also generated a jar of classes generated by wsdltojava and imported to another agent, but the error below is displayed.
java.lang.UnsupportedClassVersionError: JVMCFRE003 bad major version; class=, offset=6
The question is, no way consume a web service with SOAP 1.2 in Domino only supports up to version 1.1?
Thanks a lot!
I don't believe that Domino's web service consumer supports SOAP 1.2 at this time. You might be able to do what you need with an agent though - here's one way: How can I call a SOAP 1.2 Web service from a LotusScript agent?
In fact there is no way to natively consume a web service with soap version 1.2. There are already several requests from IBM to upgrade the SOAP version. What I did, was to develop a new layer through a new web service with the version SOAP 1.1, which internally calls the web service with the SOAP version 1.2;
I have a exe application written in VB6, now I want to make it support SOAP web service, so other clients can access the data it provided. I know vb.net can support SOAP web service well, I do not want to upgrade it to vb.net, how can I realize SOAP web service in VB6?
Hi I need to use REST web service but not getting how to start. Although I have checked different articles but there is no proper example which tells flow of REST SERVER and REST CLIENT. Is there any good example link which tells how a REST server will be created with php and how this web service will be called with which technique. I need web service to show customers and then update customers using web service as well. I need to create my own web service for my application so I need to create both Rest server and Rest client.
Thanks
Crinch
REST isn't a technology, it's a style of software architecture
If you want some concrete examples and a simple framework to get started, try cherrypy, which is a minimal web framework written in python.
This should get you started with a web server that can help you adhere to REST design principles.
You Can Try PHP REST Data services https://github.com/chaturadilan/PHP-Data-Services
I need to create a restfull service web using visual studio 2010. Can anyone tell me how to do?
Personally, I would start by creating a new ASP.NET MVC Project and creating an MVC application that had only JSON returned by the controllers.
I did hear that the WCF team recently added some new stuff around REST that you might want to check out as well...but the MVC Project would still be my choice. You can check out the WCF HTTP Project at Codeplex to see if it interests you:
WCF Community Site - WCF HTTP