//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:2.0.50727.3074 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace ws_java_ee5_jboss_client.DateServiceProxy { [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] [System.ServiceModel.ServiceContractAttribute(Namespace="http://ejb.eefive.diegopacheco.blogspot.com/", ConfigurationName="DateServiceProxy.DateService")] public interface DateService { [System.ServiceModel.OperationContractAttribute(Action="", ReplyAction="*")] [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)] [return: System.ServiceModel.MessageParameterAttribute(Name="return")] string getDate(); } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] public interface DateServiceChannel : ws_java_ee5_jboss_client.DateServiceProxy.DateService, System.ServiceModel.IClientChannel { } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")] public partial class DateServiceClient : System.ServiceModel.ClientBase, ws_java_ee5_jboss_client.DateServiceProxy.DateService { public DateServiceClient() { } public DateServiceClient(string endpointConfigurationName) : base(endpointConfigurationName) { } public DateServiceClient(string endpointConfigurationName, string remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public DateServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public DateServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } public string getDate() { return base.Channel.getDate(); } } }