Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

Odoo Server Error Code 200 odooV8 Help me please

Naroči se

Get notified when there's activity on this post

This question has been flagged
error200odooV8
1 Odgovori
10053 Prikazi
Avatar
Tamm

Internal Server Error

{"message": "Odoo Server Error", "code": 200, "data": {"debug": "Traceback (most recent call last):\n File \"/opt/odoo/odoo-server/addons/web/controllers/main.py\", line 70, in wrap\n return f(*args, **kwargs)\n File \"/opt/odoo/odoo-server/addons/web_pdf_preview/controllers/__init__.py\", line 41, in index\n result.headers['Content-Disposition'] = result.headers['Content-Disposition'].replace('attachment', 'inline')\n File \"/usr/lib/python2.7/dist-packages/werkzeug/datastructures.py\", line 891, in __getitem__\n raise exceptions.BadRequestKeyError(key)\nBadRequestKeyError: 400: Bad Request\n", "message": "Content-Disposition", "name": "werkzeug.exceptions.BadRequestKeyError", "arguments": ["Content-Disposition"]}}

Help me please

0
Avatar
Opusti
Avatar
Midhun M M
Best Answer

Your odoo server is responding with an error because it is not sure what database to respond from. You likely have more than one database.

An Odoo server is capable of hosting multiple databases simultaneously. When you make a request to an Odoo server one of if not the very first things it does is determine which instance or database the request should be handled by as each database could have different modules installed and different users / data and hence the same request to each database would very likely be handled differently and yield different results.

There are multiple ways of telling the server what database should be targeted for each request. Some of these are contextual and I do not know if a document is available to truly explain when one is relevant and another is not.

Here they are.

  1. db_filter: A regular expression contained in the startup script or the server configuration file. Ex. db_filter = %d (--db_filter %d in startup script) in this example http://test.com the database would be called test
  2. Query String: http://test.com?db=test, certain handlers in Odoo will use this query string to determine what database to use for a request.
  3. Session Id: Clients (mostly web browsers) will store a cookie containing the session id and pass it to the server with each request "session_id=95bbc53e2ac4d02f50a8d6bf678602112a072807"

Bottom line the error you are getting is that your server is saying it cant possibly determine what database to respond to your request with. If you need a session id to pass to the server with the request you can use jsonrpc to authenticate. Store the session id and pass it in the headers of subsequent requests.


url = 'http://localhost:8069/web/session/authenticate'
data = {
        'jsonrpc':'2.0',
        'method':'call',
        'params':{
                  'context':{},
                  'db':'db_name',
                  'login':'admin',
                  'password':'admin'
                 },
        'id': null
       }

res = requests.post(url, data=data, headers={"Content-Type":"application/json"})

print(res.text)

# YOU WILL HAVE TO PARSE THE RESULT YOURSELF I AM NOT SURE THE RESPONSE OBJECT WILL BE AS BELOW
session_id = res.text['results']['session_id']

Now use the session_id in your requests.

res = requests.post('http://localhost:8069/test_json', headers={"Content-Type":"application/json"}, cookies={'session_id': session_id})
3
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
KeyError : u'wc.backend'
error odooV8
Avatar
0
okt. 15
4395
[Solved]Error when uninstalling and installing - Odoo 8 Solved
error odooV8
Avatar
2
maj 15
5468
have an internal server error in odoo?????????
error odooV8
Avatar
Avatar
1
mar. 15
4324
NotImplementedError: '__setitem__' not supported on frozendict Solved
error context odooV8
Avatar
Avatar
Avatar
Avatar
9
jul. 25
18778
Error message pops up randomly
message error odooV8
Avatar
Avatar
Avatar
Avatar
Avatar
4
nov. 16
8463
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now