Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / Web Services / April 2007

Tip: Looking for answers? Try searching our database.

2.0 framework calling WCF service

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Greg - 15 Apr 2007 03:08 GMT
I have just created a WCF service that is using WShttpbasic and all is good
when another .net 3.0 application consumes it. However, I have legacy apps
that must use this service and are running on .net 2.0 and are housed on
Windows 2000 servers.

I have been unable to find ANY info on how to do this, or if it is even
possible.
I find it hard to believe that WCF would not be able to be consumed by 2.0
applications.

Please help!
Cowboy (Gregory A. Beamer) - 19 Apr 2007 19:46 GMT
WS-Basic Profile? Download WSE 3.0 from MSDN.

As far as contacting WCF services, there is no problem. It is merely a WSDL
endpoint (technically more, but you can create the "web" reference to a WCF
service). The only potential gotcha I can think of right now is if you are
using of the new encoding methods. If you are using SOAP, you should be
fine.

Signature

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*********************************************
Think outside the box!
*********************************************

>I have just created a WCF service that is using WShttpbasic and all is good
> when another .net 3.0 application consumes it. However, I have legacy apps
[quoted text clipped - 7 lines]
>
> Please help!
Greg - 20 Apr 2007 21:06 GMT
I am able to add the web reference to the project; however when I try to
implement it all that I have to choose from is the Cass object, Interface,
eventargs, and eventhandler.
Example:
OracleService.BasicEmployee;
OracleService.GetFullEmployeeByEmployeeIDCompletedEventArgs;
OracleService.GetFullEmployeeByEmployeeIDCompletedEventHandler;
OracleService.WSHttpBinding_IBasicEmployee
(Service = web reference)

In testing I have tried using Service.WSHttpBinding_IBasicEmployee , However
I just get a time out message.
Example:
OracleService.WSHttpBinding_IBasicEmployee proxy = new
WSETesting.OracleService.WSHttpBinding_IBasicEmployee();
OracleService.BasicEmployee[] arrayemployee =
proxy.GetEmployeeByEmployeeID("12356987");
OracleService.BasicEmployee;
OracleService.GetFullEmployeeByEmployeeIDCompletedEventArgs;
OracleService.GetFullEmployeeByEmployeeIDCompletedEventHandler;
OracleService.WSHttpBinding_IBasicEmployee
foreach (OracleService.BasicEmployee emp in arrayemployee)
{
 string me = emp.FirstName;
}

I have also tried to run the wsdl.exe I received the following error:
Microsoft (R) Web Services Description Language Utility
[Microsoft (R) .NET Framework, Version 2.0.50727.42]
Copyright (C) Microsoft Corporation. All rights reserved.

Warning: This web reference does not conform to WS-I Basic Profile v1.1.

SOAP 1.1 binding was not found: WS-I's Basic Profile 1.1 consists of
implementation
guidelines that recommend how a set of core Web services specifications
should
be used together to develop interoperable Web services. For the 1.1 Profile,
those specifications are SOAP 1.1, WSDL 1.1, UDDI 2.0, XML 1.0 and XML Schema.

For more details on the WS-I Basic Profile v1.1, see the specification
at http://www.ws-i.org/Profiles/BasicProfile-1.1.html.

Warning: one or more optional WSDL extension elements were ignored.
Warnings were encountered. Review generated source comments for more details.

Listed below is the Service code:
(Employee.cs)
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;
using System.Runtime.Serialization;

namespace OracleServices.OracleContracts
{
   [DataContract()]
   public class BasicEmployee
   {

       private string _employeeID;
       private string _firstName;
       private string _lastName;
       private string _middleName;
       private string _suffix;
       private string _supervisorID;
       private string _email;
       private string _title;
       private string _ssn;
       private string _workPhone;
       private string _companyCode;
       private string _companyDesciption;
       private string _locationcode;
       private string _dateofbirth;
       private string _employmentDate;
       private string _employeeTerminationDate;
       private string _terminationAppliedDate;

       [DataMember(Order = 0)]
       public string EmployeeID
       {
           get { return _employeeID; }
           set { _employeeID = value; }
       }

       [DataMember(Order = 1)]
       public string FirstName
       {
           get { return _firstName; }
           set { _firstName = value; }
       }

       [DataMember(Order = 2)]
       public string LastName
       {
           get { return _lastName; }
           set { _lastName = value; }
       }

       [DataMember(Order = 3)]
       public string MiddleName
       {
           get { return _middleName; }
           set { _middleName = value; }
       }

       [DataMember(Order = 4)]
       public string Suffix
       {
           get { return _suffix; }
           set { _suffix = value; }
       }

       [DataMember(Order = 5)]
       public string SupervisorID
       {
           get { return _supervisorID; }
           set { _supervisorID = value; }
       }

       [DataMember(Order = 6)]
       public string Email
       {
           get { return _email; }
           set { _email = value; }
       }

       [DataMember(Order = 7)]
       public string Title
       {
           get { return _title; }
           set { _title = value; }
       }

       [DataMember(Order = 8)]
       public string SSN
       {
           get{return _ssn;}
           set { _ssn = value; }
       }

       [DataMember(Order = 9)]
       public string WorkPhone
       {
           get { return _workPhone; }
           set { _workPhone = value; }
       }

       [DataMember(Order = 10)]
       public string CompanyCode
       {
           get { return _companyCode; }
           set { _companyCode = value; }
       }

       [DataMember(Order = 11)]
       public string CompanyDescription
       {
           get { return _companyDesciption; }
           set { _companyDesciption = value; }
       }

       [DataMember(Order = 12)]
       public string LocationCode
       {
           get { return _locationcode; }
           set { _locationcode = value; }
       }

       [DataMember(Order = 13)]
       public string DateOfBirth
       {
           get { return _dateofbirth; }
           set { _dateofbirth = value; }
       }

       [DataMember(Order = 14)]
       public string EmploymentDate
       {
           get { return _employmentDate; }
           set { _employmentDate = value; }
       }

       [DataMember(Order = 15)]
       public string EmployeeTerminationDate
       {
           get { return _employeeTerminationDate; }
           set { _employeeTerminationDate = value; }
       }

       [DataMember(Order = 16)]
       public string TerminationAppliedDate
       {
           get { return _terminationAppliedDate; }
           set { _terminationAppliedDate = string.Empty; }
       }

       public BasicEmployee(string employeeID, string firstName, string
lastName,
                               string middleName, string suffix, string
supervisorID,
                               string email, string title, string ssn,
string workNumber,
                               string companyCode,string
companyDescription,string locationCode,string dateofbirth,
                               string employmentDate, string
employeeTerminationDate, string terminationAppliedDate)
       {
           EmployeeID = employeeID;
           FirstName = firstName;
           LastName = lastName;
           MiddleName = _middleName;
           Suffix = suffix;
           SupervisorID = supervisorID;
           Email = email;
           Title = title;
           SSN = ssn;
           WorkPhone = workNumber;
           companyCode = companyCode;
           CompanyDescription = companyDescription;
           LocationCode = locationCode;
           DateOfBirth = dateofbirth;
           EmploymentDate = employmentDate;
           EmployeeTerminationDate = employeeTerminationDate;
           TerminationAppliedDate = terminationAppliedDate;

       }
   }
}
(IBasicEmployee.svc)
using System;
using System.Collections.Generic;
using System.Text;
using System.ServiceModel;

namespace OracleServices.OracleContracts
{
   [ServiceContract(Namespace = "http://EMSC.OracleServices")]
   
   public interface IBasicEmployee
   {
       [OperationContract()]
       
       List<BasicEmployee> GetEmployeeByEmployeeID(string employeeID);

       [OperationContract()]
       List<BasicEmployee> GetEmployeeByLastName(string lastName);

       [OperationContract()]
       List<BasicEmployee> GetEmployeeByLastName_FirstName(string lastName,
string firstName);

       [OperationContract()]
       List<BasicEmployee> GetEmployeeBySSN(string ssn);

       [OperationContract()]
       List<BasicEmployee> GetDirectReportsBySupervisorID(string
supervisorID);

       [OperationContract()]
       List<BasicEmployee> GetSupervisorByEmployeeID(string supervisorID);

       [OperationContract()]
       List<FullEmployee> GetFullEmployeeByEmployeeID(string employeeID);

       [OperationContract()]
       List<BasicEmployee> GetEmployeeByLastName_4SSN(string lastName,
string ssn);
   }
}

> WS-Basic Profile? Download WSE 3.0 from MSDN.
>
[quoted text clipped - 15 lines]
> >
> > Please help!
Cowboy (Gregory A. Beamer) - 23 Apr 2007 20:16 GMT
This could be a disparity between the Microsoft world and Oracle, based on
the objects you are talking about. Oracle TechNet might have some options,
as might support.microsoft.com. Neither is extremely good at helping the
other, however, so I am not sure how much this will yield. Will see if I
find anything.

Signature

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*********************************************
Think outside the box!
*********************************************

>I am able to add the web reference to the project; however when I try to
> implement it all that I have to choose from is the Cass object, Interface,
[quoted text clipped - 298 lines]
>> >
>> > Please help!
Greg - 20 Apr 2007 21:08 GMT
Also, here are the bindings stated in the web config of the WCF service.
<service name="OracleService" behaviorConfiguration="returnFaults">
                <endpoint contract="OracleServices.OracleContracts.IBasicEmployee"
binding="wsHttpBinding"/>
       <endpoint
contract="OracleServices.OracleContracts.IBasicEmployeeEmploymentStatus"
binding="wsHttpBinding"/>
       <endpoint
contract="OracleServices.OracleContracts.IBasicEmployeePersonalAddress"
binding="wsHttpBinding"/>
       <endpoint
contract="OracleServices.OracleContracts.IEmployeeLocations"
binding="wsHttpBinding"/>
       <endpoint
contract="OracleServices.OracleContracts.ILinkOracleMessage"
binding="wsHttpBinding"/>
            </service>

> WS-Basic Profile? Download WSE 3.0 from MSDN.
>
[quoted text clipped - 15 lines]
> >
> > Please help!
Greg - 20 Apr 2007 21:10 GMT
I have been able to consume this WCF service as long as the binding is set to
BasicHTTP.

What do i need to do to consume the WCF service with the bindings set to
wsHttpBinding. (i have WS 3.0 installed)
If you can point me to some codesamples this would be appreciated.

> WS-Basic Profile? Download WSE 3.0 from MSDN.
>
[quoted text clipped - 15 lines]
> >
> > Please help!

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.