Search Result

Collapse
17 results in 0.0025 seconds.
Keywords
Members
Tags
wcf
  •  

  • zied
    started a topic windows vista and HTTPS

    windows vista and HTTPS

    SALAM.
    i'm working with windows vista. i made w RESTFUL web service using WCF serviceLibrary and it works correctly, but now i want secur it with a SSL certificate.
    i made a certeficate using Win32oppenSSL and when i want o add this certificate to my port using netshe commande
    Code:
    netsh http add sslcert ipport=0.0.0.0:8733 certhash=a7efc21d67c296c4e89af8fce1bab194aa4e8c5f appid={b62379fe-d0ac-420e-85a8-9cbbc8704eb8}
    ...
    See more | Go to post

  • consuming a WCF RESTFUL web service with sencha touch 1

    SALAM all.
    i'm doing a cross mobile app using sencha touch 1 and i want to consume a RESTFUL web service that i made it with WCF.
    the link ti my web service is "localhost: 8732/log/log/admin/pass/admin" and in my sencha touch 1 app, i add this code
    Code:
    Ext.Ajax.request({
       url: 'http://localhost:8732/log/log/admin/pass/admin',
      success : function(response, opts) {
          var obj = eval('('+
    ...
    See more | Go to post

  • How to identify the WCF host from service implementation?

    I have a WCF environment hosted on a windows service. I have two hosts (one on TCP and another on NamedPipes). Don’t be alarmed about the multiple hosts – this is a messaging engine and hosts are mounted dynamically based on the configuration. No matter how many types of hosts I have, there is only one service implementation. Now the problem is, when my service implementation is invoked by an incoming call, how do I identify whether it was from...
    See more | Go to post

  • Passing Values from Silverlight Application to Outlook Add-in

    Hi,

    I have created an Outlook addin and added Ribbon designer to add buttons, from there I have created an instance for Internet Explorer and from that IE instance I navigated to my Silverlight aspx page .

    Code:

    Code:
    public  SHDocVw.InternetExplorer IE1 ; 
          public void IEInstanceCls() 
          { 
              IE1 = new SHDocVw.InternetExplorer(); 
              object Empty
    ...
    See more | Go to post

  • Converting Windows tcp listner service to WCF service

    Hi, i m new to wcf , i need to convert the windows tcp listener to wcf service.

    The tcp listener just receives data from client and insert that into database .

    i googled for two days still i didn't get any idea , can any one help me with some sample codes

    Thanks,

    Rajiv
    See more | Go to post

  • WCF error- The XML page cannot be displayed

    Hello friends,

    I am new to WCF. Now working with a learning example. My environment is VS2008, .Net framework 3.5, Hosted in Windows sever 2003 R2.

    The following code i have in a Service.svc file-
    Code:
    <% @ServiceHost Language=C# Debug="true" Service="MyWCFService" CodeBehind="~/App_Code/Service.cs" %>

    But when i test it in browser, browser returns...
    See more | Go to post

  • vasantsiva
    started a topic WCF Servicehost in windows service
    in .NET

    WCF Servicehost in windows service

    I create WCF service library and i test that working fine on WCF Test client(default) . when i host the WCF service in winodws service that time i got the error. I am using windows XP sp3, .Net 3.5 and Visual Studio 2008. i got error.

    Error opening host : HTTP could not register URL "http://+:8731/WCFServerDLL/Service1/." Your process does not have access rights to this namespace (see "http://go.microsoft.co m/fwlink/?LinkId=70353"...
    See more | Go to post

  • Windows Service Hosting WCF Objects over SSL (https) - JSON Error Handling won't work

    I will first show the code that works in a non-ssl (http) environment. This code uses a custom json error handler, and all errors thrown, do get bubbled up to the client javascript.

    Code:
                // Create webservice endpoint
                WebHttpBinding binding = new WebHttpBinding();
    
                ServiceEndpoint serviceEndPoint = new ServiceEndpoint(ContractDescription.GetContract(Type.GetType(svcHost.serviceContract
    ...
    See more | Go to post
    Last edited by Niheel; Jun 9 '10, 08:07 PM. Reason: added code tags to code :)

  • Validating XML Document using XSD in WCF Service

    I writing a WCF service to get a xml file as input and validate it against a schema. I have done the validation part. But I don't know how to write method in WCF service to get xml file as input.

    Below i have given code i have written in WCF service.

    Code:
      public string CheckXMLData(XmlDocument xmlDoc)
            {
                TheXsd = "Customer.xsd";
    
                //load schema
    ...
    See more | Go to post

  • C# generated proxy method different than original Java service method

    Hi,

    I have a Java service that has the following method signature:

    Code:
           @WebMethod(operationName = "getContactList")
            public MyListClass getContactList(@WebParam(name = "myList") MyListClass myList) throws IllegalArgumentException {
                    return myList;
            }
    
    public class MyListClass implements Serializable{
    List<ContactOD> innerList;
    ...
    See more | Go to post

  • jcatubay
    started a topic error when sending large data in wcf
    in .NET

    error when sending large data in wcf

    I have a function that returns a list more than 200000 objects and the object has 37 fields. I added the wcf as a web reference so i dont have to add any configuration item in my web apps config file. WCF works when I only have small amount of data. SInce I did'nt add the config file, how can I allow the wcf to send large amount of data. It sems to be timing out. When I debugged my wcf I'm getting this error "An error occurred while receiving...
    See more | Go to post

  • Swys
    started a topic Return DataTable from WCF service to PHP client
    in .NET

    Return DataTable from WCF service to PHP client

    Hi all!

    I am creating a WCF service (my first). I am going to have a variety of clients, one of which is a PHP client.

    Now, I've already established that I can return a normal string to the PHP client as wellas an array of strings. I also want to return a DataTable object in such a way that the PHP client will be able to understand the DataTable. Thus far, when a DataTable is returned to the PHP client, the result...
    See more | Go to post

  • Swys
    started a topic WCF Caller not authenticated
    in .NET

    WCF Caller not authenticated

    Hi all,

    Just to clarify in the beginning, I am a beginner at WCF. I've created a web service (using C# and WCF and wshttpbinding). When this service is hosted in IIS on my local network, I am able to access it fine with a simple client I wrote. But when I host it on a remote server (running Windows Web Server 2008) I get an exception when trying to call one of the methods:

    SecurityNegotia tionException - The caller...
    See more | Go to post

  • tompar
    started a topic Polling in WCF service
    in .NET

    Polling in WCF service

    I am new to WCF. I need to add some polling logic which is basically going to call a method every few mintues to check for new data on a share. How do I do this in a WCF service?
    See more | Go to post

  • Call back from web service using Async return?

    Hi,

    I have a web service that I call from a winforms application. This web service can be cancelled, or completed,and then will call back the win forms application with a response (i.e.
    Code:
    e.Complete == true
    etc).

    This functionality is provided in the VS2005 tools for writing the web service (WCF) so the method called is <MethodName>Asy nc(); which fires off <methodName>Com pleted event when it is done.
    ...
    See more | Go to post
Working...