views:

197

answers:

1

I have a WCF service hosted in IIS6 with a method called DoSomething that I can access like https://mysite.com:8888/mysvc.svc/DoSomething (note its using https not http..and on a nonstandard port)

I have setup wildcard mapping in IIS6.

If I decorate DoSomething with a WebGet Attribute in the interface, I access the service method via a HTTP GET just fine.

If I decorate it with a WebInvoke Attribute in the interface, I get a 404 with a HTTP POST

any ideas?

A: 

n/m it was a config error..I have a different error now but I'll start a new post on that

puffpio