Using plus sign in custom internet media types (MIME types)

The procedure for registering new suffixes is now defined in http://trac.tools.ietf.org/html/draft-ietf-appsawg-media-type-regs-14#section-6. “+json” will be defined in a separate document; right now: http://trac.tools.ietf.org/html/draft-ietf-appsawg-media-type-suffix-regs-02#section-3.1 And no, you are not supposed to have multiple subtypes there.

Importing xsd into wsdl

You have a couple of problems here. First, the XSD has an issue where an element is both named or referenced; in your case should be referenced. Change: <xsd:element name=”stock” ref=”Stock” minOccurs=”1″ maxOccurs=”unbounded”/> To: <xsd:element name=”stock” type=”Stock” minOccurs=”1″ maxOccurs=”unbounded”/> And: Remove the declaration of the global element Stock Create a complex type declaration for a … Read more

WCF using computer name instead of domain name when viewing MyService.svc?wsdl

WCF 4.0 has solved this issue in some instances with a new config option that use Request Headers: <behaviors> <serviceBehaviors> <behavior name=”AutoVaultUploadBehavior”> <useRequestHeadersForMetadataAddress> <defaultPorts> <add scheme=”https” port=”443″ /> </defaultPorts> </useRequestHeadersForMetadataAddress>