3
Answers

Communication problem with self-hosted service

nombre apellidos

nombre apellidos

13y
2.4k
1

Hello,
I created a wcf service and a wcf client following the microsoft tutorial.

http://msdn.microsoft.com/es-es/library/ms734712.aspx


When I test the communication on the same machine, everything works fine, but when I run the server on a different machine (192.168.10.100) and the client from the machine (192.168.50.20) does not work.
I tried to run svcutil to create a new proxy and configuration file as follows:

svcutil.exe http://192.168.10.100:8000/WCFServicios/MiServicio /config:app.config /out:generatedProxy.cs /language:cs 

but I get the following error:
Intentando descargar metadatos de 'http://192.168.10.100:8000/WCFServicios/MiServicio'  con WS-Metadata Exchange o DISCO. Microsoft (R) Service Model Metadata Tool [Microsoft (R) Windows (R) Communication Foundation, versión 4.0.30319.1] © Microsoft Corporation. Reservados todos los derechos.  Error: No se pueden obtener metadatos de http://192.168.10.100:8000/WCFServicios/MiServicio 

How I can do to make communication between services?

Greetings and thanks

Answers (3)
2
Sanwar Ranwa

Sanwar Ranwa

NA 1.1k 1.6k 7y
IIF is simplify case statement 
iif is faster than case statement 
Accepted
2
Vipin Mittal

Vipin Mittal

NA 699 3.7k 7y
thax ur answer is really helpful....
2
Altaf Ansari

Altaf Ansari

NA 1.4k 27.4k 7y

The switch statement is easy to edit as it has created the separate cases for different statements whereas, in nested if-else statements it become difficult to identify the statements to be edited.

Key Differences Between if-else and switch

  1. Expression inside if statement decide whether to execute the statements inside if block or under else block. On the other hand, expression inside switch statement decide which case to execute.
  2. You can have multiple if statement for multiple choice of statements. In switch you only have one expression for the multiple choices.
  3. If-esle statement checks for equality as well as for logical expression . On the other hand, switch checks only for equality.
  4. The if statement evaluates integer, character, pointer or floating-point type or boolean type. On the other hand, switch statement evaluates only character or a integer datatype.
  5. Sequence of execution is like either statement under if block will execute or statements under else block statement will execute. On the other hand the expression in switch statement decide which case to execute and if you do not apply a break statement after each case it will execute till the end of switch statement.
  6. If expression inside if turn outs to be false, statement inside else block will be executed. If expression inside switch statement turn out to be false then default statements is executed.
  7. It is difficult to edit if-else statements as it is tedious to trace where the correction is required. On the other hand it is easy to edit switch statements as they are easy to trace.
Next Recommended Forum