Microsoft Developer Network > 포럼 홈 > Windows Azure > Why messages are not getting added in Queue.
질문하기질문하기
 

질문Why messages are not getting added in Queue.

  • 2009년 7월 2일 목요일 오후 12:54Amit Dumbre 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     

    I am trying to insert messages to the Queue. I could do this with local development storage but when I try to run the code against cloud storage although I am not getting any error, it is not putting messages in the respective queue. May I know why this might be happening? Have anybody faced similar problem?

    • 편집됨Amit Dumbre 2009년 7월 2일 목요일 오후 12:56
    •  

모든 응답

  • 2009년 7월 2일 목요일 오후 2:20BrentDaCodeMonkey 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     

    Are you running local code against hosted storage? Could you post your configuration settings (omitting the account key of course)?  Also, I'm presume you're using the StorageClient library for access. Correct?

  • 2009년 7월 6일 월요일 오후 8:11Pita.O 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    Try pointing to the cloud blob endpoint from Visual Studio and step through the code.
    Remember to change the accountname and shared keys in the config file itself.  You're most likely to find the problem as you step through it in VS. Keep a close eye on the endpoint, accountname and account key that StorageClient is picking up or composing for you.


    Pita.O: http://www.arizentax.com/
  • 2009년 7월 6일 월요일 오후 8:18Neil Mackenzie 사용자 메달사용자 메달사용자 메달사용자 메달사용자 메달
     
    You should run Fiddler to ensure that the appropriate REST calls are being made to the correct endpoint.