User tomasr - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T10:22:47Zhttp://stackoverflow.com/feeds/user/10292http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1880149/encryption-decryption-using-x509-certificate-in-biztalk-custome-pipeline-componen/1882900#18829000Answer by tomasr for Encryption/Decryption using X509 certificate in biztalk custome pipeline componenttomasr2009-12-10T18:08:32Z2009-12-10T18:08:32Z<p>What kind of encryption are you looking for? Are you looking for raw RSA encryption, or any specific message format?</p>
<p>Out of the box, BizTalk only supports S/MIME encryption using the SMIME encoder/decoder component; it might be useful depending on exactly your format is.</p>
<p>As for how to create a custom pipeline component from scratch to do it, I recommend first starting with the <a href="http://www.codeplex.com/btsplcw" rel="nofollow">Pipeline Component Wizard</a>. It will take care of most of the boilerplate code.</p>
<p>I do have a <a href="http://winterdom.com/2006/04/symmetricencryptiondecryptionpipelinecomponents" rel="nofollow">sample</a> on writing custom encryption pipeline components, though my specific sample uses symmetric encryption and not RSA (but should give you a clue as to how to implement this). The code for these components can be found <a href="http://github.com/tomasr/cryptopipeline" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1882766/net-wcf-receiving-sending-xml/1882858#18828583Answer by tomasr for .Net WCF - Receiving & Sending XMLtomasr2009-12-10T18:02:30Z2009-12-10T18:02:30Z<p>There are really two separate parts to this question.</p>
<ol>
<li><p>What protocol do you wish to expose your service on? HTTP? If so, you should take a look at WebHttpBinding, which was build for REST (or at least, POX) services. For more complex scenarios, you might need to go with a custom binding that doesn't force SOAP on the message.</p></li>
<li><p>How you want to represent that XML on your service side. For example, with WebHttpBinding, the simplest scenarios is to still use DataContracts and let WCF take care of serializing to/from the XML text representation. However, it might be that you want to provide the raw XML somehow, and in that case, you could certainly go with a more raw contract using only System.ServiceModel.Channels.Message objects and handle the serialization process yourself.</p></li>
</ol>
http://stackoverflow.com/questions/1862120/wcf-message-framing-and-custom-channels/1862827#18628270Answer by tomasr for WCF: Message Framing and Custom Channelstomasr2009-12-07T20:54:41Z2009-12-07T20:54:41Z<p>Framing at the wire level is not something that the WCF channel model really cares about; it's pretty much up to you to handle it.</p>
<p>What I mean by this is that it is your responsibility to ensure that your transport channel returns "entire" messages on a receive (streaming changes that a bit, but only up to a point).</p>
<p>In your case, it seems you're translating receive operations on your channel directly into receive operations on the underlying socket, and that just won't do, because that won't give you a chance to enforce your own framing rules.</p>
<p>So really, a single receive operation on your channel might very well translate to more than one receive operation on the underlying socket, and that's fine (and you can still do all that async, so it doesn't need to affect that part).</p>
<p>So basically the question becomes: what's your protocol framing model look like? Wild guess here, but it looks like messages are length prefixed, with the length encoded as a decimal string? (looks annoying).</p>
<p>I think your best bet in that case would be to have your transport buffer incoming data (say, up to 64KB of data or whatever), and then on each receive operation check the buffer to see if it contains enough bytes to extract the length of the incoming message. If so, then either read as many bytes as necessary from the buffer, or flush the buffer and read as many bytes from the socket. You'll have to be careful as, depending on how your protocol works, I'm assuming you might end up reading partial messages before you actually need them.</p>
http://stackoverflow.com/questions/1830459/how-to-return-json-from-wcf-service/1830487#18304871Answer by tomasr for How to return Json from WCF Service?tomasr2009-12-02T03:29:45Z2009-12-02T03:29:45Z<p>Have you tried:</p>
<pre><code>[WebGet(ResponseFormat= WebMessageFormat.Json)]
</code></pre>
http://stackoverflow.com/questions/1824519/msmqmessaget-neccessary/1826009#18260090Answer by tomasr for MsmqMessage<T> neccessary ?tomasr2009-12-01T12:52:02Z2009-12-01T12:52:02Z<p>As far as I remember, the reason for this is that you're using MsmqIntegrationBinding, not the NetMsmqBinding. MsmqMessage<T> gives you access to the MSMQ message properties (both on the send and the receive) which can be useful on a lot of scenarios.</p>
http://stackoverflow.com/questions/1819498/disable-wcf-headers/1819539#18195391Answer by tomasr for Disable WCF headerstomasr2009-11-30T12:29:33Z2009-11-30T12:29:33Z<p>Not sure I understand fully what you're asking. Do you want to still use SOAP but just without any of the WS-Security and WS-Addressing stuff? Or do you want to just transfer the raw body XML without a SOAP envelope?</p>
<p>In either case, it's about using the right binding with the right config. In the first case, try the BasicHTTP binding with no message security. In the latter, I'm guessing you're probably looking at doing some form of XML-over-HTTP and WebHttpBinding is what you're looking for.</p>
http://stackoverflow.com/questions/1782049/wcf-calling-a-service-from-a-callback-method-in-client/1782935#17829350Answer by tomasr for WCF Calling a service from a callback method in Clienttomasr2009-11-23T12:41:59Z2009-11-23T12:41:59Z<p>Off the top of my head, a couple of things to check for:</p>
<ul>
<li>If you're using HTTP, increase the number of <a href="http://msdn.microsoft.com/en-us/library/1tkaca2y.aspx" rel="nofollow">HTTP connections allowed</a> from the client side to the HTTP server. This is 2 by default and might not be enough for your needs.</li>
<li>Make sure the <a href="http://msdn.microsoft.com/en-us/library/ms731379.aspx" rel="nofollow">throttling options</a> in your WCF service are enough to handle all your required connections.</li>
</ul>
http://stackoverflow.com/questions/1772663/whats-entsso-for-in-biztalk-server/1776355#17763551Answer by tomasr for What's EntSSO for in BizTalk Server?tomasr2009-11-21T18:47:25Z2009-11-21T18:47:25Z<p>You're pretty close overall. EntSSO is used by BizTalk internally to store any sensitive data. This includes particularly the adapter-specific part of any send port/receive location configuration.</p>
<p>But that's not all EntSSO does; it can also be used to provide credential mapping services between Windows and non-windows systems, by storing sets of encrypted credentials for other applications and mapping within them. Basically, this can be used to provide single sign-on services when building BizTalk solutions so that BizTalk can "act as" a specific user when doing stuff on their behalf.</p>
<p>For example, you could have BizTalk receive a message over an HTTP/SOAP receive location set up with Windows Integrated authentication, and then let BizTalk flow that authentication information over to an FTP send port where the Windows user credential is mapped to a specific username/password combination associated to it so that BizTalk can authenticate as said user to the FTP server. With this, different Windows Users sending messages to BizTalk would result in separate FTP connections created with different credentials on the other end (this is different from the default BizTalk behavior of using a single credential for all operations on a send port).</p>
<p>Obviously EntSSO offers a bunch of other options beyond this, but that's kinda the big deal.</p>
<p>BTW, the BizTalk docs actually contain a <a href="http://msdn.microsoft.com/en-us/library/aa558712%28BTS.10%29.aspx" rel="nofollow">fairly extensive section</a> on EntSSO that is pretty useful.</p>
http://stackoverflow.com/questions/1755907/wcf-msmq-time-to-be-received-has-elapsed-dead-letter-queue-issue/1758725#17587250Answer by tomasr for WCF / MSMQ "time-to-be-received has elapsed" dead letter queue issuetomasr2009-11-18T20:11:32Z2009-11-18T20:11:32Z<p>I'm not 100% sure, but I believe that the TimeToLive property only sets the Time-To-Reach-Queue msmq property, but I don't know of a built-in way right now of setting the Time-To-Be-Received property...</p>
http://stackoverflow.com/questions/1707397/powershell-using-redirection-within-the-script-produces-a-unicode-output-how/1707633#17076333Answer by tomasr for Powershell: using redirection within the script produces a unicode output. How to emit single-byte ASCII text?tomasr2009-11-10T12:32:53Z2009-11-10T12:32:53Z<p>You could change the <a href="http://blogs.msdn.com/powershell/archive/2006/12/11/outputencoding-to-the-rescue.aspx" rel="nofollow">$OutputEncoding</a> variable before writing to the file. The other option is not to use the > operator, but instead pipe directly to Out-File and use the -Encoding parameter.</p>
http://stackoverflow.com/questions/1702596/binding-an-ssl-certificate-to-a-port-programmatically/1702747#17027472Answer by tomasr for Binding an SSL certificate to a port programmaticallytomasr2009-11-09T18:14:41Z2009-11-09T18:14:41Z<p>I believe the way to create an HTTP.SYS namespace reservation is through the <a href="http://msdn.microsoft.com/en-us/library/aa364503%28VS.85%29.aspx" rel="nofollow">HttpSetServiceConfiguration</a>() unmanaged API; so you'll need some P/Invoke for that. There's some sample code that might be useful in <a href="http://msdn.microsoft.com/en-us/magazine/cc163531.aspx" rel="nofollow">one of</a> Keith Brown's MSDN columns.</p>
http://stackoverflow.com/questions/1689962/create-message-from-a-messagedescription/1691402#16914020Answer by tomasr for Create message from a MessageDescriptiontomasr2009-11-07T00:22:06Z2009-11-07T00:22:06Z<p>I don't think this functionality is actually exposed directly like that at all.</p>
<p>I haven't tried this, but spent a bit of time with reflector and if you don't mind getting your hands dirty and using a bit of reflection, one option might be to use <a href="http://msdn.microsoft.com/en-us/library/system.activator.createinstance.aspx" rel="nofollow">Activator.CreateInstance</a>() to create a new instance of the System.ServiceModel.Dispatcher.DataContractSerializerOperationFormatter class, which implements the the <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.dispatcher.iclientmessageformatter.aspx" rel="nofollow">IClientMessageFormatter</a> interface.</p>
<p>Here are the parameters for the constructor:</p>
<ul>
<li>OperationDescription description</li>
<li>DataContractFormatAttribute dataContractFormatAttribute</li>
<li>DataContractSerializerOperationBehavior serializerFactory</li>
</ul>
<p>Notice that in any case, you'll need the full OperationDescription object, but looks like you have access to it in any case.</p>
<p>Then, it's just a matter of calling <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.dispatcher.iclientmessageformatter.serializerequest.aspx" rel="nofollow">SerializeRequest</a>().</p>
http://stackoverflow.com/questions/279313/resend-to-msmq-after-exception/281934#2819342Answer by tomasr for Resend to MSMQ after exceptiontomasr2008-11-11T19:41:15Z2009-11-06T23:06:27Z<p>Couple of points: The best way to do this would be using a transaction spanning both queues; that way you'll know you won't lose a message.</p>
<p>The second part of it is to be careful about how the queues are created and how you submit messages to the second queue. In particular, MSMQ sometimes appears to "fail silently" when sending a message (though in reality an error message is recorded elsewhere in the dead letter queues), particularly if the transactional options of the send don't match the transactional nature of the target queue.</p>
http://stackoverflow.com/questions/1686411/mapping-a-wcf-request-message-to-the-underlying-operation/1687214#16872141Answer by tomasr for Mapping a WCF request message to the underlying operationtomasr2009-11-06T12:15:47Z2009-11-06T12:15:47Z<p>There's really no 100% sure way of doing this, because IDispatchMessageInspector.AfterReceiveRequest() runs before the dispatcher has matched the message to an actual operation on the service. That said, if you're using the default <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.dispatcher.idispatchoperationselector.aspx" rel="nofollow">IDispatchOperationSelector</a>, then it's possible to build a map that matches SOAP Action names with operation names during ApplyDispatchBehavior(). I have a blog post that talks a little bit about this <a href="http://winterdom.com/2006/10/operationdescriptionandthesoapaction" rel="nofollow">here</a>.</p>
<p>There's a bit of an example of how to build this map on some code <a href="http://quickcounters.codeplex.com/sourcecontrol/changeset/view/43042?projectName=quickcounters#184671" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1668950/biztalk-sendport-wcf-calling-asmx-web-service-using-ws-security/1669037#16690372Answer by tomasr for BizTalk SendPort WCF Calling .asmx web service using WS-Securitytomasr2009-11-03T17:51:45Z2009-11-03T17:51:45Z<p>Neal, for WS-Security, you need to use the WCF-WsHttp binding/Adapter. WCF-BasicHttp is only for the simpler scenarios where the WS-* protocols are not needed.</p>
http://stackoverflow.com/questions/1666029/exceptions-and-idispatchmessageinspector/1666983#16669830Answer by tomasr for Exceptions and IDispatchMessageInspectortomasr2009-11-03T12:16:59Z2009-11-03T12:16:59Z<p>Here's <a href="http://winterdom.com/2006/10/idispatchmessageinspectorfaultsandonewayoperations" rel="nofollow">something I wrote</a> a while ago about this topic. Basically, an exception will cause a <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.channels.message.isfault.aspx" rel="nofollow">fault message</a> to be sent to the client as a reply</p>
http://stackoverflow.com/questions/1653751/logging-requests-responses-in-a-wcf-rest-service/1654181#16541811Answer by tomasr for Logging requests/responses in a WCF REST servicetomasr2009-10-31T11:58:16Z2009-10-31T11:58:16Z<p>Notice that if you want to intercept the raw message, and not the parameters, you can inject your implementation of <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.dispatcher.idispatchmessageinspector.aspx" rel="nofollow">IDispatchMessageInspector</a> instead of the IParameterInspector extension point that Dani suggests.</p>
http://stackoverflow.com/questions/1651017/wcf-service-running-as-windowsservice-and-somehow-goes-into-faultedstate/1651236#16512360Answer by tomasr for WCF service running as WindowsService and somehow goes into FaultedStatetomasr2009-10-30T17:29:04Z2009-10-30T17:29:04Z<p>Looks like you're dealing with a poisoned message that your service can't deal with. You need to find a way to detect this condition and remove the message from the queue so that the system can continue processing other requests.</p>
<p>You don't mention which WCF and MSMQ versions you're using, as there are differences in what WCF provides out of the box for dealing with these conditions. Look <a href="http://msdn.microsoft.com/en-us/library/ms751472.aspx" rel="nofollow">here</a> for MSMQ 3.0 and <a href="http://msdn.microsoft.com/en-us/library/aa395218.aspx" rel="nofollow">here</a> for MSMQ 4.0.</p>
<p>I've written a <a href="http://winterdom.com/2007/02/poisonmessagesandorderedprocessing" rel="nofollow">little</a> <a href="http://winterdom.com/2008/05/netmsmqandpoisonmessages" rel="nofollow">bit</a> in the past about the topic of poison messages in my blog as well.</p>
http://stackoverflow.com/questions/1647047/consuming-wcf-self-hosted-service-from-another-machine/1649511#16495111Answer by tomasr for Consuming WCF self-hosted service from another machine.tomasr2009-10-30T12:26:19Z2009-10-30T12:26:19Z<p>Have you made sure that you don't have the firewall service running and blocking those requests? You might need to specifically add an exception rule for your custom host application (or tcp port)</p>
http://stackoverflow.com/questions/1624417/powershell-how-do-i-get-credentials-from-c-code/1624590#16245900Answer by tomasr for Powershell: How do i get credentials from C# code?tomasr2009-10-26T12:43:35Z2009-10-26T12:43:35Z<p>Are you writing a custom PSHost? If so, then your custom host would be required to provide your own implementation of PSHostUserInterface and then implement PromptForCredential() in it.</p>
<p>If you need to implement this yourself, and want to use the standard windows credentials dialog that PowerShell uses by default, then you could use the <a href="http://msdn.microsoft.com/en-us/library/aa375177%28VS.85%29.aspx" rel="nofollow">CredUIPromptForCredentials()</a> api. There's some code on how to call it from .NET <a href="http://weblogs.asp.net/hernandl/archive/2005/11/21/usercredentialsdialog.aspx" rel="nofollow">here</a> and <a href="http://www.developerfusion.com/code/4693/using-the-credential-management-api/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1618828/wcf-wcf-binding-in-with-c-c/1622693#16226930Answer by tomasr for WCF (WCF-Binding) in/with C/C++tomasr2009-10-26T01:11:19Z2009-10-26T01:11:19Z<p>Sounds like what you're looking for is a C++-based library for exposing and consuming web-services supporting the WS-* protocols (i.e. like WS-Security). In that case, you could probably give <a href="http://ws.apache.org/axis2/c/index.html" rel="nofollow">Axis2/C</a> a try. It's the C version of the normal Java-based Axis2 from Apache.</p>
<p>(There's also <a href="http://ws.apache.org/axis/cpp/index.html" rel="nofollow">Axis/CPP</a>, but not sure how up-to-date that is).</p>
http://stackoverflow.com/questions/1611542/how-to-debug-wcf-service-deployed-in-remote-machine/1613050#16130500Answer by tomasr for How to debug wcf service deployed in remote machine?tomasr2009-10-23T12:14:59Z2009-10-23T12:14:59Z<p>Depending on your environment, you could try setting up the <a href="http://msdn.microsoft.com/en-us/library/bt727f1t.aspx" rel="nofollow">remote debugger</a>. That said, if you deployed a release build of your service, it's likely that debugging might not give you as much info as you expect.</p>
http://stackoverflow.com/questions/1588728/wcf-the-incoming-message-was-signed-with-a-token-which-was-different-fron-what-u/1588768#15887680Answer by tomasr for WCF: The incoming message was signed with a token which was different fron what used to encrypt the body. This was not expected.tomasr2009-10-19T13:46:08Z2009-10-19T13:46:08Z<p>What kind of tokens are you using? Certificates? If so, this article might be useful: "<a href="http://msdn.microsoft.com/en-us/library/ms729856.aspx" rel="nofollow">How to: use different X509 Certificates for signing and encryption</a>". In particular, look at the part that reads "To use multiple certificates on the client".</p>
http://stackoverflow.com/questions/1556711/extending-a-wcf-service-reference-to-a-wsdl-to-implement-ienlistmentnotification/1557589#15575891Answer by tomasr for Extending a WCF Service Reference to a WSDL to implement IEnlistmentNotificationtomasr2009-10-13T00:02:00Z2009-10-13T00:02:00Z<p>WCF does have one extension point that allows you to hook into the client to inspect data coming out and in, it's <a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.dispatcher.iparameterinspector.aspx" rel="nofollow">IParameterInspector</a>, I wrote about them a while ago <a href="http://winterdom.com/2006/09/iparameterinspectorinwcf" rel="nofollow">here</a>. Not sure if it's what you need, but might be useful.</p>
http://stackoverflow.com/questions/1542242/win32exception-servicehost-open-for-wcf-service/1543237#15432372Answer by tomasr for Win32Exception @ ServiceHost.Open() for WCF service...tomasr2009-10-09T11:25:38Z2009-10-09T11:25:38Z<p>The problem isn't with localhost vs dns name... it's related to WCF calling the <a href="http://msdn.microsoft.com/en-us/library/ms725484%28VS.85%29.aspx" rel="nofollow">TranslateName()</a> api to convert the UPN identity of the service from a SAM-compatible name (i.e DOMAIN\user) to a canonical name, and complaining that it cannot connect to the domain specified in the SAM-Compatible name presented as input.</p>
<p>Not sure what might be causing this, but it could be that you're somehow specifying a wrong domain in your UPN identity, or there's something wrong with your machine's domain registration, or the firewall is getting in the way.</p>
http://stackoverflow.com/questions/1522004/wcf-https-self-hosted-service-does-not-work-connection-to-the-server-was-reset/1522109#15221091Answer by tomasr for WCF HTTPS self-hosted service does not work ("connection to the server was reset")tomasr2009-10-05T20:05:46Z2009-10-05T20:05:46Z<p>You probably need to use httpcfg.exe to reserve your endpoint with HTTP.SYS correctly with a configured X.509 certificate for SSL. The steps to get it done are documented <a href="http://msdn.microsoft.com/en-us/library/ms733791.aspx" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1521338/biztalk-processing-a-flat-file-receives-no-subscribers-found-message/1521419#15214192Answer by tomasr for Biztalk - processing a flat file receives "no subscribers found" messagetomasr2009-10-05T17:43:20Z2009-10-05T17:43:20Z<p>Yes, when you create a custom flat file schema, you need to create a custom pipeline (a receive pipeline in this case), add the FlatFile Disassembler component to it and then configure its properties with your custom flat file schema.</p>
<p>Then you need to configure your receive port to use this receive pipeline.</p>
http://stackoverflow.com/questions/1519388/biztalk-2009-fault-when-using-pop3-adapter/1521036#15210360Answer by tomasr for BizTalk 2009 fault when using POP3 adaptertomasr2009-10-05T16:21:59Z2009-10-05T16:21:59Z<p>That HRESULT code looks like a COM object being used by the adapter is faulting (or the adapter itself is, in any case). If this is crashing your process (which sounds like it), then it might be a good reason to open a support incident.</p>
<p>If you want to try looking into it yourself before that, I'd spelunking around with WinDBG and SOS and see what comes up...</p>
http://stackoverflow.com/questions/1515305/is-there-a-way-to-automate-turning-a-biztalk-receive-location-on-or-off-through-c/1517355#15173553Answer by tomasr for Is there a way to automate turning a BizTalk Receive Location on or off through code?tomasr2009-10-04T20:50:23Z2009-10-04T20:50:23Z<p>Besides ExplorerOM, as you've found out, you can also enable/disable receive locations (and control send ports) using WMI.</p>
<p>I have a sample PowerShell script that shows how to do those things <a href="http://github.com/tomasr/bts-ps-scripts/blob/master/bts-ports.ps1" rel="nofollow">here</a>, if you're interested.</p>
http://stackoverflow.com/questions/1497599/difference-between-long-running-and-non-transactional-orchestration/1497830#14978303Answer by tomasr for Difference between Long running and non transactional Orchestrationtomasr2009-09-30T12:34:40Z2009-09-30T12:34:40Z<p>A scope with no transaction is usually used as a try/catch block just to handle exceptions. A long running transaction scope is, well, a transaction, which as you point out can have compensation blocks associated with it to "undo" its work.</p>
<p>Most commonly, a long running transaction isn't used in isolation... it will contain nested transactions (both atomic and long running on their own), with the outer transaction coordinating through compensations the undoing of any nested transactions not automatically rolled back.</p>
http://stackoverflow.com/questions/1882766/net-wcf-receiving-sending-xml/1882833#1882833Comment by tomasr on .Net WCF - Receiving & Sending XMLtomasr2009-12-10T18:42:33Z2009-12-10T18:42:33ZYou can still keep it simple and not do that in WCF. No reason to hack it that way.http://stackoverflow.com/questions/1882766/net-wcf-receiving-sending-xml/1882833#1882833Comment by tomasr on .Net WCF - Receiving & Sending XMLtomasr2009-12-10T18:03:20Z2009-12-10T18:03:20ZHorrible solution. Yes, easy to implement, but very inefficient.http://stackoverflow.com/questions/1830459/how-to-return-json-from-wcf-service/1830487#1830487Comment by tomasr on How to return Json from WCF Service?tomasr2009-12-02T03:51:38Z2009-12-02T03:51:38ZHave you looked at: <a href="http://www.west-wind.com/weblog/posts/324917.aspx" rel="nofollow">west-wind.com/weblog/posts/324917.aspx</a> ?http://stackoverflow.com/questions/1755907/wcf-msmq-time-to-be-received-has-elapsed-dead-letter-queue-issue/1758725#1758725Comment by tomasr on WCF / MSMQ "time-to-be-received has elapsed" dead letter queue issuetomasr2009-11-18T23:34:32Z2009-11-18T23:34:32ZOh I agree, its annoying, no argument there :) Out of curiosity, is your server CPU-bound or IO-Bound?
http://stackoverflow.com/questions/1668950/biztalk-sendport-wcf-calling-asmx-web-service-using-ws-security/1669037#1669037Comment by tomasr on BizTalk SendPort WCF Calling .asmx web service using WS-Securitytomasr2009-11-04T12:08:03Z2009-11-04T12:08:03ZIt's hard to say what exactly is going on without more clear information as to what your service requires, but you can't really rely on the wizards to get this right. Can you start with a clean WSHttp send port and see if you can get it to work using SecurityMode==Message, MessageClientCredentialType==Username?
As for NegotiateServiceCredential thing, I'm not sure WSE3 supported that, so you may need to disable it and provision the server cert manually on the config.http://stackoverflow.com/questions/1624417/powershell-how-do-i-get-credentials-from-c-code/1624590#1624590Comment by tomasr on Powershell: How do i get credentials from C# code?tomasr2009-10-26T14:00:56Z2009-10-26T14:00:56ZI'm not sure I understand what you're doing, then. In what context are you trying to get these credentials? In a PowerShell Script? If so, then calling Get-Credential is really the way to go, and since this is a very thin wrapper on top of PSHostUserInterface.PromptForCredential(), if Get-Credential isn't working, the other won't, either.
Where is your script running?http://stackoverflow.com/questions/1542242/win32exception-servicehost-open-for-wcf-service/1543237#1543237Comment by tomasr on Win32Exception @ ServiceHost.Open() for WCF service...tomasr2009-10-09T15:09:40Z2009-10-09T15:09:40ZCould it be that DNS isn't resolving your machine name to the local IP, but instead is resolving to something else so that the OS is interpreting as a domain name?http://stackoverflow.com/questions/1476899/how-do-i-set-bts-operation-in-a-custom-pipeline/1478536#1478536Comment by tomasr on How do I set BTS.Operation in a custom pipeline?tomasr2009-09-29T01:14:37Z2009-09-29T01:14:37ZIt's hard to say what might be going wrong without knowing more details. However, some things worth looking into: Make sure you're setting the property in the right place (right pipeline). Also, is there a reason you want to go through the BTS.Operation + Adapter Action mapping route, instead of directly setting the WCF.Action property?http://stackoverflow.com/questions/1472142/correct-way-to-host-a-stable-wcf-msmq-windows-service/1475144#1475144Comment by tomasr on Correct way to host a *stable* WCF MSMQ windows servicetomasr2009-09-28T12:23:16Z2009-09-28T12:23:16ZTo be honest, I just don't know for sure, hence why I recommended both options :)http://stackoverflow.com/questions/1378379/getting-destination-url-in-beforesendrequest/1378982#1378982Comment by tomasr on Getting destination URL in BeforeSendRequesttomasr2009-09-04T20:29:11Z2009-09-04T20:29:11ZPaul, What I meant by duplex was using one of the dual bindings, like dual contracts on net.tcp or using WSDualHttpBinding, but looks like it's not the case.
However, I still don't understand what you mean what you say that RemoteAddress contains only "the local URL". What local URL do you mean, if you're on the client side and not the service side?http://stackoverflow.com/questions/1378379/getting-destination-url-in-beforesendrequest/1378982#1378982Comment by tomasr on Getting destination URL in BeforeSendRequesttomasr2009-09-04T17:20:31Z2009-09-04T17:20:31ZNot sure I fully understand this... are you on a duplex channel? Guess you're gonna need to give us more details of your setup. Does the LocalAddress property have the right value?http://stackoverflow.com/questions/1357210/addressfilter-mismatch-at-the-endpointdispatcher/1357270#1357270Comment by tomasr on AddressFilter mismatch at the EndpointDispatchertomasr2009-09-03T22:30:20Z2009-09-03T22:30:20ZI'm not sure exactly what's going on, but from what I can see in the config files, I see that the URL you're using in your client config for the services is not the same one that you're getting an error for on the server (nor does it match the base address prefixes you registered on the server side). Are you sure you're looking at the right configurations?http://stackoverflow.com/questions/1357210/addressfilter-mismatch-at-the-endpointdispatcher/1357270#1357270Comment by tomasr on AddressFilter mismatch at the EndpointDispatchertomasr2009-08-31T15:17:51Z2009-08-31T15:17:51ZThe service configuration seems alright to me, but about the mex address, I was really referring to your client, which seems to be using the wrong address.http://stackoverflow.com/questions/1333287/making-a-custom-binding-configurable-over-app-config/1336998#1336998Comment by tomasr on Making a custom binding configurable over App.configtomasr2009-08-27T15:05:02Z2009-08-27T15:05:02ZSounds like your binding extension is not getting loaded at all then. Have you tried using fuslogvw.exe to check if perhaps the assembly is not getting loaded? WCF is picky about how the assembly name is written when registering config extensions.http://stackoverflow.com/questions/1333287/making-a-custom-binding-configurable-over-app-config/1336998#1336998Comment by tomasr on Making a custom binding configurable over App.configtomasr2009-08-27T13:07:36Z2009-08-27T13:07:36ZIn general, what you're doing should work. Have you tried it without using WebServiceHost, but the normal one?