Showing posts with label login. Show all posts
Showing posts with label login. Show all posts

Wednesday, March 28, 2012

Invalid URI: The format of the URI could not be determined

I'm using the sample on custom authentication from msdn but whenever I try to login I get this message.What URI are they complaining about? Has it anything to do with the custom cookie handling? I cant for the world understand whats wrong.

I had to replace the url to the service in the proxy.

But now I have problems with the cookie. Authorization ticket not received by LogonUser

|||

Am I the only one with this problem?

Could the problem be that I'm using two instances of reporting services? I thought that it was a good idea to create two instances of reporting services to be able to preserve our project portal (team foundation, sharepoint) with windows authentication and use the other one for development with forms authenitcation.

Anyone? Any input would be useful.

|||

Maybe this link will be of some help to you:

http://msdn2.microsoft.com/en-us/library/ms155878.aspx

Shyam

|||Thanks Shyam for your reply but sadly it didnt make any difference.

Wednesday, March 21, 2012

invalid login packet

Hello,
I get the following message every once in a while.
Connection opened but invalid login packet(s) sent. Connection closed..
Error: 17832, Severity: 20, State: 10
This is a SBS 2000 with SQL 2000. I do not have a clue on what is
generating this message. I have not found any information about the State:
10. Any help would be helpful.
Thank You,
Joe Bucar
Hi Joe,
Basically, this means that a session was setup to the Server, but the
login packet was either not sent, or incomplete. I would check the version
of MDAC on the machine and verify that you have the security update
installed.
http://www.microsoft.com/technet/sec.../MS04-003.mspx
Thanks,
Kevin McDonnell
Microsoft Corporation
This posting is provided AS IS with no warranties, and confers no rights.
|||Hello Kevin,
Thank you for your response. I will verify that the update is applied and
see if the message shows up again.
Regards,
Joe Bucar
"Kevin McDonnell [MSFT]" <kevmc@.online.microsoft.com> wrote in message
news:tmHy086NEHA.3964@.cpmsftngxa10.phx.gbl...
> Hi Joe,
> Basically, this means that a session was setup to the Server, but the
> login packet was either not sent, or incomplete. I would check the
version
> of MDAC on the machine and verify that you have the security update
> installed.
> http://www.microsoft.com/technet/sec.../MS04-003.mspx
> Thanks,
> Kevin McDonnell
> Microsoft Corporation
> This posting is provided AS IS with no warranties, and confers no rights.
>
>

invalid login packet

Hello,
I get the following message every once in a while.
Connection opened but invalid login packet(s) sent. Connection closed..
Error: 17832, Severity: 20, State: 10
This is a SBS 2000 with SQL 2000. I do not have a clue on what is
generating this message. I have not found any information about the State:
10. Any help would be helpful.
Thank You,
Joe BucarHi Joe,
Basically, this means that a session was setup to the Server, but the
login packet was either not sent, or incomplete. I would check the version
of MDAC on the machine and verify that you have the security update
installed.
http://www.microsoft.com/technet/se...n/MS04-003.mspx
Thanks,
Kevin McDonnell
Microsoft Corporation
This posting is provided AS IS with no warranties, and confers no rights.|||Hello Kevin,
Thank you for your response. I will verify that the update is applied and
see if the message shows up again.
Regards,
Joe Bucar
"Kevin McDonnell [MSFT]" <kevmc@.online.microsoft.com> wrote in message
news:tmHy086NEHA.3964@.cpmsftngxa10.phx.gbl...
> Hi Joe,
> Basically, this means that a session was setup to the Server, but the
> login packet was either not sent, or incomplete. I would check the
version
> of MDAC on the machine and verify that you have the security update
> installed.
> http://www.microsoft.com/technet/se...n/MS04-003.mspx
> Thanks,
> Kevin McDonnell
> Microsoft Corporation
> This posting is provided AS IS with no warranties, and confers no rights.
>
>

Wednesday, March 7, 2012

Invalid @owner_login_name and subscriptions

I've been trying to create subscriptions on a new server and have been
receiving errors on the login name. After researching it, I see that can be
as a result of a server name change, and indeed, the new server was renamed
after SQL installation. However, I've done the drop servername, add
servername thing, restarted and even rebooted. The new @.@.Servername value is
correct. But I still get the same error (even after updating sysjobs
originating server). Anybody have any suggestions? If I have to reinstall, I
can, but would that be SQL or SQL RS or both?
--
Thanks,
CGWAh, just had to reconfigure... RSConfig
--
Thanks,
CGW
"CGW" wrote:
> I've been trying to create subscriptions on a new server and have been
> receiving errors on the login name. After researching it, I see that can be
> as a result of a server name change, and indeed, the new server was renamed
> after SQL installation. However, I've done the drop servername, add
> servername thing, restarted and even rebooted. The new @.@.Servername value is
> correct. But I still get the same error (even after updating sysjobs
> originating server). Anybody have any suggestions? If I have to reinstall, I
> can, but would that be SQL or SQL RS or both?
> --
> Thanks,
> CGW

Friday, February 24, 2012

Intranet, windows authentication, Sql Server Login Failed for user (null)

Hi--

I am building an intRAnet website using windows authentication for website access and SQL Server access ( Trusted_Connection = true ).

In IIS I have these settings:

Allow Anonymous = unchecked (false)Windows Authentication = Checked (true)Digest windows = checked (true)

In my Web.Config file:

authentication="windows"impersonate="true"allowusers="*"

When I pull up the page these are my credentials:

Security.Principal.Windows: mydomain\myuserid (this is correct what it shows on my page)

Me.User.Identity: mydomain\myuserid (this is correct what it shows on my page)

Threading.currentThread.currentUser mydomain\myuserid (this is correct what it shows on my page)

So the ASP.NET page recognizes it is me and my domain. However, when i click a button to pull some data from a database I get the error message: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection.

My data access on SQL Server works fine. The weird thing is when I debug on my machine it pulls data fine. but when I copy the files to the windows 2003 server it doesn't work.

Do i have to do something with delegation?

some guys and i did some research and we think that kerberos delegation is not enabled on our domain in active directory.

When i take off digest, and select basic authentication the credentials pass...but i don't want that.