Problem accessing webservices

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default Problem accessing webservices

    Hi All,
    We have problems in accessing a WebService which is
    running on a remote server from a ASPX application. It
    gives us Un Authorized Exception. The Webservice is
    using "Basing Authentication". Any idea of how to get it
    work?.

    Thanks in Advance.

    Kerry Matt
    Kerry Matt Guest

  2. Similar Questions and Discussions

    1. accessing webservices
      Hi, I have a Flash minisite that connects to an asp.net based webservice using a webservice component. My AS 2.0 code triggers a WS method,...
    2. problem about webservices
      hello,kind people. there is one problem about WebServices from me,i thought over and over,but no result. it looks not the FMS case,but as you...
    3. Problem with WebServices
      Hello, I' ve created a new webService Project and run with "Hello World" example. It run fine. After it, i created a Winform project and included...
    4. webservices: simple question, accessing webservice members
      Hi, (new to webservices here) Is it possible to access a class instance variable defined in a webservice? I want to access this variable, in...
    5. Accessing WebServices from a web app hosted inside Outlook XP
      Ok, it turns out that "outlook:" moniker is actually causing our problem. When you first load a page into Outlook XP, the document.URL value is...
  3. #2

    Default Re: Problem accessing webservices

    Probably you didn't set the PreAuthenticate property to true, and passed the
    current credentials:

    Dim eng As New myWebservice.Service
    eng.PreAuthenticate = True
    eng.Credentials = System.Net.CredentialCache.DefaultCredentials
    'This will pass the credentials of the currently logged on user
    eng.DoSomething

    --
    Greetz

    Jan Tielens
    ________________________________
    Read my weblog: [url]http://weblogs.asp.net/jan[/url]


    "Kerry Matt" <anonymous@discussions.microsoft.com> wrote in message
    news:09f501c3c3c9$7f4fe0d0$a301280a@phx.gbl...
    > Hi All,
    > We have problems in accessing a WebService which is
    > running on a remote server from a ASPX application. It
    > gives us Un Authorized Exception. The Webservice is
    > using "Basing Authentication". Any idea of how to get it
    > work?.
    >
    > Thanks in Advance.
    >
    > Kerry Matt

    Jan Tielens Guest

  4. #3

    Default Re: Problem accessing webservices

    Thanks for your reply,
    I need some clarifications, by
    setting the Preauthenticate property are we sending the
    credentials of the Web Service or the credentials of the
    ASPX application. Since we run the ASPX application and
    the Web Service on different systems i am having this
    confusion.

    Thanks in Advance,

    KerryMatt
    >-----Original Message-----
    >Probably you didn't set the PreAuthenticate property to
    true, and passed the
    >current credentials:
    >
    >Dim eng As New myWebservice.Service
    >eng.PreAuthenticate = True
    >eng.Credentials =
    System.Net.CredentialCache.DefaultCredentials
    >'This will pass the credentials of the currently logged
    on user
    >eng.DoSomething
    >
    >--
    >Greetz
    >
    >Jan Tielens
    >________________________________
    >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >
    >
    >"Kerry Matt" <anonymous@discussions.microsoft.com> wrote
    in message
    >news:09f501c3c3c9$7f4fe0d0$a301280a@phx.gbl...
    >> Hi All,
    >> We have problems in accessing a WebService which
    is
    >> running on a remote server from a ASPX application. It
    >> gives us Un Authorized Exception. The Webservice is
    >> using "Basing Authentication". Any idea of how to get it
    >> work?.
    >>
    >> Thanks in Advance.
    >>
    >> Kerry Matt
    >
    >
    >.
    >
    Kerry Matt Guest

  5. #4

    Default Re: Problem accessing webservices

    You are sending the credentials of the user that is using your
    website/application if you have checked Integrated Windows Security in IIS
    management. Otherwise you're sending the credentials of the account your
    asp.net site is running under.

    --
    Greetz

    Jan Tielens
    ________________________________
    Read my weblog: [url]http://weblogs.asp.net/jan[/url]


    "Kerry Matt" <anonymous@discussions.microsoft.com> wrote in message
    news:079501c3c454$2a31ce70$a101280a@phx.gbl...
    > Thanks for your reply,
    > I need some clarifications, by
    > setting the Preauthenticate property are we sending the
    > credentials of the Web Service or the credentials of the
    > ASPX application. Since we run the ASPX application and
    > the Web Service on different systems i am having this
    > confusion.
    >
    > Thanks in Advance,
    >
    > KerryMatt
    >
    > >-----Original Message-----
    > >Probably you didn't set the PreAuthenticate property to
    > true, and passed the
    > >current credentials:
    > >
    > >Dim eng As New myWebservice.Service
    > >eng.PreAuthenticate = True
    > >eng.Credentials =
    > System.Net.CredentialCache.DefaultCredentials
    > >'This will pass the credentials of the currently logged
    > on user
    > >eng.DoSomething
    > >
    > >--
    > >Greetz
    > >
    > >Jan Tielens
    > >________________________________
    > >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    > >
    > >
    > >"Kerry Matt" <anonymous@discussions.microsoft.com> wrote
    > in message
    > >news:09f501c3c3c9$7f4fe0d0$a301280a@phx.gbl...
    > >> Hi All,
    > >> We have problems in accessing a WebService which
    > is
    > >> running on a remote server from a ASPX application. It
    > >> gives us Un Authorized Exception. The Webservice is
    > >> using "Basing Authentication". Any idea of how to get it
    > >> work?.
    > >>
    > >> Thanks in Advance.
    > >>
    > >> Kerry Matt
    > >
    > >
    > >.
    > >

    Jan Tielens Guest

  6. #5

    Default Re: Problem accessing webservices

    Thanks for your reply,

    I am using Basic Authentication in IIS. Should i send
    the credentials for the Remote WebServer or the
    credentials of my local ASPX application.

    Thanks in Advance
    Kerry Matt
    >-----Original Message-----
    >You are sending the credentials of the user that is using
    your
    >website/application if you have checked Integrated
    Windows Security in IIS
    >management. Otherwise you're sending the credentials of
    the account your
    >asp.net site is running under.
    >
    >--
    >Greetz
    >
    >Jan Tielens
    >________________________________
    >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >
    >
    >"Kerry Matt" <anonymous@discussions.microsoft.com> wrote
    in message
    >news:079501c3c454$2a31ce70$a101280a@phx.gbl...
    >> Thanks for your reply,
    >> I need some clarifications, by
    >> setting the Preauthenticate property are we sending the
    >> credentials of the Web Service or the credentials of the
    >> ASPX application. Since we run the ASPX application and
    >> the Web Service on different systems i am having this
    >> confusion.
    >>
    >> Thanks in Advance,
    >>
    >> KerryMatt
    >>
    >> >-----Original Message-----
    >> >Probably you didn't set the PreAuthenticate property to
    >> true, and passed the
    >> >current credentials:
    >> >
    >> >Dim eng As New myWebservice.Service
    >> >eng.PreAuthenticate = True
    >> >eng.Credentials =
    >> System.Net.CredentialCache.DefaultCredentials
    >> >'This will pass the credentials of the currently logged
    >> on user
    >> >eng.DoSomething
    >> >
    >> >--
    >> >Greetz
    >> >
    >> >Jan Tielens
    >> >________________________________
    >> >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >> >
    >> >
    >> >"Kerry Matt" <anonymous@discussions.microsoft.com>
    wrote
    >> in message
    >> >news:09f501c3c3c9$7f4fe0d0$a301280a@phx.gbl...
    >> >> Hi All,
    >> >> We have problems in accessing a WebService
    which
    >> is
    >> >> running on a remote server from a ASPX application.
    It
    >> >> gives us Un Authorized Exception. The Webservice is
    >> >> using "Basing Authentication". Any idea of how to
    get it
    >> >> work?.
    >> >>
    >> >> Thanks in Advance.
    >> >>
    >> >> Kerry Matt
    >> >
    >> >
    >> >.
    >> >
    >
    >
    >.
    >
    Kerry Matt Guest

  7. #6

    Default Re: Problem accessing webservices

    you should send the credentials of an account that has sufficient rights on
    the remote server.

    --
    Greetz

    Jan Tielens
    ________________________________
    Read my weblog: [url]http://weblogs.asp.net/jan[/url]


    "Kerry Matt" <anonymous@discussions.microsoft.com> wrote in message
    news:099f01c3c486$bbb4b5b0$a101280a@phx.gbl...
    > Thanks for your reply,
    >
    > I am using Basic Authentication in IIS. Should i send
    > the credentials for the Remote WebServer or the
    > credentials of my local ASPX application.
    >
    > Thanks in Advance
    > Kerry Matt
    >
    > >-----Original Message-----
    > >You are sending the credentials of the user that is using
    > your
    > >website/application if you have checked Integrated
    > Windows Security in IIS
    > >management. Otherwise you're sending the credentials of
    > the account your
    > >asp.net site is running under.
    > >
    > >--
    > >Greetz
    > >
    > >Jan Tielens
    > >________________________________
    > >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    > >
    > >
    > >"Kerry Matt" <anonymous@discussions.microsoft.com> wrote
    > in message
    > >news:079501c3c454$2a31ce70$a101280a@phx.gbl...
    > >> Thanks for your reply,
    > >> I need some clarifications, by
    > >> setting the Preauthenticate property are we sending the
    > >> credentials of the Web Service or the credentials of the
    > >> ASPX application. Since we run the ASPX application and
    > >> the Web Service on different systems i am having this
    > >> confusion.
    > >>
    > >> Thanks in Advance,
    > >>
    > >> KerryMatt
    > >>
    > >> >-----Original Message-----
    > >> >Probably you didn't set the PreAuthenticate property to
    > >> true, and passed the
    > >> >current credentials:
    > >> >
    > >> >Dim eng As New myWebservice.Service
    > >> >eng.PreAuthenticate = True
    > >> >eng.Credentials =
    > >> System.Net.CredentialCache.DefaultCredentials
    > >> >'This will pass the credentials of the currently logged
    > >> on user
    > >> >eng.DoSomething
    > >> >
    > >> >--
    > >> >Greetz
    > >> >
    > >> >Jan Tielens
    > >> >________________________________
    > >> >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    > >> >
    > >> >
    > >> >"Kerry Matt" <anonymous@discussions.microsoft.com>
    > wrote
    > >> in message
    > >> >news:09f501c3c3c9$7f4fe0d0$a301280a@phx.gbl...
    > >> >> Hi All,
    > >> >> We have problems in accessing a WebService
    > which
    > >> is
    > >> >> running on a remote server from a ASPX application.
    > It
    > >> >> gives us Un Authorized Exception. The Webservice is
    > >> >> using "Basing Authentication". Any idea of how to
    > get it
    > >> >> work?.
    > >> >>
    > >> >> Thanks in Advance.
    > >> >>
    > >> >> Kerry Matt
    > >> >
    > >> >
    > >> >.
    > >> >
    > >
    > >
    > >.
    > >

    Jan Tielens Guest

  8. #7

    Default Re: Problem accessing webservices

    Does it means i have to hard code the User Name and
    Password for the Remote Server.

    Thanks in Advance

    Kerry Matt.
    >-----Original Message-----
    >you should send the credentials of an account that has
    sufficient rights on
    >the remote server.
    >
    >--
    >Greetz
    >
    >Jan Tielens
    >________________________________
    >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >
    >
    >"Kerry Matt" <anonymous@discussions.microsoft.com> wrote
    in message
    >news:099f01c3c486$bbb4b5b0$a101280a@phx.gbl...
    >> Thanks for your reply,
    >>
    >> I am using Basic Authentication in IIS. Should i send
    >> the credentials for the Remote WebServer or the
    >> credentials of my local ASPX application.
    >>
    >> Thanks in Advance
    >> Kerry Matt
    >>
    >> >-----Original Message-----
    >> >You are sending the credentials of the user that is
    using
    >> your
    >> >website/application if you have checked Integrated
    >> Windows Security in IIS
    >> >management. Otherwise you're sending the credentials of
    >> the account your
    >> >asp.net site is running under.
    >> >
    >> >--
    >> >Greetz
    >> >
    >> >Jan Tielens
    >> >________________________________
    >> >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >> >
    >> >
    >> >"Kerry Matt" <anonymous@discussions.microsoft.com>
    wrote
    >> in message
    >> >news:079501c3c454$2a31ce70$a101280a@phx.gbl...
    >> >> Thanks for your reply,
    >> >> I need some clarifications, by
    >> >> setting the Preauthenticate property are we sending
    the
    >> >> credentials of the Web Service or the credentials of
    the
    >> >> ASPX application. Since we run the ASPX application
    and
    >> >> the Web Service on different systems i am having this
    >> >> confusion.
    >> >>
    >> >> Thanks in Advance,
    >> >>
    >> >> KerryMatt
    >> >>
    >> >> >-----Original Message-----
    >> >> >Probably you didn't set the PreAuthenticate
    property to
    >> >> true, and passed the
    >> >> >current credentials:
    >> >> >
    >> >> >Dim eng As New myWebservice.Service
    >> >> >eng.PreAuthenticate = True
    >> >> >eng.Credentials =
    >> >> System.Net.CredentialCache.DefaultCredentials
    >> >> >'This will pass the credentials of the currently
    logged
    >> >> on user
    >> >> >eng.DoSomething
    >> >> >
    >> >> >--
    >> >> >Greetz
    >> >> >
    >> >> >Jan Tielens
    >> >> >________________________________
    >> >> >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >> >> >
    >> >> >
    >> >> >"Kerry Matt" <anonymous@discussions.microsoft.com>
    >> wrote
    >> >> in message
    >> >> >news:09f501c3c3c9$7f4fe0d0$a301280a@phx.gbl...
    >> >> >> Hi All,
    >> >> >> We have problems in accessing a WebService
    >> which
    >> >> is
    >> >> >> running on a remote server from a ASPX
    application.
    >> It
    >> >> >> gives us Un Authorized Exception. The Webservice
    is
    >> >> >> using "Basing Authentication". Any idea of how to
    >> get it
    >> >> >> work?.
    >> >> >>
    >> >> >> Thanks in Advance.
    >> >> >>
    >> >> >> Kerry Matt
    >> >> >
    >> >> >
    >> >> >.
    >> >> >
    >> >
    >> >
    >> >.
    >> >
    >
    >
    >.
    >
    Kerry Matt Guest

  9. #8

    Default Re: Problem accessing webservices

    Or you can put them in a config file, database, ... yes.

    --
    Greetz

    Jan Tielens
    ________________________________
    Read my weblog: [url]http://weblogs.asp.net/jan[/url]


    "Kerry Matt" <anonymous@discussions.microsoft.com> wrote in message
    news:03ef01c3c4a3$bf7a6a10$a001280a@phx.gbl...
    > Does it means i have to hard code the User Name and
    > Password for the Remote Server.
    >
    > Thanks in Advance
    >
    > Kerry Matt.
    >
    > >-----Original Message-----
    > >you should send the credentials of an account that has
    > sufficient rights on
    > >the remote server.
    > >
    > >--
    > >Greetz
    > >
    > >Jan Tielens
    > >________________________________
    > >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    > >
    > >
    > >"Kerry Matt" <anonymous@discussions.microsoft.com> wrote
    > in message
    > >news:099f01c3c486$bbb4b5b0$a101280a@phx.gbl...
    > >> Thanks for your reply,
    > >>
    > >> I am using Basic Authentication in IIS. Should i send
    > >> the credentials for the Remote WebServer or the
    > >> credentials of my local ASPX application.
    > >>
    > >> Thanks in Advance
    > >> Kerry Matt
    > >>
    > >> >-----Original Message-----
    > >> >You are sending the credentials of the user that is
    > using
    > >> your
    > >> >website/application if you have checked Integrated
    > >> Windows Security in IIS
    > >> >management. Otherwise you're sending the credentials of
    > >> the account your
    > >> >asp.net site is running under.
    > >> >
    > >> >--
    > >> >Greetz
    > >> >
    > >> >Jan Tielens
    > >> >________________________________
    > >> >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    > >> >
    > >> >
    > >> >"Kerry Matt" <anonymous@discussions.microsoft.com>
    > wrote
    > >> in message
    > >> >news:079501c3c454$2a31ce70$a101280a@phx.gbl...
    > >> >> Thanks for your reply,
    > >> >> I need some clarifications, by
    > >> >> setting the Preauthenticate property are we sending
    > the
    > >> >> credentials of the Web Service or the credentials of
    > the
    > >> >> ASPX application. Since we run the ASPX application
    > and
    > >> >> the Web Service on different systems i am having this
    > >> >> confusion.
    > >> >>
    > >> >> Thanks in Advance,
    > >> >>
    > >> >> KerryMatt
    > >> >>
    > >> >> >-----Original Message-----
    > >> >> >Probably you didn't set the PreAuthenticate
    > property to
    > >> >> true, and passed the
    > >> >> >current credentials:
    > >> >> >
    > >> >> >Dim eng As New myWebservice.Service
    > >> >> >eng.PreAuthenticate = True
    > >> >> >eng.Credentials =
    > >> >> System.Net.CredentialCache.DefaultCredentials
    > >> >> >'This will pass the credentials of the currently
    > logged
    > >> >> on user
    > >> >> >eng.DoSomething
    > >> >> >
    > >> >> >--
    > >> >> >Greetz
    > >> >> >
    > >> >> >Jan Tielens
    > >> >> >________________________________
    > >> >> >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    > >> >> >
    > >> >> >
    > >> >> >"Kerry Matt" <anonymous@discussions.microsoft.com>
    > >> wrote
    > >> >> in message
    > >> >> >news:09f501c3c3c9$7f4fe0d0$a301280a@phx.gbl...
    > >> >> >> Hi All,
    > >> >> >> We have problems in accessing a WebService
    > >> which
    > >> >> is
    > >> >> >> running on a remote server from a ASPX
    > application.
    > >> It
    > >> >> >> gives us Un Authorized Exception. The Webservice
    > is
    > >> >> >> using "Basing Authentication". Any idea of how to
    > >> get it
    > >> >> >> work?.
    > >> >> >>
    > >> >> >> Thanks in Advance.
    > >> >> >>
    > >> >> >> Kerry Matt
    > >> >> >
    > >> >> >
    > >> >> >.
    > >> >> >
    > >> >
    > >> >
    > >> >.
    > >> >
    > >
    > >
    > >.
    > >

    Jan Tielens Guest

  10. #9

    Default Re: Problem accessing webservices

    Hi Jan,
    Thanks very much for the clarification. It was a timely
    help which means lot to us.

    >-----Original Message-----
    >Or you can put them in a config file, database, ... yes.
    >
    >--
    >Greetz
    >
    >Jan Tielens
    >________________________________
    >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >
    >
    >"Kerry Matt" <anonymous@discussions.microsoft.com> wrote
    in message
    >news:03ef01c3c4a3$bf7a6a10$a001280a@phx.gbl...
    >> Does it means i have to hard code the User Name and
    >> Password for the Remote Server.
    >>
    >> Thanks in Advance
    >>
    >> Kerry Matt.
    >>
    >> >-----Original Message-----
    >> >you should send the credentials of an account that has
    >> sufficient rights on
    >> >the remote server.
    >> >
    >> >--
    >> >Greetz
    >> >
    >> >Jan Tielens
    >> >________________________________
    >> >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >> >
    >> >
    >> >"Kerry Matt" <anonymous@discussions.microsoft.com>
    wrote
    >> in message
    >> >news:099f01c3c486$bbb4b5b0$a101280a@phx.gbl...
    >> >> Thanks for your reply,
    >> >>
    >> >> I am using Basic Authentication in IIS. Should i
    send
    >> >> the credentials for the Remote WebServer or the
    >> >> credentials of my local ASPX application.
    >> >>
    >> >> Thanks in Advance
    >> >> Kerry Matt
    >> >>
    >> >> >-----Original Message-----
    >> >> >You are sending the credentials of the user that is
    >> using
    >> >> your
    >> >> >website/application if you have checked Integrated
    >> >> Windows Security in IIS
    >> >> >management. Otherwise you're sending the
    credentials of
    >> >> the account your
    >> >> >asp.net site is running under.
    >> >> >
    >> >> >--
    >> >> >Greetz
    >> >> >
    >> >> >Jan Tielens
    >> >> >________________________________
    >> >> >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >> >> >
    >> >> >
    >> >> >"Kerry Matt" <anonymous@discussions.microsoft.com>
    >> wrote
    >> >> in message
    >> >> >news:079501c3c454$2a31ce70$a101280a@phx.gbl...
    >> >> >> Thanks for your reply,
    >> >> >> I need some
    clarifications, by
    >> >> >> setting the Preauthenticate property are we
    sending
    >> the
    >> >> >> credentials of the Web Service or the credentials
    of
    >> the
    >> >> >> ASPX application. Since we run the ASPX
    application
    >> and
    >> >> >> the Web Service on different systems i am having
    this
    >> >> >> confusion.
    >> >> >>
    >> >> >> Thanks in Advance,
    >> >> >>
    >> >> >> KerryMatt
    >> >> >>
    >> >> >> >-----Original Message-----
    >> >> >> >Probably you didn't set the PreAuthenticate
    >> property to
    >> >> >> true, and passed the
    >> >> >> >current credentials:
    >> >> >> >
    >> >> >> >Dim eng As New myWebservice.Service
    >> >> >> >eng.PreAuthenticate = True
    >> >> >> >eng.Credentials =
    >> >> >> System.Net.CredentialCache.DefaultCredentials
    >> >> >> >'This will pass the credentials of the currently
    >> logged
    >> >> >> on user
    >> >> >> >eng.DoSomething
    >> >> >> >
    >> >> >> >--
    >> >> >> >Greetz
    >> >> >> >
    >> >> >> >Jan Tielens
    >> >> >> >________________________________
    >> >> >> >Read my weblog: [url]http://weblogs.asp.net/jan[/url]
    >> >> >> >
    >> >> >> >
    >> >> >> >"Kerry Matt"
    <anonymous@discussions.microsoft.com>
    >> >> wrote
    >> >> >> in message
    >> >> >> >news:09f501c3c3c9$7f4fe0d0$a301280a@phx.gbl...
    >> >> >> >> Hi All,
    >> >> >> >> We have problems in accessing a
    WebService
    >> >> which
    >> >> >> is
    >> >> >> >> running on a remote server from a ASPX
    >> application.
    >> >> It
    >> >> >> >> gives us Un Authorized Exception. The
    Webservice
    >> is
    >> >> >> >> using "Basing Authentication". Any idea of how
    to
    >> >> get it
    >> >> >> >> work?.
    >> >> >> >>
    >> >> >> >> Thanks in Advance.
    >> >> >> >>
    >> >> >> >> Kerry Matt
    >> >> >> >
    >> >> >> >
    >> >> >> >.
    >> >> >> >
    >> >> >
    >> >> >
    >> >> >.
    >> >> >
    >> >
    >> >
    >> >.
    >> >
    >
    >
    >.
    >
    Kerry Matt Guest

  11. #10

    Default Re: Problem accessing webservices

    WOW! So that what I have been doing wrong. Thanks.

    eng.PreAuthenticate = True
    > >> >eng.Credentials =
    > >> System.Net.CredentialCache.DefaultCredentials

    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Dan Campbell Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139