web-services

Debug Visual Studio 2005 Web Service from Visual Studio 2008 Client...

I have a .NET Web Service running in VS2005 and a client that consumes it running in VS2008. Is there any way, while debugging the client, I can step into the code of the service? Both are running locally. Many thanks for your time, P ...

conversion http to https

Hi this is my site, mysite I want to move my site from HTTP TO HTTPS , Also i want to redirect my site when user type 1.IF THEY TYPE LIKE happy.in To https://happylife.in 2.IF THEY TYPE LIKE http://happy.in To https://happylife.in 3.IF THEY TYPE LIKE www.happy.in To https://happylife.in What things i have to ...

ASP Web Service Not Working

...

iPhone XML SOAP requests or .NET Web Services

I've been trying to to consume SOAP requests (.NET web services) and have found some pretty good tools that I wanted to share: 1) http://grabalife.com/2009/10/19/using-net-web-services-and-dataset-objects-in-your-iphone-app/ Really easy clean way to perform all the call needed for consuming the services. 2) http://code.google.com/p/m...

retrieving documents from sharepoint via web services using jquery

Hi, I am trying to develop a mobile application which can interact with a MOSS Site via web services. i expect it to be be able to; 1) retrieve documents (pdf, doc, docx, excel) 2) retrieve reporting services reports in a PDF or excel form. i will be using either phonegap or rhomobile to develop this app and i know that i can consume ...

WCF Web Service chnage wsdl name and targetNamespace

All, I'm a little new to WCF over IIS but have done some ASMX web services before. My WCF service is up and running but the helper page generated by the web service for me has the default names, i.e. the page that says: You have created a service. To test this service, you will need to create a client and use it to call the service. Y...

WCF - Single Web Service Endpoint Using Partial Classes

A project I am working on requires a structure as such: {BasePrefix}/Application/{id}/Security/Users/{userId} {BasePrefix}/Application/{id}/Objects/{objectId} etc. Application.svc would be end up being my WCF Web Service. I tried to convince them to do: {BasePrefix}/Security/Application/{id}/Users/{userId} This would allow me to ha...

View XML to be sent over web reference via Visual Studio

Could someone tell me how to view the XML to be sent via web reference while debugging Visual Studio (i.e. see the actual XML with all tags too?) I'm having a "There is an error in this XML Document (4, 56)." error. Any help would be much appreciated. ...

How do I add the ws security elements in my WSDL?

How do I add the ws security elements in my WSDL? I want to use the ws security authentication in the WSDL so that my clients can generate soap requests containing the wsse headers. Is there a tool like altova xmlspy to do this or is it done manually? ...

persist image or video into voldemort

I am working on my web service, and required to persist some image (jpg whatever) and video(wmv) into memmory. Just want to use single_node_cluster to feel voldemort. Can anybody give me a hint of the configuration and sample code of voldemort? I mean how to configure the value type in stores.xml? protobuf? java-serialization? Any samp...

Capture SOAP Envelope (C# WinForm calling .ASMX external vendor service)

I'm calling a third-party vendor's external SSL web service from a .NET 3.5 client (WinForm). The vendor has asked me to send them the Soap Header to verify why things aren't working. I used WireShark to capture packets, but since the web service is SSL, the packets are encrypted. Is there a few magic lines of code to add to my C# cl...

WCF: I want to use an authentication token like the Google map API. How can I learn more about this?

I want to allow access to a WCF service to only those requests that contain a developer key. This is similiar to how the Google Maps API works. Register for a developer key and include that key in your requests. Anyone can get a key. How you get a key is undecided but is being discussed. For now, we'll email you a key. The service is u...

Weather API for web app

Hi, In the weather.com site it has forecast for 10 days. For example, in this url: http://www.weather.com/weather/narrative/GRXX0004 I cannot seem to find a feed for that kind of data. Could I pull a feed for each one of those days? Is there something I am missing? How could I easily parse data for 10 days? Thank you! ...

Doing broadcasts with http server push?

We are designing a system with a PC base station and 100 Android mobiles communicating over WiFi. They will use XLM-RPC as the method of mobile to base station communication. However, sometimes the base station needs to broadcast a message to all mobiles. Should we use "http server push" for this, ie, have the base station leave the conn...

Building highly scalable web services

My team and I are in the middle of developing an application which needs to be able to handle pretty heavy traffic. Not facebook level but in the future I would like to be able to scale to that without massive code re-writes. My thought was to modularise out everything into seperate services with their own interfaces. So for example mes...

gridview datasource issue

I am calling a webservice as follows.I have to display name, description and url in the gridview using this webservice. using sdi.amiller_v_vista; sdi.amiller_v_vista.DDCControl proxy1 = new sdi.amiller_v_vista.DDCControl(); sdi.amiller_v_vista.DDCReturnGetAll ret = proxy1.GetAllDDCs(x, y); foreach (sdi.amiller_v_vista.DDCInfo2 di2 in...

POST REST-Web-Service Call for iPhone application

Hello Friends, Anyone have idea how to pass value from iPhone application to the REST-Webservice using POST method.? ex: http://mysite.com/services/updatescore/uid=1234&score=12658 I want to send this information using POST request. - How can I do it.? Thanks. ...

org.apache.cxf.interceptor.Fault: Unmarshalling Error: Duplicate default namespace declaration.

Not sure why I am receiving this after the webservice ran and I am trying to return back to my client side bean. The webservice works perfectly outside of my webserver in SoapUI. org.apache.cxf.interceptor.Fault: Unmarshalling Error: Duplicate default namespace declaration. at [row,col {unknown-source}]: [1,321] at org.apache.cxf...

What exactly happens when I call a web service method using PHP::SOAP?

Say I have a simple client/server scenario with one method: // client code $client = new SoapClient("service.wsdl"); $result = $client.getPi(); ... // server code function getPi(){ return 3.141; } $server = new SoapServer("service.wsdl"); $server.addFunction("getPi"); $server.handle(); Am I right in thinking that when the client...

.NET asmx web services: serialize object property as string property to support versioning

I am in the process of upgrading our web services to support versioning. We will be publishing our versioned web services like so: http://localhost/project/services/1.0/service.asmx http://localhost/project/services/1.1/service.asmx One requirement of this versioning is that I am not allowed to break the original wsdl (the 1.0 wsdl). ...